/* MyShaadiDreams unified style sheet
   This stylesheet defines a global design language for the site based on the
   brand guidelines supplied by the client. Colours, typography and layout
   tokens are declared as CSS variables at the :root level for easy reuse.
   Import Google Fonts for headings and body text and apply a consistent
   baseline across all pages. */

/* Import fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Montserrat:wght@300;400;500;600;700&family=Dancing+Script:wght@400;700&display=swap');

/* Colour palette variables */
:root {
  /* Primary colours */
  --primary-gold: #D4AF37;
  --primary-burgundy: #800020;
  --primary-cream: #FFF8E7;
  /* Support colours */
  --sage-green: #87A96B;
  --dusty-rose: #D4A5A5;
  --midnight-blue: #191970;
  /* Neutral foundation */
  --charcoal: #36454F;
  --warm-gray: #8B8680;
  --pearl-white: #FEFEFE;
  --soft-beige: #F5E6D3;
  /* Gradients */
  --hero-gradient: linear-gradient(135deg, rgba(212,175,55,0.9) 0%, rgba(128,0,32,0.9) 100%);
  --accent-gradient: linear-gradient(90deg, rgba(212,165,165,0.3) 0%, rgba(135,169,107,0.3) 100%);
}

/* Global base styles */
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--charcoal);
  background-color: var(--pearl-white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: var(--primary-burgundy);
  margin-top: 0;
}

/* Link styles */
a {
  color: var(--midnight-blue);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover, a:focus {
  color: var(--primary-gold);
  text-decoration: none;
}

/* Header & Navigation */
header.hero {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--primary-cream);
  background: var(--hero-gradient), url('images/real2.png') center/cover no-repeat;
}
header.hero::after {
  /* Subtle mandala watermark overlay */
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/real3.png');
  background-size: cover;
  opacity: 0.05;
  pointer-events: none;
}
header.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 0.5rem;
  color: var(--primary-cream);
}
header.hero p {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto 1.5rem;
  color: var(--primary-cream);
}

/* CTA Buttons */
.cta-button {
  display: inline-block;
  padding: 12px 30px;
  margin: 0 8px;
  font-weight: 600;
  color: var(--pearl-white);
  border-radius: 4px;
  background: linear-gradient(90deg, var(--primary-gold), var(--primary-burgundy));
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s, box-shadow 0.2s;
}
.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Sticky navigation bar */
nav.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  padding: 10px 20px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
nav.site-nav a {
  font-weight: 500;
  color: var(--midnight-blue);
  padding: 6px 10px;
  border-radius: 3px;
}
nav.site-nav a:hover {
  background: var(--primary-burgundy);
  color: var(--primary-cream);
}

/* Main content container */
main.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

section.value-prop {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-bottom: 3rem;
}
.value-card {
  background: var(--soft-beige);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}
.value-card:hover {
  transform: translateY(-4px);
}
.value-card .icon {
  font-size: 2rem;
  margin-bottom: 10px;
  color: var(--primary-gold);
}
.value-card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: var(--primary-burgundy);
}
.value-card p {
  font-size: 0.9rem;
  color: var(--warm-gray);
}

/* Footer styles */
footer.site-footer {
  background: var(--soft-beige);
  color: var(--warm-gray);
  text-align: center;
  padding: 20px;
  font-size: 0.85rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(0,0,0,0.05);
}
footer.site-footer a {
  color: var(--midnight-blue);
  margin: 0 8px;
  font-weight: 500;
}
footer.site-footer a:hover {
  color: var(--primary-burgundy);
}

/* Responsive adjustments */
@media (max-width: 767px) {
  header.hero {
    height: auto;
    padding: 80px 20px;
  }
  nav.site-nav {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .cta-button {
    margin: 5px 0;
    width: 100%;
  }
}