@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #fff8f0;
  color: #552915;
  line-height: 1.6;
}

nav.customer-nav {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  background: #fff8f0;
  position: sticky;
  top: 0;
  z-index: 10000;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  height: 80px;
}

nav.customer-nav .logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.8em;
  font-weight: 800;
  color: #552915;
  text-decoration: none;
}
nav.customer-nav .logo img {
  width: 45px;
  height: auto;
}

nav.customer-nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  align-items: center;
  justify-content: center;
}

nav.customer-nav ul li a {
  text-decoration: none;
  color: #552915;
  font-weight: 600;
  padding: 5px 0;
  position: relative;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 6px;
}

nav.customer-nav ul li:not(#loginLink) a:hover {
  color: #fff8f0;
  background: #a65b35;
  padding: 5px 10px;
  border-radius: 5px;
}

.current-page a,
.current-page a:hover {
  color: #fff8f0 !important;
  background: #552915 !important;
  padding: 5px 10px !important;
  border-radius: 5px !important;
}

nav.customer-nav ul li a:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  display: block;
  margin-top: 5px;
  right: 0;
  background: #a65b35;
  transition: width 0.3s ease;
}
nav.customer-nav ul li a:hover:after,
.current-page a:after {
  width: 0;
}

.nav-login-btn {
  padding: 8px 15px !important;
  border-radius: 20px;
  transition: all 0.3s;
  background: none !important;
  color: #552915 !important;
}
.nav-login-btn:hover {
  background: #a65b35 !important;
  color: #fff8f0 !important;
}
.nav-login-btn:hover:after {
  width: 0;
}

.hamburger {
  display: none !important;
}


.hero-section {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 90vh;
  padding: 0 5%;
  text-align: center;
  background: url('hero-bg.jpg') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(85, 41, 21, 0.6);
  z-index: 1;
}

.hero-content-new {
  position: relative;
  z-index: 2;
  color: #fff8f0;
  max-width: 800px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-content-new .subtitle {
  font-size: 1.2em;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: #f2e6dc;
}

.hero-content-new h1 {
  font-size: 4.5em;
  font-weight: 800;
  margin-bottom: 30px;
  line-height: 1.1;
  text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.cta-button {
  display: inline-block;
  padding: 14px 30px;
  background: #a65b35;
  color: #fff8f0;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  transition: 0.3s;
  font-size: 1.1em;
  margin: 10px;
  border: 2px solid #a65b35;
}
.cta-button:hover {
  background: #552915;
  border-color: #552915;
}

.cta-secondary {
  display: inline-block;
  padding: 14px 30px;
  background: none;
  color: #fff8f0;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  transition: 0.3s;
  font-size: 1.1em;
  border: 2px solid #fff8f0;
}
.cta-secondary:hover {
  background: #fff8f0;
  color: #552915;
}

.featured-products-section {
  padding: 80px 5%;
  text-align: center;
  background: #fff;
}
.featured-products-section h2 {
  font-size: 2.8em;
  color: #552915;
  margin-bottom: 10px;
}
.section-description {
  font-size: 1.1em;
  color: #a65b35;
  margin-bottom: 40px;
}

.product-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  flex-wrap: wrap;
}

.product-card {
  background: #fff3e8;
  border-radius: 15px;
  padding: 25px;
  max-width: 280px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  flex: 1 1 22%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
  text-align: center;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.product-card img {
  width: 100%;
  max-width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
  border: 2px solid #a65b35;
}
.product-card h3 {
  font-size: 1.4em;
  color: #552915;
  margin-bottom: 8px;
}
.product-card p {
  color: #a65b35;
  font-size: 0.95em;
  margin-bottom: 0;
  flex-grow: 1;
}

.menu-cta-banner {
  background: #552915;
  padding: 60px 5%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-box {
  background: #a65b35;
  color: #fff8f0;
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  max-width: 600px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.cta-box h3 {
  font-size: 2em;
  margin-bottom: 10px;
}
.cta-box p {
  font-size: 1.1em;
  margin-bottom: 20px;
}
.menu-cta-button {
  display: inline-block;
  padding: 15px 35px;
  background: #fff8f0;
  color: #552915;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  transition: 0.3s;
  border: 2px solid #fff8f0;
}
.menu-cta-button:hover {
  background: #f2e6dc;
  transform: scale(1.05);
}

footer {
  background: #a65b35;
  color: #fff8f0;
  padding: 30px 5%;
  margin-top: auto;
  font-size: 0.9em;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 15px;
  text-align: center;
}
.footer-logo {
  font-size: 1.5em;
  font-weight: 700;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
.footer-links a {
  color: #fff8f0;
  text-decoration: none;
  transition: 0.3s;
}
.footer-links a:hover {
  color: #f2e6dc;
}
.copyright {
  text-align: center;
  font-size: 0.85em;
  opacity: 0.8;
}

.popup-modal {
  display: none;
  position: fixed;
  z-index: 10001;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
}
.popup-content {
  background-color: #fff8f0;
  padding: 30px;
  border-radius: 15px;
  width: 90%;
  max-width: 350px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  position: relative;
}
.popup-content h3 {
  color: #552915;
  margin-bottom: 10px;
}
.popup-content p {
  color: #a65b35;
  margin-bottom: 20px;
}
.signin-btn {
  padding: 12px 20px;
  background: #a65b35;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
  width: 100%;
}
.signin-btn:hover {
  background: #552915;
}
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  color: #552915;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  background: none;
  border: none;
}

@media (max-width: 992px) {
  .hero-content-new h1 {
    font-size: 3.5em;
  }
  .product-card {
    flex: 1 1 45%;
    max-width: 350px;
  }
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  .footer-links {
    margin-top: 15px;
  }
}

@media (max-width: 768px) {
  nav.customer-nav {
    height: auto;
    flex-wrap: wrap;
    justify-content: center;
  }
  nav.customer-nav ul {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    width: 100%;
  }
  .hero-content-new h1 {
    font-size: 2.5em;
  }
  .cta-button, .cta-secondary {
    display: block;
    margin: 10px auto;
  }
  .featured-products-section {
    padding: 60px 5%;
  }
  .product-card {
    flex: 1 1 100%;
    max-width: 300px;
  }
  .product-card img {
    height: 180px;
  }
}
