/* ============================
   VARIABLES & RESET
   ============================ */
:root {
  --gold: #c9a227;
  --burgundy: #8b0d37;
  --dark: #1a1a1a;
  --gray: #666;
  --light-gray: #aaa;
  --bg: #fafafa;
  --white: #ffffff;
}

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

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

body {
  font-family: 'Poppins', sans-serif;
  background: var(--white);
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

/* ============================
   HEADER
   ============================ */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--white);
  z-index: 1000;
}

/* Top Bar */
.top-bar {
  background: var(--gold);
  color: var(--white);
  text-align: center;
  padding: 10px 20px;
  font-size: 12px;
  letter-spacing: 1px;
  overflow: hidden;
  height: 38px;
}

.top-bar-slider {
  position: relative;
  height: 18px;
}

.top-bar-item {
  position: absolute;
  width: 100%;
  left: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.top-bar-item.active {
  opacity: 1;
  transform: translateY(0);
}

.top-bar-item.exit {
  opacity: 0;
  transform: translateY(-20px);
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

/* Logo */
.logo {
  flex-shrink: 0;
}

.logo img {
  height: 80px;
  width: auto;
  transition: opacity 0.3s;
}

.logo:hover img {
  opacity: 0.8;
}

/* Navigation Links */
.nav-links {
  display: flex;
  gap: 35px;
  list-style: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-links a {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
  color: #333;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

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

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--gold);
}

.nav-links a.active::after {
  width: 100%;
}

/* Nav Right - Cart */
.nav-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.cart-icon {
  position: relative;
  color: #333;
  transition: color 0.3s;
  display: flex;
  align-items: center;
}

.cart-icon:hover {
  color: var(--gold);
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--gold);
  color: var(--white);
  font-size: 10px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}

/* Mobile Menu - Hidden by default */
.nav-links-mobile {
  display: none;
  list-style: none;
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background: #333;
  position: relative;
  transition: background 0.3s;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: #333;
  left: 0;
  transition: transform 0.3s, top 0.3s;
}

.hamburger::before {
  top: -7px;
}

.hamburger::after {
  top: 7px;
}

.menu-toggle.active .hamburger {
  background: transparent;
}

.menu-toggle.active .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle.active .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

/* ============================
   HERO SECTION
   ============================ */
.hero {
  padding-top: 100px;
}

.hero-content {
  width: 100%;
}

/* Illustration/Video Container */
.hero-illustration {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: auto;
  display: block;
}

/* Overlay with zones */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}

.hero-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

/* Clickable Zones - Left and Right halves */
.hero-zone {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.zone-left {
  background: rgba(201, 162, 39, 0.8);
}

.zone-right {
  background: rgba(139, 13, 55, 0.8);
}

.zone-title {
  font-size: 32px;
  letter-spacing: 8px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--white);
  transition: all 0.3s ease;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.zone-left:hover {
  background: rgba(201, 162, 39, 0.95);
}

.zone-right:hover {
  background: rgba(139, 13, 55, 0.95);
}

.hero-zone:hover .zone-title {
  transform: scale(1.1);
}

/* ============================
   FOOTER
   ============================ */
footer {
  background: var(--dark);
  color: var(--white);
  padding: 60px 25px 30px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

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

.footer-col p,
.footer-col a {
  font-size: 13px;
  color: var(--light-gray);
  line-height: 2;
  display: block;
  transition: color 0.3s;
}

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

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  color: var(--light-gray);
  transition: color 0.3s;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid #333;
  font-size: 11px;
  color: #555;
}

/* ============================
   RESPONSIVE - TABLET
   ============================ */


@media (max-width: 900px) {
  .top-bar {
    padding: 8px 15px;
    font-size: 11px;
  }

  .navbar {
    padding: 10px 20px;
  }

  .nav-links {
    gap: 20px;
  }

  .nav-links a {
    font-size: 10px;
    letter-spacing: 1.5px;
  }

  .logo img {
    height: 55px;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }

  .footer-col:first-child {
    grid-column: 1 / -1;
  }
}

/* ============================
   RESPONSIVE - MOBILE
   ============================ */
@media (max-width: 768px) {
  /* Top Bar */
  .top-bar {
    padding: 8px 10px;
    font-size: 10px;
    height: 34px;
  }

  .top-bar-slider {
    height: 16px;
  }

  /* Navbar - Burger left, Logo center, Cart right */
  .navbar {
    padding: 10px 20px;
    display: grid;
    grid-template-columns: 50px 1fr 50px;
    align-items: center;
  }

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: block;
    order: 1;
    justify-self: start;
  }

  .logo {
    order: 2;
    justify-self: center;
  }

  .logo img {
    height: 50px;
  }

  .nav-right {
    order: 3;
    justify-self: end;
  }

  /* Mobile Menu */
  .nav-links-mobile {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transition: left 0.4s ease;
    box-shadow: 10px 0 30px rgba(0,0,0,0.1);
    z-index: 1000;
  }

  .nav-links-mobile.active {
    left: 0;
  }

  .nav-links-mobile a {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #333;
    transition: color 0.3s;
  }

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

  /* Hero */
  .hero {
    padding-top: 90px;
  }

  .zone-title {
    font-size: 22px;
    letter-spacing: 5px;
  }

  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col:first-child {
    grid-column: auto;
  }

  .social-links {
    justify-content: center;
  }
}

/* ============================
   RESPONSIVE - SMALL MOBILE
   ============================ */
@media (max-width: 400px) {
  .top-bar {
    font-size: 9px;
  }

  .logo img {
    height: 45px;
  }

  .zone-title {
    font-size: 16px;
    letter-spacing: 3px;
  }
}

/* ============================
   UTILITIES
   ============================ */
body.menu-open {
  overflow: hidden;
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
  z-index: 999;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}
