/* ===================================================
   AROMA ÉLITE — Premium Luxury CSS
   =================================================== */

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

:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dark: #8A6A1F;
  --black: #080808;
  --black-2: #0E0E0E;
  --white: #F5F0E8;
  --white-dim: rgba(245,240,232,0.7);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', sans-serif;
}

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

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-sans);
  overflow-x: hidden;
  cursor: default;
}

#particles-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 2px; }

/* ===== NAVIGATION ===== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 4rem;
  backdrop-filter: blur(20px);
  background: rgba(8,8,8,0.7);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  transition: all 0.4s ease;
}

#navbar.scrolled {
  padding: 1rem 4rem;
  background: rgba(8,8,8,0.95);
}

.nav-logo { display: flex; flex-direction: column; gap: 1px; }
.logo-text {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--white);
  line-height: 1;
}
.logo-sub {
  font-family: var(--font-sans);
  font-size: 0.55rem;
  font-weight: 300;
  letter-spacing: 0.6em;
  color: var(--gold);
}

.nav-links {
  display: flex; gap: 3rem; list-style: none;
}
.nav-links a {
  font-size: 0.7rem; font-weight: 300; letter-spacing: 0.2em;
  text-decoration: none; color: var(--white-dim);
  text-transform: uppercase;
  transition: color 0.3s ease;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  font-size: 0.65rem; font-weight: 400; letter-spacing: 0.25em;
  text-transform: uppercase; text-decoration: none;
  color: var(--gold); border: 1px solid rgba(201,168,76,0.5);
  padding: 0.6rem 1.5rem;
  transition: all 0.3s ease;
}
.nav-cta:hover { background: var(--gold); color: var(--black); }

/* ===== HERO SECTION ===== */
#hero {
  position: relative; z-index: 1;
  height: 100vh; display: flex;
  align-items: center; justify-content: center;
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  animation: hero-pulse 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes hero-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
  50% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

.hero-content {
  text-align: center; z-index: 2; position: relative;
  animation: fade-up 1.2s ease forwards;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-size: 0.65rem; letter-spacing: 0.4em;
  color: var(--gold); text-transform: uppercase;
  font-weight: 300; margin-bottom: 2rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 300; line-height: 1;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 2rem;
}

.hero-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 0.8rem; font-weight: 300; letter-spacing: 0.1em;
  color: var(--white-dim); line-height: 2;
  max-width: 500px; margin: 0 auto 3rem;
}

.hero-scroll-indicator {
  position: absolute; bottom: 3rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
  z-index: 2;
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}
.hero-scroll-indicator span {
  font-size: 0.55rem; letter-spacing: 0.4em; color: var(--gold);
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  font-size: 0.7rem; font-weight: 400; letter-spacing: 0.3em;
  text-transform: uppercase; text-decoration: none;
  color: var(--black); background: var(--gold);
  padding: 1rem 2.5rem; border: none; cursor: pointer;
  position: relative; overflow: hidden;
  transition: all 0.4s ease;
}
.btn-primary::before {
  content: '';
  position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.5s ease;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover { box-shadow: 0 0 40px rgba(201,168,76,0.5); }

.btn-buy {
  display: inline-block;
  font-size: 0.65rem; font-weight: 400; letter-spacing: 0.3em;
  text-transform: uppercase; text-decoration: none;
  color: var(--gold); border: 1px solid rgba(201,168,76,0.5);
  padding: 0.9rem 2rem; margin-top: 2rem;
  position: relative; overflow: hidden;
  transition: all 0.4s ease;
}
.btn-buy::before {
  content: '';
  position: absolute; top: 0; left: 0; width: 0; height: 100%;
  background: var(--gold); z-index: -1;
  transition: width 0.4s ease;
}
.btn-buy:hover { color: var(--black); border-color: var(--gold); }
.btn-buy:hover::before { width: 100%; }

/* ===== SECTION HEADER ===== */
#collection { position: relative; z-index: 1; }

.section-header {
  text-align: center;
  padding: 8rem 2rem 5rem;
}
.section-eyebrow {
  font-size: 0.65rem; letter-spacing: 0.4em;
  color: var(--gold); text-transform: uppercase;
  font-weight: 300; margin-bottom: 1.5rem;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300; color: var(--white);
  margin-bottom: 1.5rem;
}
.section-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-desc {
  font-size: 0.8rem; font-weight: 300; letter-spacing: 0.08em;
  color: var(--white-dim); max-width: 550px; margin: 0 auto;
  line-height: 2;
}

/* ===== PERFUME SHOWCASE ===== */
.perfume-showcase {
  position: relative; min-height: min(100vh, 900px);
  display: flex; align-items: center;
  overflow: hidden;
  padding: 2rem 0;
}

.showcase-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, var(--glow) 0%, transparent 60%);
  transition: opacity 1s ease;
}

