/* ═══════════════════════════════════════════════
   AMANI ASILI — SHARED STYLES
   Theme: Black & Gold (dark) / White & Gold (light)
═══════════════════════════════════════════════ */

/* ─── GOOGLE FONTS ─── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=Outfit:wght@200;300;400;500;600&display=swap');

/* ─── VARIABLES ─── */
:root {
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-dark: #8a6318;
  --gold-dim: #6a4f1a;
  --gold-glow: rgba(201,168,76,0.15);
  --gold-glow-strong: rgba(201,168,76,0.25);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}
[data-theme="dark"] {
  --bg: #07070600;
  --bg-solid: #070706;
  --bg-2: #0d0c0a;
  --bg-3: #131210;
  --surface: #191714;
  --surface-2: #201e19;
  --text: #ede7d3;
  --text-muted: #887a66;
  --text-dim: #433d32;
  --border: rgba(201,168,76,0.12);
  --border-strong: rgba(201,168,76,0.3);
  --nav-bg: rgba(7,7,6,0.94);
  --overlay-dark: rgba(5,5,4,0.72);
  --overlay-hero: rgba(5,5,4,0.55);
}
[data-theme="light"] {
  --bg: #faf8f200;
  --bg-solid: #faf8f2;
  --bg-2: #f3ede0;
  --bg-3: #e9e0ce;
  --surface: #ffffff;
  --surface-2: #f7f2e5;
  --text: #181410;
  --text-muted: #6a5c45;
  --text-dim: #b5a88e;
  --border: rgba(140,100,30,0.15);
  --border-strong: rgba(140,100,30,0.35);
  --nav-bg: rgba(250,248,242,0.96);
  --overlay-dark: rgba(250,248,242,0.6);
  --overlay-hero: rgba(20,15,5,0.45);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg-solid);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg-solid); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); }

/* ─── NOISE ─── */
body::after {
  content: '';
  position: fixed; inset: 0; pointer-events: none; z-index: 9990;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  opacity: 0.5;
}

/* ─── CURSOR ─── */
.cursor {
  position: fixed; top: 0; left: 0; width: 9px; height: 9px;
  background: var(--gold); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width 0.15s, height 0.15s;
  mix-blend-mode: difference;
}
.cursor-ring {
  position: fixed; top: 0; left: 0; width: 34px; height: 34px;
  border: 1px solid var(--gold); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  opacity: 0.45;
  transition: width 0.2s, height 0.2s, opacity 0.2s;
}

/* ─── NAVIGATION ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 74px;
  background: var(--nav-bg);
  backdrop-filter: blur(24px) saturate(1.6);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center;
  padding: 0 5%;
  transition: height var(--transition), box-shadow var(--transition);
}
.nav.scrolled { height: 60px; box-shadow: 0 4px 40px rgba(0,0,0,0.3); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem; font-weight: 600; letter-spacing: 0.02em;
  display: flex; align-items: center; gap: 10px;
  color: var(--text);
}
.nav-logo .logo-mark {
  width: 34px; height: 34px;
  border: 1.5px solid var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 0.9rem;
  flex-shrink: 0;
}
.nav-links {
  list-style: none; display: flex; align-items: center; gap: 2.2rem;
  font-size: 0.82rem; font-weight: 400; letter-spacing: 0.09em; text-transform: uppercase;
}
.nav-links a {
  color: var(--text-muted); position: relative; padding-bottom: 2px;
  transition: color var(--transition);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-right { display: flex; align-items: center; gap: 0.8rem; }
.btn-nav-ghost {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  border: 1px solid var(--border-strong); color: var(--gold); background: transparent;
  padding: 0.45rem 1.3rem; transition: background var(--transition);
}
.btn-nav-ghost:hover { background: var(--gold-glow); }
.btn-nav-solid {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  border: 1px solid var(--gold); background: var(--gold); color: #07060500;
  color: #050504;
  padding: 0.45rem 1.3rem; transition: opacity var(--transition);
}
.btn-nav-solid:hover { opacity: 0.82; }
.btn-theme {
  width: 34px; height: 34px; border: 1px solid var(--border);
  background: none; color: var(--text-muted); font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
  transition: border-color var(--transition), color var(--transition);
}
.btn-theme:hover { border-color: var(--gold); color: var(--gold); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--text-muted); transition: all 0.3s;
}

/* ─── MOBILE MENU ─── */
.mobile-menu {
  position: fixed; inset: 0; z-index: 999;
  background: var(--bg-solid);
  display: flex; flex-direction: column;
  padding: 90px 7% 5%;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4,0,0.2,1);
}
.mobile-menu.open { transform: none; }
.mobile-nav-links { list-style: none; display: flex; flex-direction: column; }
.mobile-nav-links li a {
  display: block; font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem; font-weight: 300; line-height: 1.3;
  padding: 0.7rem 0; border-bottom: 1px solid var(--border);
  color: var(--text-muted); transition: color 0.2s;
}
.mobile-nav-links li a:hover { color: var(--gold); }
.mobile-menu-foot { margin-top: auto; display: flex; gap: 1rem; }

