/* ============================================================
   OFD — Wedding Planning & Design
   Romantic & floral theme
   ============================================================ */

:root {
  --blush:      #f7e7e3;
  --blush-soft: #fdf6f3;
  --rose:       #d98b8b;
  --rose-deep:  #b96b6b;
  --mauve:      #7a5c5c;
  --ink:        #4a3b3b;
  --cream:      #fffdfb;
  --gold:       #c9a86a;
  --shadow:     0 20px 50px rgba(122, 92, 92, 0.14);

  --font-script: 'Great Vibes', cursive;
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Montserrat', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }

h1, h2, h3 { font-family: var(--font-serif); font-weight: 500; line-height: 1.15; color: var(--mauve); }

.eyebrow {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  color: var(--rose-deep);
  margin-bottom: 0.9rem;
}

em { font-style: italic; color: var(--rose-deep); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-primary { background: var(--rose); color: #fff; }
.btn-primary:hover { background: var(--rose-deep); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.7); }
.btn-ghost:hover { background: rgba(255,255,255,0.15); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(255, 253, 251, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(217, 139, 139, 0.15);
}
.nav {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.5rem;
}
.brand {
  font-family: var(--font-serif);
  font-size: 1.7rem; font-weight: 600; letter-spacing: 0.2em;
  color: var(--rose-deep); text-decoration: none;
  display: flex; align-items: center;
}
.brand-logo { height: 52px; width: auto; display: block; }
.nav-links { list-style: none; display: flex; gap: 2rem; align-items: center; }
.nav-links a {
  text-decoration: none; color: var(--ink);
  font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--rose-deep); }
.nav-cta {
  background: var(--rose); color: #fff !important;
  padding: 0.55rem 1.4rem; border-radius: 999px;
}
.nav-cta:hover { background: var(--rose-deep); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--mauve); transition: 0.3s; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  color: #fff;
  background:
    linear-gradient(rgba(122,92,92,0.35), rgba(122,92,92,0.45)),
    url('https://images.unsplash.com/photo-1519741497674-611481863552?auto=format&fit=crop&w=1600&q=80')
    center/cover no-repeat,
    linear-gradient(135deg, var(--rose) 0%, var(--mauve) 100%);
  padding: 6rem 1.5rem 4rem;
}
.hero-content { max-width: 720px; position: relative; z-index: 2; }
.hero .eyebrow { color: #ffe9e4; }
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 7vw, 5rem);
  color: #fff;
  margin-bottom: 1.2rem;
  font-weight: 500;
}
.hero-sub { font-size: 1.1rem; max-width: 560px; margin: 0 auto 2.2rem; font-weight: 300; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Sections ---------- */
.section { max-width: 1200px; margin: 0 auto; padding: 6rem 1.5rem; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }
.section-head h2 { font-size: clamp(2rem, 4vw, 2.9rem); }
.section-note { color: var(--rose-deep); margin-top: 0.8rem; font-size: 0.95rem; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-media img { border-radius: 8px; box-shadow: var(--shadow); width: 100%; height: 100%; object-fit: cover; }
.about-text h2 { font-size: clamp(1.9rem, 3.5vw, 2.7rem); margin-bottom: 1.2rem; }
.about-text p { margin-bottom: 1.1rem; }
.stats { list-style: none; display: flex; gap: 2.5rem; margin-top: 2rem; flex-wrap: wrap; }
.stats li { display: flex; flex-direction: column; }
.stats strong { font-family: var(--font-serif); font-size: 2.2rem; color: var(--rose-deep); }
.stats span { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; }

/* ---------- Services ---------- */
.services { background: var(--blush-soft); max-width: 100%; }
.services .section-head, .services .cards { max-width: 1200px; margin-left: auto; margin-right: auto; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.card {
  background: #fff; padding: 2.5rem 2rem; border-radius: 10px;
  border: 1px solid rgba(217, 139, 139, 0.12);
  transition: transform 0.25s, box-shadow 0.25s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card-icon { font-size: 1.4rem; color: var(--gold); margin-bottom: 1rem; }
.card h3 { font-size: 1.4rem; margin-bottom: 0.6rem; }
.card p { font-size: 0.95rem; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.gallery-grid img {
  width: 100%; height: 300px; object-fit: cover; border-radius: 8px;
  transition: transform 0.4s, filter 0.4s; filter: saturate(0.95);
}
.gallery-grid img:hover { transform: scale(1.03); filter: saturate(1.1); }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--blush-soft); max-width: 100%; }
.testimonials .section-head, .testimonials .quotes { max-width: 1200px; margin-left: auto; margin-right: auto; }
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
blockquote {
  background: #fff; padding: 2.5rem 2rem; border-radius: 10px;
  border-top: 3px solid var(--rose); position: relative;
}
blockquote p { font-family: var(--font-serif); font-size: 1.25rem; font-style: italic; color: var(--mauve); margin-bottom: 1.2rem; }
blockquote cite { font-style: normal; font-size: 0.85rem; letter-spacing: 0.1em; color: var(--rose-deep); }

/* ---------- Contact ---------- */
.contact-inner { max-width: 1000px; margin: 0 auto; }
.contact-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 3rem; align-items: start; }
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--mauve); }
.field input, .field textarea {
  font-family: var(--font-sans); font-size: 0.95rem; padding: 0.8rem 1rem;
  border: 1px solid rgba(122,92,92,0.2); border-radius: 6px; background: var(--blush-soft);
  color: var(--ink); resize: vertical;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--rose); }
.contact-form .btn { align-self: flex-start; margin-top: 0.5rem; border: none; }

.contact-info { background: var(--blush-soft); padding: 2.5rem 2rem; border-radius: 10px; }
.contact-info h3 { font-size: 1.8rem; letter-spacing: 0.15em; }
.contact-info .muted { color: var(--rose-deep); font-size: 0.9rem; margin-bottom: 1.5rem; }
.contact-info ul { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.contact-info li { display: flex; flex-direction: column; font-size: 0.95rem; }
.contact-info li span { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--mauve); }
.contact-info a { color: var(--ink); text-decoration: none; }
.contact-info a:hover { color: var(--rose-deep); }
.socials { display: flex; gap: 1.2rem; margin-top: 1.8rem; }
.socials a { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--rose-deep); text-decoration: none; }

/* ---------- Footer ---------- */
.site-footer { text-align: center; padding: 3.5rem 1.5rem; background: var(--mauve); color: #fff; }
.footer-brand { font-family: var(--font-serif); font-size: 1.8rem; letter-spacing: 0.2em; }
.site-footer .muted { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-bottom: 1rem; }
.copyright { font-size: 0.78rem; color: rgba(255,255,255,0.5); }
.muted { color: var(--rose-deep); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .cards, .quotes { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav-toggle { display: flex; }
  .brand-logo { height: 42px; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0; background: var(--cream);
    border-bottom: 1px solid rgba(217,139,139,0.15);
    max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
  }
  .nav-links.open { max-height: 400px; }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links li a { display: block; padding: 1rem; }
  .cards, .quotes, .gallery-grid { grid-template-columns: 1fr; }
  .stats { gap: 1.5rem; }
  .section { padding: 4rem 1.5rem; }
}