.perfume-showcase.reverse .showcase-bg {
  background: radial-gradient(ellipse at 70% 50%, var(--glow) 0%, transparent 60%);
}

.showcase-container {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 4rem;
  max-width: 1200px; margin: 0 auto;
  padding: 5rem 4rem;
  width: 100%;
}

.perfume-showcase.reverse .showcase-container {
  direction: rtl;
}
.perfume-showcase.reverse .showcase-container > * {
  direction: ltr;
}

/* ===== BOTTLE STAGE ===== */
.bottle-stage {
  position: relative;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center;
}

.bottle-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 6s ease-in-out infinite;
  perspective: 1200px;
}

@keyframes float {
  0%   { transform: translateY(0px)   rotateY(-6deg) rotateX(1deg); }
  25%  { transform: translateY(-18px) rotateY(0deg)  rotateX(2deg); }
  50%  { transform: translateY(-28px) rotateY(6deg)  rotateX(1deg); }
  75%  { transform: translateY(-14px) rotateY(2deg)  rotateX(0deg); }
  100% { transform: translateY(0px)   rotateY(-6deg) rotateX(1deg); }
}

/* ── REAL BOTTLE IMAGE ── */
.bottle-img {
  display: block;
  max-height: 380px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  filter:
    drop-shadow(0 30px 50px rgba(0,0,0,0.85))
    drop-shadow(0 8px 20px rgba(0,0,0,0.6));
  transition: filter 0.5s ease, transform 0.5s ease;
  transform-origin: center bottom;
}

.bottle-wrap:hover .bottle-img {
  filter:
    drop-shadow(0 40px 60px rgba(0,0,0,0.9))
    drop-shadow(0 0 40px rgba(201,168,76,0.25))
    drop-shadow(0 10px 25px rgba(0,0,0,0.7));
  transform: scale(1.04);
}

