/* ===================================
   GLOBAL STYLES - checkmywed.com
   =================================== */

/* CSS Variables for Wedding Theme */
:root {
  --primary-blush: #ff7a8e;
  --primary-gold: #e64bd9;
  --primary-white: #FFFFFF;
  --secondary-gray: #F5F5F5;
  --text-dark: #000000;
  --text-light: #2e2a2a;
  --accent-rose: #f8bf45;
  --shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
  --transition-smooth: all 0.3s ease;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0 ;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  background-color: var(--primary-white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

/* Container */
.container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 80px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-blush), var(--accent-rose));
  color: var(--text-dark);
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.btn-secondary {
  background-color: #C19B2E;
  color: var(--primary-white);
  box-shadow: var(--shadow-soft);
}

.btn-secondary:hover {
  background-color: var(--primary-gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--accent-rose);
  color: var(--accent-rose);
}

.btn-outline:hover {
  background: linear-gradient(135deg, var(--primary-blush), var(--accent-rose));
  color: var(--text-dark);
}

/* Cards */
.card {
  background-color: var(--primary-white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

/* Section Styling */
section {
  padding: 40px;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blush), var(--primary-gold));
  margin: 1rem auto 0;
  border-radius: 2px;
}
.section-subtitle{
  text-align: center;
  color: var(--text-light);
  font-size: 1.1rem;
  margin-top: -1.5rem;
  margin-bottom: 3rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.fade-in {
  animation: fadeIn 0.8s ease-in;
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

/* Scroll to Top Button */
#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-blush), var(--accent-rose));
  color: var(--primary-white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  z-index: 999;
}

#scrollTopBtn:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

#scrollTopBtn.show {
  display: flex;
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.5rem; }
  
  .container {
    padding: 0 20px;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
  
  .card {
    padding: 1.5rem;
  }
}