/* ========================= */
/* BASE                      */
/* ========================= */
body {
  margin: 0;
  background: #0c0c0c;
  color: #e0e0e0;
  font-family: sans-serif;
}

/* ========================= */
/* NAVBAR                    */
/* ========================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #0c0c0c;
  border-bottom: 1px solid #222;
  z-index: 10;
}

.navbar-container {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0.5rem 1rem;
}

/* crop logo in navbar */
.logo-wrapper {
  height: 70px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.logo-wrapper img {
  height: 120px;
  width: auto;
}

/* links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  color: #f4d4a4;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #ffffff;
}

/* ========================= */
/* MOBILE RESPONSIVENESS      */
/* ========================= */
@media (max-width: 768px) {
  .logo-wrapper {
    height: 55px;
  }

  .logo-wrapper img {
    height: 95px;
  }

  .hero {
    min-height: 70vh;
  }

  .logo-clip {
    height: 140px;
  }

  .hero-logo {
    height: 240px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 1rem;
  }

  /* Modal stacking on tablet */
  .product-modal {
    flex-direction: column;
    padding: 1rem;
  }

  .modal-image-wrapper {
    max-width: 100%;
    max-height: 300px;
    margin-bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .logo-wrapper {
    height: 50px;
  }

  .logo-wrapper img {
    height: 90px;
  }

  .logo-clip {
    height: 110px;
  }

  .hero-logo {
    height: 230px;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .brand-text p {
    font-size: 0.95rem;
  }
}