/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.4s var(--ease-smooth);
}

.navbar.scrolled {
  background: rgba(6, 6, 10, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 160, 23, 0.08);
  padding: 0.75rem 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: flex;
  align-items: center;
}

.navbar-logo {
  height: 36px;
  width: auto;
  transition: opacity 0.3s;
}

.navbar-logo:hover {
  opacity: 0.85;
}

.navbar-links {
  display: none;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.navbar-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.3s;
}

.navbar-links a:hover {
  color: var(--gold);
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 100;
}

.hamburger span {
  width: 22px;
  height: 1.5px;
  background: var(--gold);
  border-radius: 1px;
  transition: all 0.3s;
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(6, 6, 10, 0.98);
  backdrop-filter: blur(24px);
  z-index: 1001;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text-primary);
  transition: color 0.3s;
}

.mobile-nav a:hover {
  color: var(--gold);
}

.mobile-nav-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid var(--gold-muted);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
  transition: border-color 0.3s, background 0.3s;
  z-index: 1002;
}

.mobile-nav-close:hover {
  border-color: var(--gold);
  background: rgba(212, 160, 23, 0.1);
}

@media (min-width: 768px) {
  .navbar-links {
    display: flex;
  }
  .hamburger {
    display: none;
  }
}

/* ===== HERO ===== */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  background:
    linear-gradient(to bottom, rgba(6,6,10,0.6) 0%, rgba(6,6,10,0.45) 40%, rgba(6,6,10,0.8) 100%),
    url('https://images.unsplash.com/photo-1711662292714-41269ec91eed?auto=format&fit=crop&w=1920&q=80') center center / cover no-repeat;
}

#hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, transparent, var(--bg-deep));
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 var(--container-px);
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 1.08;
  margin: 2rem 0 1.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 6s linear infinite;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 300;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-brands {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.hero-brands .brand-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  font-style: italic;
  color: var(--text-primary);
  opacity: 0.6;
}

.hero-brands .brand-divider {
  color: var(--gold-muted);
  font-size: 1.2rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold-muted);
  animation: scrollBounce 2.5s ease-in-out infinite;
}

.scroll-indicator svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold-muted);
}

/* ===== DUAL WORLD ===== */
#dual-world {
  padding: 0;
}

.dual-world-container {
  display: grid;
  grid-template-columns: 1fr;
}

.dual-world-side {
  position: relative;
  min-height: 50vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
}

.dual-world-bg {
  position: absolute;
  inset: 0;
}

.dual-world-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.dual-world-side:hover .dual-world-bg img {
  transform: scale(1.05);
}

.dual-world-overlay {
  position: absolute;
  inset: 0;
  transition: opacity 0.6s;
}

.dual-world--perfume .dual-world-overlay {
  background: linear-gradient(135deg, rgba(155,111,168,0.5), rgba(6,6,10,0.7));
}

.dual-world--cigar .dual-world-overlay {
  background: linear-gradient(135deg, rgba(198,125,58,0.5), rgba(6,6,10,0.7));
}

.dual-world-side:hover .dual-world-overlay {
  opacity: 0.7;
}

.dual-world-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
}

.dual-world-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(240, 237, 230, 0.6);
}

.dual-world-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--text-primary);
  margin: 0.5rem 0 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.dual-world-subtitle {
  font-size: 1rem;
  color: rgba(240, 237, 230, 0.7);
  margin-bottom: 1.5rem;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.dual-world-cta {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold-muted);
  padding-bottom: 0.25rem;
  transition: border-color 0.3s;
}

.dual-world-side:hover .dual-world-cta {
  border-color: var(--gold);
}

@media (min-width: 768px) {
  .dual-world-container {
    grid-template-columns: 1fr 1fr;
  }
  .dual-world-side {
    min-height: 70vh;
  }
}

/* ===== PRODUCT SECTIONS ===== */
#profumi, #sigari, #bundle, #esperienze, #chi-siamo, #vip, #contatti {
  position: relative;
}

#sigari, #esperienze, #vip {
  background: var(--bg-dark);
}

