/* Luxury Elite Navbar */

header.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: linear-gradient(to right, white, white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 60px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(-20px);
  animation: navbarFadeIn 1s ease forwards;
}

@keyframes navbarFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Logo */

.navbar .logo {
  font-family: 'Canela', 'Didot', 'Helvetica', 'Futura', sans-serif;
  font-size: 42px;
  letter-spacing: 4px;
  color: #000000;
  transition: color 0.3s ease;
}

.navbar .logo:hover {
  color: #f94f6d;
  cursor: pointer;
}

/* Menu */

/* ===== Menu ===== */
nav ul.menu {
  list-style: none;
  display: flex;
  gap: 40px;
}

nav ul.menu li a {
  color: #000000;
  text-decoration: none;
  font-size: 16px;  /* smaller size */
  font-family: 'Montserrat', 'Helvetica Neue', 'Futura', sans-serif;
  font-weight: 400;  /* lighter weight */
  letter-spacing: 1px; /* more premium spacing */
  position: relative;
  transition: color 0.3s ease, transform 0.3s ease;
}

nav ul.menu li a:hover {
  color: #f94f6d;
  transform: translateY(-2px);
}

nav ul.menu li a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 1px;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  background: #f94f6d;
  transition: width 0.4s ease;
}

nav ul.menu li a:hover::after {
  width: 100%;
}


/* Nav Icons (Material Symbols Only) */

.nav-icons {
  display: flex;
  align-items: center;
  gap: 25px;
  position: relative;
}

.nav-icons .material-symbols-outlined {
  font-size: 20px;
  color: #000000;
  transition: all 0.3s ease;
}


.nav-icons a:hover .material-symbols-outlined {
  color: #f94f6d;
  transform: scale(1.15);
}

/* Cart badge */

.cart-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  background: #f94f6d;
  color: #fff;
  font-size: 12px;
  padding: 3px 7px;
  border-radius: 50%;
  font-weight: 600;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* Hamburger Menu */

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  width: 28px;
  background: white;
  border-radius: 20px;
  transition: all 0.4s ease;
}

#menu-toggle {
  display: none;
}

/* Responsive */

@media (max-width: 992px) {
  nav ul.menu {
    position: absolute;
    top: 85px;
    left: 0;
    right: 0;
    background: #000;
    flex-direction: column;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.5s ease;
    padding: 0 40px;
  }

  #menu-toggle:checked + .hamburger + nav .menu {
    max-height: 500px;
    padding: 20px 40px;
  }

  .hamburger {
    display: flex;
  }
}


/* Dark Mode Toggle Button */
.theme-toggle {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: all 0.3s ease;
}

.theme-toggle:hover {
  background: #f94f6d;
  color: white;
}

/* DARK THEME STYLES */
body.dark-mode {
  background: #000;
  color: #fff;
}

body.dark-mode a {
  color: #f94f6d;
}

body.dark-mode footer {
  background: #111;
  color: #eee;
}

body.dark-mode .footer-column ul li a {
  color: #aaa;
}

body.dark-mode .footer-column ul li a:hover {
  color: #fff;
}