/* Gold edition — One Million */
.bottle.gold-edition .bottle-body {
  background: linear-gradient(135deg,
    #7A5C10 0%, #C9A84C 20%, #8A6A1F 40%,
    #E8C97A 55%, #C9A84C 70%, #7A5C10 100%
  );
  border: 1px solid rgba(232,201,122,0.5);
  box-shadow:
    inset 2px 0 12px rgba(232,201,122,0.2),
    inset -2px 0 6px rgba(0,0,0,0.6),
    0 4px 30px rgba(201,168,76,0.4);
}
.bottle.gold-edition .bottle-highlight {
  background: linear-gradient(
    to right, transparent,
    rgba(255,220,100,0.35) 40%,
    rgba(255,240,140,0.55) 50%,
    rgba(255,220,100,0.2) 60%, transparent
  );
}
.bottle.gold-edition .label-name { color: #0a0a0a; }
.bottle.gold-edition .label-brand { color: #3a2800; font-weight: 600; }
.bottle.gold-edition .label-type { color: rgba(0,0,0,0.5); }
.bottle.gold-edition .bottle-cap,
.bottle.gold-edition .bottle-atomizer {
  background: linear-gradient(to bottom, #E8C97A, #9A7A20);
  border-color: rgba(232,201,122,0.4);
}

/* Silver edition — Ramz Lattafa Silver */
.bottle.silver-edition .bottle-body {
  background: linear-gradient(135deg,
    #2a2f38 0%, #6a7a8a 20%, #3a4555 40%,
    #8a9aaa 55%, #5a6a7a 70%, #1a2030 100%
  );
  border: 1px solid rgba(180,200,220,0.35);
  box-shadow:
    inset 2px 0 10px rgba(200,220,240,0.12),
    inset -2px 0 5px rgba(0,0,0,0.7),
    0 4px 25px rgba(100,140,180,0.3);
}
.bottle.silver-edition .bottle-highlight {
  background: linear-gradient(
    to right, transparent,
    rgba(200,220,240,0.25) 40%,
    rgba(220,240,255,0.45) 50%,
    rgba(200,220,240,0.15) 60%, transparent
  );
}
.bottle.silver-edition .label-name { color: #dde8f0; }
.bottle.silver-edition .label-brand { color: #9ab0c8; }
.bottle.silver-edition .label-type { color: rgba(180,200,220,0.5); }
.bottle.silver-edition .bottle-cap,
.bottle.silver-edition .bottle-atomizer {
  background: linear-gradient(to bottom, #8a9aaa, #3a4a5a);
  border-color: rgba(180,200,220,0.3);
}

/* Ice edition — Hawas Ice */
.bottle.ice-edition .bottle-body {
  background: linear-gradient(135deg,
    #001830 0%, #003a60 20%, #00182a 40%,
    #0055a0 55%, #002845 70%, #000f20 100%
  );
  border: 1px solid rgba(0,200,255,0.25);
  box-shadow:
    inset 2px 0 10px rgba(0,200,255,0.1),
    inset -2px 0 5px rgba(0,0,0,0.8),
    0 4px 30px rgba(0,150,200,0.35);
}
.bottle.ice-edition .bottle-highlight {
  background: linear-gradient(
    to right, transparent,
    rgba(0,200,255,0.2) 40%,
    rgba(100,240,255,0.4) 50%,
    rgba(0,200,255,0.12) 60%, transparent
  );
}
.bottle.ice-edition .label-name { color: #a0e8ff; }
.bottle.ice-edition .label-brand { color: #40c8f0; }
.bottle.ice-edition .label-type { color: rgba(100,200,240,0.5); }
.bottle.ice-edition .bottle-cap,
.bottle.ice-edition .bottle-atomizer {
  background: linear-gradient(to bottom, #0088cc, #003a60);
  border-color: rgba(0,200,255,0.3);
}

/* ── FLOOR GLOW under bottle image ── */
.bottle-glow-floor {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 50px;
  background: radial-gradient(ellipse, var(--gc) 0%, transparent 70%);
  filter: blur(14px);
  animation: glow-pulse 6s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.55; transform: translateX(-50%) scaleX(1); }
  50%       { opacity: 1;    transform: translateX(-50%) scaleX(1.25); }
}

/* ===== PERFUME INFO ===== */
.perfume-info {
  display: flex; flex-direction: column;
}

.perfume-number {
  font-family: var(--font-serif);
  font-size: 5rem; font-weight: 300;
  color: rgba(201,168,76,0.12); line-height: 1;
  margin-bottom: -1rem;
}

.perfume-brand {
  font-size: 0.6rem; font-weight: 400;
  letter-spacing: 0.4em; color: var(--gold);
  text-transform: uppercase; margin-bottom: 0.75rem;
}

.perfume-name {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300; line-height: 1.1;
  color: var(--white); margin-bottom: 1rem;
}

.perfume-name em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.perfume-size {
  font-size: 0.65rem; font-weight: 300; letter-spacing: 0.15em;
  color: rgba(245,240,232,0.4); margin-bottom: 1.5rem;
  padding-bottom: 1.5rem; border-bottom: 1px solid rgba(201,168,76,0.15);
}

.perfume-desc {
  font-size: 0.8rem; font-weight: 300; line-height: 2;
  color: var(--white-dim); margin-bottom: 1.5rem;
  max-width: 440px;
}

.perfume-notes {
  display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 0.5rem;
}
.perfume-notes span {
  font-size: 0.6rem; font-weight: 300; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold-dark);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 0.3rem 0.8rem;
}

/* ===== SCROLL REVEAL ===== */
.perfume-showcase { opacity: 0; transform: translateY(60px); transition: all 1s ease; }
.perfume-showcase.visible { opacity: 1; transform: translateY(0); }
.perfume-info { opacity: 0; transform: translateX(40px); transition: all 1.2s ease 0.3s; }
.perfume-showcase.reverse .perfume-info { transform: translateX(-40px); }
.perfume-showcase.visible .perfume-info { opacity: 1; transform: translateX(0); }

/* ===== ABOUT SECTION ===== */
#about {
  position: relative; z-index: 1;
  padding: 10rem 4rem;
  border-top: 1px solid rgba(201,168,76,0.1);
  border-bottom: 1px solid rgba(201,168,76,0.1);
}

.about-inner { max-width: 1000px; margin: 0 auto; text-align: center; }

.about-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300; margin-bottom: 2rem; color: var(--white);
}
.about-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-text {
  font-size: 0.85rem; font-weight: 300; line-height: 2.2;
  color: var(--white-dim); max-width: 680px; margin: 0 auto 5rem;
}

.about-pillars {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem;
}

.pillar {
  text-align: center; padding: 2.5rem 2rem;
  border: 1px solid rgba(201,168,76,0.1);
  transition: all 0.4s ease;
}
.pillar:hover {
  border-color: rgba(201,168,76,0.35);
  background: rgba(201,168,76,0.03);
  transform: translateY(-8px);
}

.pillar-icon {
  font-size: 1.2rem; color: var(--gold); margin-bottom: 1.5rem;
  display: block;
}

.pillar h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem; font-weight: 400;
  color: var(--white); margin-bottom: 0.8rem;
  letter-spacing: 0.05em;
}

.pillar p {
  font-size: 0.72rem; font-weight: 300; line-height: 1.8;
  color: var(--white-dim);
}

/* ===== CONTACT SECTION ===== */
#contact {
  position: relative; z-index: 1;
  padding: 10rem 4rem;
  text-align: center;
  overflow: hidden;
}

#contact::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(201,168,76,0.05) 0%, transparent 65%);
  pointer-events: none;
}

.contact-inner { position: relative; z-index: 1; }

.contact-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300; line-height: 1.1;
  color: var(--white); margin-bottom: 2rem;
}
.contact-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-desc {
  font-size: 0.8rem; font-weight: 300; line-height: 2;
  color: var(--white-dim); margin-bottom: 3rem;
}

/* ===== FOOTER ===== */
#footer {
  position: relative; z-index: 1;
  padding: 4rem; text-align: center;
  border-top: 1px solid rgba(201,168,76,0.1);
}