/* ===== IMAGE DIVIDERS ===== */
.img-divider {
  position: relative;
  height: 45vh;
  min-height: 300px;
  overflow: hidden;
}

.img-divider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.img-divider::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    var(--bg-dark) 0%,
    rgba(6,6,10,0.3) 25%,
    rgba(6,6,10,0.3) 75%,
    var(--bg-deep) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.img-divider.from-deep::before {
  background: linear-gradient(
    to bottom,
    var(--bg-deep) 0%,
    rgba(6,6,10,0.25) 25%,
    rgba(6,6,10,0.25) 75%,
    var(--bg-dark) 100%
  );
}

.img-divider.to-deep::before {
  background: linear-gradient(
    to bottom,
    var(--bg-dark) 0%,
    rgba(6,6,10,0.25) 25%,
    rgba(6,6,10,0.25) 75%,
    var(--bg-deep) 100%
  );
}

.img-divider .divider-text {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-divider .divider-text blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.3rem, 3vw, 2rem);
  color: var(--text-primary);
  text-align: center;
  max-width: 600px;
  padding: 0 2rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6);
}

.img-divider .divider-text blockquote span {
  color: var(--gold);
}

/* ===== EXPERIENCES GRID ===== */
.experiences-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .experiences-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== CHI SIAMO ===== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

@media (max-width: 767px) {
  .stats-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}

/* ===== PROPOSAL SECTION ===== */
.proposal-section {
  background: var(--bg-dark);
  padding-bottom: calc(var(--section-py) + 2rem);
}

.proposal-block {
  background: var(--bg-card);
  border: 1px solid rgba(240, 237, 230, 0.05);
  border-radius: 20px;
  padding: 2.5rem;
  margin-bottom: 2rem;
}

.proposal-block:hover {
  border-color: rgba(212, 160, 23, 0.1);
}

.proposal-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(212, 160, 23, 0.1);
  margin-bottom: 1.25rem;
}

.proposal-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
}

.proposal-block h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.proposal-block > p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 700px;
  margin-bottom: 1.5rem;
}

/* Feature list inside proposal */
.proposal-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .proposal-features {
    grid-template-columns: 1fr 1fr;
  }
}

.proposal-feature {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 1rem 1.25rem;
  background: var(--bg-elevated);
  border-radius: 10px;
  border-left: 3px solid var(--gold-muted);
}

.proposal-feature strong {
  font-size: 0.9rem;
  color: var(--text-primary);
  font-weight: 600;
}

.proposal-feature span {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* Tech stack grid */
.tech-stack-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .tech-stack-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .tech-stack-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.tech-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.25rem;
  background: var(--bg-elevated);
  border-left: 3px solid var(--gold);
  border-radius: 0 10px 10px 0;
}

.tech-item-name {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold-light);
}

.tech-item-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Roadmap phases */
.roadmap-phases {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.roadmap-phase {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.phase-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
  min-width: 60px;
  opacity: 0.4;
}

.phase-content h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.phase-content ul {
  list-style: none;
  padding: 0;
}

.phase-content li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 0.35rem;
  line-height: 1.6;
}

.phase-content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-muted);
}

/* Proposal CTA */
.proposal-cta {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 160, 23, 0.1);
}

.powered-by {
  font-size: 0.85rem;
  color: var(--text-dim);
}

.powered-by a {
  color: var(--gold);
  transition: color 0.3s;
}

.powered-by a:hover {
  color: var(--gold-light);
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--bg-deep);
  border-top: 1px solid rgba(212, 160, 23, 0.08);
  padding: 3rem 0;
  text-align: center;
}

.footer-concept {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.footer-zefyr {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 1rem;
}

.footer-zefyr a {
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: color 0.3s;
}

.footer-zefyr a:hover {
  color: var(--gold-light);
}

.footer-zefyr svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-legal {
  font-size: 0.7rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 767px) {
  .hero-brands {
    flex-direction: column;
    gap: 0.5rem;
  }

  .bundle-products {
    flex-direction: column;
  }

  .bundle-plus {
    transform: rotate(90deg);
  }

  .product-image {
    height: 220px;
  }
}