/* ─── HERO PARALLAX ─── */
.hero-parallax {
  position: relative; overflow: hidden;
  min-height: 100vh;
  display: flex; align-items: flex-end;
  padding: 5% 6% 8%;
}
.hero-bg-img {
  position: absolute; inset: -10%; z-index: 0;
  background-size: cover; background-position: center;
  will-change: transform;
  transition: transform 0.1s linear;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: var(--overlay-hero);
}
.hero-overlay-gradient {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to top, rgba(5,5,4,0.9) 0%, rgba(5,5,4,0.2) 50%, rgba(5,5,4,0.1) 100%);
}
[data-theme="light"] .hero-overlay-gradient {
  background: linear-gradient(to top, rgba(250,248,242,0.85) 0%, rgba(5,5,4,0.2) 50%, rgba(5,5,4,0.15) 100%);
}
.hero-content { position: relative; z-index: 3; max-width: 820px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  border: 1px solid rgba(201,168,76,0.4);
  padding: 5px 14px; margin-bottom: 2rem;
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-light);
  animation: fade-up 0.8s ease both;
}
.hero-badge .dot {
  width: 5px; height: 5px; background: var(--gold); border-radius: 50%;
  animation: pulse 2s infinite;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 7.5vw, 7rem);
  font-weight: 300; line-height: 1.05; letter-spacing: -0.01em;
  color: #f0e8d0;
  margin-bottom: 1.6rem;
  animation: fade-up 0.8s 0.08s ease both;
}
[data-theme="light"] .hero-title { color: #f0e8d0; }
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-subtitle {
  font-size: 1.05rem; font-weight: 300; line-height: 1.8;
  color: rgba(240,232,208,0.7); max-width: 520px;
  margin-bottom: 2.8rem;
  animation: fade-up 0.8s 0.16s ease both;
}
.hero-cta {
  display: flex; gap: 1rem; flex-wrap: wrap;
  animation: fade-up 0.8s 0.24s ease both;
}
.btn-hero {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.95rem 2.4rem; background: var(--gold); color: #050504;
  border: 1px solid var(--gold); display: inline-flex; align-items: center; gap: 9px;
  transition: opacity var(--transition), transform var(--transition);
}
.btn-hero:hover { opacity: 0.83; transform: translateY(-2px); }
.btn-hero-outline {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.95rem 2.4rem; background: transparent;
  color: rgba(240,232,208,0.8); border: 1px solid rgba(201,168,76,0.35);
  transition: color var(--transition), border-color var(--transition);
}
.btn-hero-outline:hover { color: var(--gold-light); border-color: var(--gold); }
.hero-scroll-indicator {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 7px;
  animation: fade-in 2s 1s ease both;
}
.hero-scroll-indicator span {
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(201,168,76,0.5);
}
.hero-scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-grow 2.2s ease-in-out infinite;
}

/* ─── PICTURE SECTIONS (full-bleed parallax) ─── */
.picture-section {
  position: relative; overflow: hidden;
  min-height: 500px;
  display: flex; align-items: center; justify-content: center;
}
.picture-section .pic-bg {
  position: absolute; inset: -12%; z-index: 0;
  background-size: cover; background-position: center;
  will-change: transform;
}
.picture-section .pic-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: var(--overlay-dark);
}
.picture-section .pic-content {
  position: relative; z-index: 2;
  text-align: center; padding: 5rem 5%;
  max-width: 700px;
}
.picture-section .pic-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 300;
  color: #f0e8d0; margin-bottom: 1.2rem;
}
.picture-section .pic-content p {
  font-size: 1rem; color: rgba(240,232,208,0.7);
  font-weight: 300; line-height: 1.8; margin-bottom: 2rem;
}