.footer-logo { display: flex; flex-direction: column; align-items: center; gap: 4px; margin-bottom: 2rem; }

.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic; font-size: 0.85rem;
  color: rgba(201,168,76,0.5); letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.footer-copy {
  font-size: 0.6rem; font-weight: 300; letter-spacing: 0.15em;
  color: rgba(245,240,232,0.25);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  #navbar { padding: 1.2rem 2rem; }
  .nav-links { display: none; }

  .showcase-container {
    grid-template-columns: 1fr;
    padding: 4rem 2rem;
    text-align: center;
    gap: 2rem;
  }
  .perfume-showcase { min-height: auto; padding: 3rem 0; }
  .perfume-showcase.reverse .showcase-container { direction: ltr; }
  .bottle-stage { order: -1; }
  .perfume-info { align-items: center; transform: none !important; }
  .perfume-number { display: none; }
  .perfume-notes { justify-content: center; }
  .about-pillars { grid-template-columns: 1fr; }
  #about, #contact { padding: 6rem 2rem; }
  .section-header { padding: 5rem 2rem 3rem; }
  .hero-title { font-size: clamp(3rem, 12vw, 6rem); }
}

@media (max-height: 750px) {
  .showcase-container { padding: 3rem 4rem; }
  .perfume-showcase { min-height: auto; }
  .bottle { width: 110px; height: 200px; }
  .perfume-name { font-size: clamp(1.6rem, 3vw, 2.5rem); }
  .perfume-desc { font-size: 0.75rem; line-height: 1.8; }
}

@media (max-width: 480px) {
  .bottle { width: 110px; height: 200px; }
  .showcase-container { padding: 4rem 1.5rem; }
}
