/* =============================================
   SIMPLY SEATED CO — Global Styles
   Design: "Celebration Elegance"
   Palette: Navy + Champagne Gold + Warm Cream
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ---- CSS Variables ---- */
:root {
  --navy:       #1A2F5A;
  --navy-light: #243F7A;
  --gold:       #C9A84C;
  --gold-light: #E2C472;
  --cream:      #FDF6EE;
  --cream-dark: #F3E8D8;
  --white:      #FFFFFF;
  --text:       #2C2C2C;
  --text-muted: #6B6B6B;
  --border:     #E8DDD0;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;

  --shadow-sm: 0 2px 8px rgba(26,47,90,0.08);
  --shadow-md: 0 8px 32px rgba(26,47,90,0.12);
  --shadow-lg: 0 20px 60px rgba(26,47,90,0.18);

  --radius: 4px;
  --radius-lg: 12px;
  --max-w: 1140px;
  --transition: 0.25s ease;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }

/* ---- Container ---- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 900; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 600; font-family: var(--font-body); }

p { line-height: 1.75; color: var(--text); }
p + p { margin-top: 1em; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-transform: uppercase;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}


/* ---- TOPBAR ---- */
#site-topbar {
  background: #0D1E3D;
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 8px 0;
  font-size: 0.78rem;
  position: sticky;
  top: 0;
  z-index: 1001;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.topbar-left {
  color: rgba(255,255,255,0.55);
  font-size: 0.75rem;
}
.topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.topbar-phone {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.8rem;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.topbar-phone:hover { opacity: 0.8; }
.topbar-cta {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 5px 14px;
  border-radius: 4px;
  white-space: nowrap;
  transition: background 0.2s;
  letter-spacing: 0.03em;
}
.topbar-cta:hover { background: var(--gold-light); }
@media (max-width: 768px) {
  #site-topbar { display: none; }
}

/* ---- HEADER / NAV ---- */
#site-header {
  position: sticky;
  top: 32px; /* offset below topbar */
  z-index: 1000;
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.01em;
}
.logo-tagline {
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 2px;
}

nav { display: flex; align-items: center; gap: 4px; }

nav a {
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: all var(--transition);
  letter-spacing: 0.02em;
}
nav a:hover, nav a.active {
  color: var(--gold);
  background: rgba(255,255,255,0.06);
}

.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 4px; }
.nav-dropdown > a::after { content: '▾'; font-size: 0.7rem; }

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  min-width: 200px;
  overflow: hidden;
  border: 1px solid var(--border);
}
/* Desktop: open on click via JS (.dropdown-open), hover still works as fallback */
@media (min-width: 769px) {
  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown.dropdown-open .dropdown-menu { display: block; }
}

.dropdown-menu a {
  display: block;
  color: var(--text);
  padding: 10px 18px;
  font-size: 0.88rem;
  border-radius: 0;
  transition: background var(--transition);
}
.dropdown-menu a:hover { background: var(--cream); color: var(--navy); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
  margin-left: 8px;
  border-radius: var(--radius) !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ---- HERO ---- */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0D1E3D 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(201,168,76,0.12) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(201,168,76,0.08) 0%, transparent 40%);
}