/* ─── LAYOUT UTILITIES ─── */
.container { max-width: 1300px; margin: 0 auto; }
.section { padding: 7rem 6%; background: var(--bg-solid); }
.section.bg-2 { background: var(--bg-2); }
.section.bg-3 { background: var(--bg-3); }
.section-label {
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
  display: flex; align-items: center; gap: 12px;
}
.section-label::before { content: ''; width: 28px; height: 1px; background: var(--gold); }
.section-label.center::before { display: none; }
.section-label.center { justify-content: center; }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 300; line-height: 1.12; margin-bottom: 1.4rem;
}
.section-desc {
  font-size: 0.97rem; color: var(--text-muted);
  max-width: 560px; line-height: 1.85; font-weight: 300;
}
.gold { color: var(--gold); }
.gold-text {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ─── BUTTONS ─── */
.btn-primary {
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.85rem 2.2rem; background: var(--gold); color: #050504;
  border: 1px solid var(--gold);
  transition: opacity var(--transition), transform var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { opacity: 0.82; transform: translateY(-1px); }
.btn-outline {
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.85rem 2.2rem; background: transparent;
  color: var(--gold); border: 1px solid var(--border-strong);
  transition: background var(--transition), color var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline:hover { background: var(--gold-glow); }
.btn-full { width: 100%; justify-content: center; }

/* ─── FOOTER ─── */
.site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 5rem 6% 3rem;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem; margin-bottom: 4rem;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem; font-weight: 400; margin-bottom: 1rem;
}
.footer-tagline {
  font-size: 0.88rem; color: var(--text-muted);
  line-height: 1.8; font-weight: 300; max-width: 270px;
  margin-bottom: 1.8rem;
}
.footer-socials { display: flex; gap: 0.7rem; }
.social-icon {
  width: 34px; height: 34px; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; color: var(--text-muted);
  transition: border-color var(--transition), color var(--transition);
}
.social-icon:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h5 {
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.4rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
.footer-col ul li a {
  font-size: 0.86rem; color: var(--text-muted);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-copy { font-size: 0.78rem; color: var(--text-dim); }
.footer-legal { display: flex; gap: 1.8rem; }
.footer-legal a { font-size: 0.78rem; color: var(--text-dim); transition: color var(--transition); }
.footer-legal a:hover { color: var(--text-muted); }

/* ─── REVEAL ANIMATION ─── */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ─── MARQUEE ─── */
.marquee-strip {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--bg-2); padding: 1.3rem 0; overflow: hidden;
}
.marquee-track {
  display: flex; gap: 3.5rem; align-items: center; width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-item {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; font-style: italic;
  color: var(--text-dim); white-space: nowrap;
  display: flex; align-items: center; gap: 3.5rem;
}
.marquee-item .star { color: var(--gold); font-style: normal; }

/* ─── KEYFRAMES ─── */
@keyframes fade-up { from { opacity:0; transform:translateY(28px);} to { opacity:1; transform:none;} }
@keyframes fade-in { from { opacity:0;} to { opacity:1;} }
@keyframes pulse { 0%,100%{ opacity:1; transform:scale(1);} 50%{ opacity:0.35; transform:scale(1.5);} }
@keyframes marquee { from { transform:translateX(0);} to { transform:translateX(-50%);} }
@keyframes spin-slow { from { transform:translate(-50%,-50%) rotate(0);} to { transform:translate(-50%,-50%) rotate(360deg);} }
@keyframes scroll-grow {
  0% { height:0; opacity:1; } 80% { height:48px; opacity:0.3; } 100% { height:48px; opacity:0; }
}

/* ─── RESPONSIVE ─── */
@media (max-width:1100px) {
  .footer-top { grid-template-columns:1fr 1fr; gap:2.5rem; }
}
@media (max-width:768px) {
  .nav-links, .btn-nav-ghost, .btn-nav-solid { display:none; }
  .hamburger { display:flex; }
  .section { padding:5rem 5%; }
}
@media (max-width:520px) {
  .footer-top { grid-template-columns:1fr; gap:2rem; }
  .hero-cta { flex-direction:column; }
}
