/* ===================================
   MAIN STYLESHEET
   =================================== */

/* CSS Variables - Editorial Wedding Design System */
/* Inspired by premium wedding brand aesthetics with elegant, airy layouts */
:root {
  /* Color Palette - Soft Editorial Wedding */
  --powder: #FDF5F4;
  /* Soft background blocks */
  --dusty-pink: #EFE2E0;
  /* Highlight accent for buttons, hovers, accents */
  --pearl-white: #FAF9F7;
  /* Main background/base white */
  --charcoal: #3B3B3B;
  /* Main text color (warm, elegant gray) */

  /* Semantic color variables */
  --primary: var(--charcoal);
  --accent: var(--dusty-pink);
  --bg: var(--pearl-white);
  --white: var(--pearl-white);
  --nav-bg: rgba(250, 249, 247, 0.98);
  --nav-shadow: 0 2px 24px rgba(59, 59, 59, 0.08);
  --nav-active: var(--charcoal);
  --float-bg: var(--pearl-white);
  --float-shadow: 0 4px 32px rgba(59, 59, 59, 0.1);

  /* Typography Variables - Editorial Hierarchy */
  --font-accent: 'Playfair Display', serif;
  /* Decorative, callouts */
  --font-heading: 'Cormorant Garamond', serif;
  /* Section titles, major headings */
  --font-body: 'Poppins', sans-serif;
  /* Body text, UI elements */

  /* Legacy variables for backward compatibility */
  --ruby: var(--charcoal);
  --rose-ivory: var(--dusty-pink);
  --almond: var(--pearl-white);
}

/* Reset and Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  background: var(--bg);
  color: var(--primary);
  min-height: 100vh;
  line-height: 1.6;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography Classes - Editorial Wedding Style */
.heading {
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.subheading {
  font-family: var(--font-body);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
}

.paragraph {
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
}

.accent {
  font-family: var(--font-accent);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.02em;
}

/* Main Content */


section {
  margin-bottom: 0;
  padding: 80px 2rem;
  position: relative;
}

/* Generous spacing for editorial feel */
@media (max-width: 768px) {
  section {
    padding: 50px 1.5rem;
  }
}

h2 {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.02em;
  line-height: 1.2;
}

p {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--primary);
  line-height: 1.6;
}

/* Footer Styles - Editorial */
.site-footer {
  color: var(--primary);
  font-family: var(--font-body);
  font-weight: 300;
  text-align: center;
  padding: 60px 2rem 40px;
  margin-top: 0;
  letter-spacing: 0.04em;
  font-size: 0.95rem;
  opacity: 0.8;
  border-top: 1px solid rgba(59, 59, 59, 0.1);
}

.site-footer .footer-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}