@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600&display=swap');

:root {
  --primary-bg: #0d1321;
  --secondary-bg: #1d2d44;
  --accent-color: #f0ebd8;
  --text-main: #f0ebd8;
  --text-muted: #e0e0e0;
  --gold-accent: #c5a059;
}

/* Global Reset Overrides */
html, body {
  background-color: var(--primary-bg) !important;
  color: var(--text-main) !important;
  font-family: 'Outfit', sans-serif !important;
}

/* NAVBAR UPGRADES */
.navbar {
  background-color: rgba(13, 19, 33, 0.8) !important;
  backdrop-filter: blur(10px) !important;
  border-bottom: 1px solid rgba(197, 160, 89, 0.2);
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background-color: rgba(13, 19, 33, 0.98) !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5) !important;
}

.navbar.scrolled .logo,
.navbar.scrolled .nav-links li a {
  color: var(--gold-accent) !important;
}

.navbar:hover {
  background-color: var(--primary-bg) !important;
}
.navbar:hover .logo,
.navbar:hover .nav-links li a {
  color: var(--gold-accent) !important;
}

.logo {
  font-family: 'Outfit', serif !important;
  font-weight: 600;
  letter-spacing: 5px;
  color: var(--gold-accent) !important;
  text-shadow: 0 0 10px rgba(197, 160, 89, 0.3);
}

.nav-links li a {
  font-family: 'Outfit', sans-serif !important;
  font-weight: 300;
  color: var(--text-main) !important;
  letter-spacing: 2px !important;
  position: relative;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--gold-accent);
  transition: width 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.nav-links li a:hover::after {
  width: 100%;
}

/* HAMBURGER */
.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  z-index: 1000;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--gold-accent);
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* RESPONSIVE DESIGN FOR NAVBAR */
@media (max-width: 900px) {
  .nav-container {
    flex-wrap: wrap;
    justify-content: space-between !important;
    padding: 1rem !important;
  }
  
  .hamburger {
    order: 2;
    display: flex;
    align-items: center;
  }

  .nav-center {
    order: 1;
    position: static !important;
    transform: none !important;
    margin-right: auto;
  }
  
  .nav-left, .nav-right {
    display: none;
    width: 100%;
    order: 3;
    background: transparent;
    position: static;
    height: auto;
    padding: 1rem 0;
    text-align: center;
  }

  .nav-left.active, .nav-right.active {
    display: flex;
    justify-content: center;
    border-top: 1px solid rgba(197, 160, 89, 0.2);
    margin-top: 10px;
    animation: slideDown 0.3s ease forwards;
  }

  .nav-links {
    flex-direction: column !important;
    gap: 1.5rem !important;
    width: 100%;
  }

  .nav-right.active {
    border-top: none;
    margin-top: 0;
  }
  
  .hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* CARDS AND IMAGES UPGRADES */
.hero, .landscape-banner {
  box-shadow: inset 0 0 100px rgba(0,0,0,0.8) !important;
  position: relative;
}

.hero::after, .landscape-banner::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(180deg, rgba(13, 19, 33, 0.7) 0%, rgba(13, 19, 33, 0.2) 50%, rgba(13, 19, 33, 0.9) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-content, .landscape-overlay {
  z-index: 2;
  position: relative;
}

.hero-content h1, .landscape-overlay h2 {
  font-family: 'Outfit', sans-serif !important;
  font-weight: 600 !important;
  color: var(--gold-accent) !important;
  text-transform: uppercase;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
}

.discover-btn, .shop-btn {
  border: 1px solid var(--gold-accent) !important;
  color: var(--gold-accent) !important;
  background: transparent !important;
  font-weight: 400 !important;
  padding: 1rem 3rem !important;
  letter-spacing: 3px !important;
  border-radius: 30px;
  transition: all 0.4s ease !important;
  position: relative;
  overflow: hidden;
  z-index: 2;
  display: inline-block;
}

.discover-btn::before, .shop-btn::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 0%; height: 100%;
  background: var(--gold-accent);
  transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: -1;
}

.discover-btn:hover::before, .shop-btn:hover::before {
  width: 100%;
}

.discover-btn:hover, .shop-btn:hover {
  color: var(--primary-bg) !important;
  box-shadow: 0 0 20px rgba(197, 160, 89, 0.5);
  transform: translateY(-3px);
}

.right-text h3 {
  color: var(--gold-accent) !important;
  font-family: 'Outfit', sans-serif !important;
  font-weight: 600 !important;
}

.right-text p {
  color: var(--text-muted) !important;
}

/* PRODUCT STORE UPGRADES */
.category-bar {
  background-color: var(--secondary-bg) !important;
  border-bottom: 1px solid rgba(197, 160, 89, 0.2);
  margin-top: 80px; /* offset navbar */
}

.category-menu li a.active {
  color: var(--gold-accent) !important;
  border-bottom: 2px solid var(--gold-accent) !important;
}

.category-menu li a {
  color: var(--text-muted) !important;
}

.category-menu li a:hover {
  color: var(--text-main) !important;
}

.product-card {
  background: var(--secondary-bg) !important;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2) !important;
  transition: transform 0.4s ease, box-shadow 0.4s ease !important;
  border: 1px solid rgba(255,255,255,0.05);
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-8px) scale(1.02) !important;
  box-shadow: 0 15px 30px rgba(0,0,0,0.5) !important;
  border-color: rgba(197, 160, 89, 0.3);
}

.product-card h3 {
  color: var(--text-main) !important;
  font-family: 'Outfit', sans-serif !important;
  margin-top: 15px;
}

.product-card .price {
  color: var(--gold-accent) !important;
  font-weight: 600;
  margin-bottom: 15px;
}

/* FOOTER UPGRADES */








/* FORMS / INPUTS (account/checkout/etc) */
input[type="text"], input[type="email"], input[type="password"], textarea, select {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  color: var(--text-main) !important;
  border-radius: 6px;
  font-family: 'Outfit', sans-serif !important;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input[type="text"]:focus, input[type="email"]:focus, input[type="password"]:focus, textarea:focus, select:focus {
  border-color: var(--gold-accent) !important;
  box-shadow: 0 0 8px rgba(197, 160, 89, 0.3) !important;
  outline: none;
}

.login-form button, .register-form button, .checkout-btn, .action-btn {
  background: var(--gold-accent) !important;
  color: var(--primary-bg) !important;
  border: none !important;
  border-radius: 4px;
  font-weight: 600 !important;
  transition: opacity 0.3s ease, transform 0.3s ease;
  padding: 10px 20px;
  cursor: pointer;
}

.login-form button:hover, .register-form button:hover, .checkout-btn:hover, .action-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(197,160,89, 0.4);
}

/* Other fixes */
.zero {
  background: var(--primary-bg) !important;
}

.zero-right {
  color: var(--text-main) !important;
}

/* Page titles */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif !important;
}

.page-title {
  color: var(--gold-accent) !important;
  text-align: center;
  margin: 3rem 0;
  letter-spacing: 2px;
}

/* --- Standard Footer --- */
.fog-footer {
  background: #080c16 !important;
  padding: 30px 20px;
  border-top: 1px solid rgba(197, 160, 89, 0.2);
  font-family: 'Bodoni Moda', serif;
  font-size: 14px;
  margin-top: auto;
  color: #f0ebd8;
  text-align: center;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
