/* ── SWEET AMBIANCE RENTALS — SHARED STYLES ── */

@import url('https://fonts.googleapis.com/css2?family=Allura&family=Poppins:wght@300;400;500;600&display=swap');

:root {
  --gold:        #A07810;
  --gold-mid:    #CDA53A;
  --gold-light:  #F0D080;
  --emerald:     #0A5037;
  --emerald-mid: #197050;
  --cream:       #FDFAF4;
  --cream-dark:  #F5EFE0;
  --white:       #FFFFFF;
  --text:        #2a2a2a;
  --text-light:  #666;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; background: var(--cream); color: var(--text); overflow-x: hidden; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(253,250,244,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(160,120,16,0.15);
  padding: 0 40px;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
}

.nav-logo { font-family: 'Allura', cursive; font-size: 34px; color: var(--gold); text-decoration: none; }

.nav-links { display: flex; gap: 8px; list-style: none; align-items: center; }

.nav-links > li { position: relative; }

.nav-links > li > a {
  font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--emerald); text-decoration: none; font-weight: 500;
  padding: 8px 14px; border-radius: 4px;
  transition: color 0.2s, background 0.2s;
  display: flex; align-items: center; gap: 5px;
}

.nav-links > li > a:hover { color: var(--gold); background: rgba(160,120,16,0.06); }
.nav-links > li > a.active { color: var(--gold); }

/* Dropdown arrow */
.has-dropdown > a::after { content: '▾'; font-size: 10px; opacity: 0.6; }

/* Dropdown menu */
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: white; border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  border: 1px solid rgba(160,120,16,0.12);
  min-width: 200px; padding: 8px;
  opacity: 0; visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.2s ease;
  z-index: 100;
}

.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }

.dropdown a {
  display: block; padding: 10px 16px; font-size: 12px; letter-spacing: 1px;
  text-transform: uppercase; color: var(--text); text-decoration: none;
  border-radius: 6px; transition: all 0.2s; font-weight: 400;
}
.dropdown a:hover { background: var(--cream); color: var(--gold); }
.dropdown .dropdown-price { color: var(--emerald); font-weight: 600; float: right; letter-spacing: 0; }

.nav-cta {
  background: var(--emerald) !important; color: white !important;
  padding: 10px 22px !important; border-radius: 6px !important;
  transition: background 0.3s !important;
}
.nav-cta:hover { background: var(--gold) !important; }

/* Mobile hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { width: 24px; height: 2px; background: var(--emerald); border-radius: 2px; transition: all 0.3s; }

/* ── PAGE HEADER ── */
.page-header {
  padding: 140px 40px 80px;
  text-align: center;
  background: radial-gradient(ellipse at 50% 100%, rgba(10,80,55,0.05) 0%, transparent 70%), var(--cream);
}

.page-header-label { font-size: 11px; letter-spacing: 5px; text-transform: uppercase; color: var(--emerald-mid); margin-bottom: 12px; }
.page-header-title { font-family: 'Allura', cursive; font-size: clamp(60px, 8vw, 100px); color: var(--gold); line-height: 1; }
.page-header-sub { font-size: 15px; font-weight: 300; color: var(--text-light); margin-top: 16px; max-width: 500px; margin-left: auto; margin-right: auto; line-height: 1.7; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--emerald); color: white; padding: 14px 36px;
  border-radius: 6px; text-decoration: none; font-size: 12px;
  letter-spacing: 2px; text-transform: uppercase; font-weight: 500;
  display: inline-block; transition: background 0.3s, transform 0.2s;
}
.btn-primary:hover { background: var(--gold); transform: translateY(-2px); }

.btn-secondary {
  border: 1.5px solid var(--gold-mid); color: var(--gold); padding: 14px 36px;
  border-radius: 6px; text-decoration: none; font-size: 12px;
  letter-spacing: 2px; text-transform: uppercase; font-weight: 500;
  display: inline-block; transition: all 0.3s;
}
.btn-secondary:hover { background: var(--gold); color: white; transform: translateY(-2px); }

/* ── FOOTER ── */
footer {
  background: var(--emerald);
  color: white;
  padding: 60px 40px 40px;
}

.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 60px; margin-bottom: 40px;
}

.footer-brand {}
.footer-logo { font-family: 'Allura', cursive; font-size: 48px; color: var(--gold-mid); line-height: 1; }
.footer-tagline { font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.6); margin-top: 8px; line-height: 1.7; }
.footer-llc { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-top: 16px; }

.footer-col-title { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-mid); margin-bottom: 20px; font-weight: 500; }

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.65); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-mid); }

.footer-contact-item { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.65); text-decoration: none; }
.footer-contact-item:hover { color: var(--gold-mid); }

.footer-bottom {
  max-width: 1100px; margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
}

.footer-bottom p { font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.4); }
.footer-bottom a { color: rgba(255,255,255,0.4); text-decoration: none; }
.footer-bottom a:hover { color: var(--gold-mid); }

/* ── DEPOSIT BANNER ── */
.deposit-banner {
  background: var(--gold); color: white;
  text-align: center; padding: 16px 40px;
  font-size: 13px; letter-spacing: 0.5px;
}
.deposit-banner strong { font-weight: 600; }
.deposit-banner a { color: white; }

/* ── TRUST BADGE ── */
.trust-bar {
  background: white; border-bottom: 1px solid rgba(160,120,16,0.1);
  padding: 16px 40px;
  display: flex; justify-content: center; gap: 48px; flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 500; color: var(--emerald); letter-spacing: 0.5px; }
.trust-item span { color: var(--gold); font-size: 16px; }

/* ── SECTION ── */
.section { padding: 100px 40px; max-width: 1100px; margin: 0 auto; }
.section-label { font-size: 10px; letter-spacing: 5px; text-transform: uppercase; color: var(--emerald-mid); margin-bottom: 12px; }
.section-title { font-family: 'Allura', cursive; font-size: clamp(48px, 6vw, 80px); color: var(--gold); line-height: 1; margin-bottom: 20px; }
.section-sub { font-size: 14px; font-weight: 300; color: var(--text-light); line-height: 1.8; max-width: 520px; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; position: fixed; top: 68px; left: 0; right: 0; background: white; flex-direction: column; padding: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); gap: 4px; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .dropdown { position: static; box-shadow: none; border: none; opacity: 1; visibility: visible; transform: none; background: var(--cream); }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .trust-bar { gap: 20px; }
  .section { padding: 70px 24px; }
  .page-header { padding: 110px 24px 60px; }
}