/* Confetti dots decoration */
.hero-confetti {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.confetti-dot {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  animation: float 8s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-eyebrow {
  display: inline-block;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero h1 em {
  color: var(--gold);
  font-style: italic;
}

.hero p {
  color: rgba(255,255,255,0.75);
  font-size: 1.15rem;
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.12);
  flex-wrap: wrap;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  display: block;
}

.hero-stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ---- SECTION HELPERS ---- */
.section { padding: 80px 0; }
.section-sm { padding: 52px 0; }

.section-header { text-align: center; max-width: 640px; margin: 0 auto 52px; }
.section-header h2 { margin-bottom: 14px; }
.section-header p { color: var(--text-muted); font-size: 1.05rem; }

.eyebrow {
  display: inline-block;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* ---- FEATURE GRID ---- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.feature-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.feature-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* ---- PRODUCT CARDS ---- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.product-card-img {
  height: 200px;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.product-card-body { padding: 24px; }
.product-card-body h3 { font-size: 1.2rem; margin-bottom: 8px; }
.product-card-body p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 18px; }

/* ---- EVENT CARDS ---- */
.event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.event-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.event-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.event-card:hover::before { transform: scaleX(1); }
.event-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.event-card-icon { font-size: 2.8rem; margin-bottom: 16px; }
.event-card h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 10px; }
.event-card p { color: rgba(255,255,255,0.65); font-size: 0.9rem; }

/* ---- CTA STRIP ---- */
.cta-strip {
  background: linear-gradient(135deg, var(--gold) 0%, #B8942A 100%);
  padding: 64px 0;
  text-align: center;
}

.cta-strip h2 { color: var(--navy); margin-bottom: 14px; }
.cta-strip p { color: rgba(26,47,90,0.75); max-width: 540px; margin: 0 auto 32px; }

/* ---- QUOTE FORM ---- */
.quote-section {
  background: var(--cream);
  padding: 80px 0;
}

.quote-form-wrap {
  max-width: 680px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group { margin-bottom: 22px; }

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: 0.03em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}

.form-group textarea { resize: vertical; min-height: 120px; }

/* ---- CITY LANDING ---- */
.city-hero {
  background: var(--navy);
  padding: 72px 0;
  text-align: center;
}

.city-hero h1 { color: var(--white); }
.city-hero .eyebrow { color: var(--gold); }
.city-hero p { color: rgba(255,255,255,0.7); max-width: 540px; margin: 16px auto 0; }

/* ---- TRUST BAR ---- */
.trust-bar {
  background: var(--navy);
  padding: 20px 0;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  font-weight: 500;
}

.trust-item span:first-child { color: var(--gold); font-size: 1.1rem; }

/* ---- TESTIMONIALS ---- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.stars { color: var(--gold); font-size: 1rem; margin-bottom: 14px; }

.testimonial-card p {
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 18px;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--cream-dark);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1rem;
}

.reviewer-name { font-weight: 600; font-size: 0.9rem; }
.reviewer-event { font-size: 0.8rem; color: var(--text-muted); }

/* ---- BREADCRUMB ---- */
.breadcrumb {
  background: var(--cream);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.breadcrumb-list a { color: var(--navy); }
.breadcrumb-list a:hover { color: var(--gold); }
.breadcrumb-list li + li::before { content: '/'; margin-right: 8px; }

/* ---- FAQ ---- */
.faq-list { max-width: 720px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.faq-q {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 10px;
  cursor: pointer;
}

.faq-a {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ---- FOOTER ---- */
#site-footer {
  background: #0D1E3D;
  color: rgba(255,255,255,0.7);
  padding: 64px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 28px;
}

.footer-brand .logo-name { font-size: 1.2rem; }
.footer-brand p { font-size: 0.88rem; margin-top: 12px; line-height: 1.7; }

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
}

.footer-bottom a { color: var(--gold); }

/* ---- UTILITY ---- */
.bg-cream  { background: var(--cream); }
.bg-navy   { background: var(--navy); }
.text-center { text-align: center; }

.divider {
  width: 60px; height: 3px;
  background: var(--gold);
  margin: 14px auto 0;
  border-radius: 2px;
}

.tag {
  display: inline-block;
  background: rgba(201,168,76,0.15);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 8px;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  /* Nav */
  nav { display: none; position: absolute; top: 70px; left: 0; right: 0;
    background: var(--navy); flex-direction: column; padding: 16px; border-top: 1px solid rgba(255,255,255,0.1); gap: 2px; }
  nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .dropdown-menu { position: static; box-shadow: none; background: rgba(255,255,255,0.08); border: none; border-radius: var(--radius); }
  .dropdown-menu a { color: rgba(255,255,255,0.8); }
  .dropdown-menu a:hover { background: rgba(255,255,255,0.1); color: var(--white); }

  /* Forms */
  .form-row { grid-template-columns: 1fr; }
  .quote-form-wrap { padding: 28px 20px; }

  /* Hero */
  .hero-stats { gap: 24px; }
  .hero-confetti { display: none; } /* prevent confetti dots from causing overflow */

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Misc */
  .trust-bar-inner { gap: 20px; }
  .header-inner { position: relative; }

  /* Collapse ALL inline two-column grids used throughout pages */
  /* These are set via inline style on about, event, and city pages */
  .container > div,
  section > .container > div {
    min-width: 0;
  }
}

@media (max-width: 640px) {
  /* Force any two-column inline grid to single column on small screens */
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  /* About page stat box */
  [style*="grid-template-columns:1fr 1fr"][style*="gap:28px"] {
    grid-template-columns: 1fr 1fr !important; /* keep 2x2 stat grid intact */
  }

  /* Two-col layout wrappers used on about, events, cities, contact pages */
  .container > div[style*="display:grid"],
  .container > div[style*="display: grid"] {
    display: flex !important;
    flex-direction: column !important;
    gap: 32px !important;
  }

  .section { padding: 52px 0; }
  .section-sm { padding: 36px 0; }
}

@media (max-width: 480px) {
  .hero { padding: 64px 0 56px; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .container { padding: 0 16px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .product-grid { grid-template-columns: 1fr; }
  .event-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
}

/* ---- HEADER PHONE ---- */
.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.9rem;
  margin-left: auto;
  margin-right: 16px;
  white-space: nowrap;
  transition: opacity var(--transition);
}
.header-phone:hover { opacity: 0.8; }
.header-phone-icon { font-size: 1rem; }
.header-phone-num { letter-spacing: 0.02em; }

/* Hide phone num text on very small desktop, show icon only */
@media (max-width: 1024px) and (min-width: 769px) {
  .header-phone-num { display: none; }
  .header-phone { margin-right: 8px; }
}

/* Hide entirely on mobile (shown in sticky CTA instead) */
@media (max-width: 768px) {
  .header-phone { display: none; }
}

/* ---- MOBILE STICKY CTA BAR ---- */
#mobile-cta-bar {
  display: none;
}
@media (max-width: 768px) {
  #mobile-cta-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    box-shadow: 0 -3px 12px rgba(0,0,0,0.18);
    height: 48px;
  }
  #mobile-cta-btn {
    flex: 1;
    background: var(--gold);
    color: var(--navy);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.85rem;
    text-align: center;
    padding: 0 12px;
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: background var(--transition);
    white-space: nowrap;
  }
  #mobile-cta-btn:hover { background: var(--gold-light); }
  #mobile-cta-call {
    flex: 0 0 48px;
    background: var(--navy);
    color: var(--white);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid rgba(255,255,255,0.15);
    transition: background var(--transition);
  }
  #mobile-cta-call:hover { background: var(--navy-light); }
  /* Prevent sticky bar from covering page content */
  body { padding-bottom: 48px; }
}

