body {
  font-family: Arial, sans-serif;
  margin: 0;
  color: #3B2F2F;
  padding-top: 80px;
  background: #fff;
}

/* Navbar */
header {
  background: transparent;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%; /* Full width */
  z-index: 1000;
  padding: 1rem 2rem;
  box-sizing: border-box;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}

.logo img {
  height: 50px;
  width: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 15px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: #8B3A1A;
  text-decoration: none;
  font-weight: bold;
}

.nav-links a.active,
.nav-links a:hover {
  color: #C65D2C;
}

.btn {
  background: #C65D2C;
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  transition: 0.3s ease;
}

.btn:hover {
  background: #D4AF37;
  color: #3B2F2F;
}

.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #8B3A1A;
}

/* Hero */
.hero {
  background: #FDF9F6;
  text-align: center;
  padding: 100px 20px;
  color: #5A2E1B;
}

.hero h1 {
  font-size: 2.5rem;
  color: #8B3A1A;
}

.hero p {
  font-size: 1.2rem;
}

/* Grid Layout */
.beverage-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.card {
  background: white;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: auto;
  max-height: 220px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 15px;
}

.card h3 {
  color: #C65D2C;
}

.card p {
  font-size: 1rem;
}

.price {
  font-weight: bold;
  margin: 10px 0;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 2px;
  width: 100%;
  height: 80%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
}

.modal-content {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  max-width: 500px;
  width: 100%;
  text-align: center;
  position: relative;
}

.modal-content h3 {
  color: #C65D2C;
}

.modal-content .price {
  font-weight: bold;
  margin: 15px 0;
}

.modal-content .btn {
  background: #C65D2C;
  color: white;
}

.modal-content .btn:hover {
  background: #D4AF37;
  color: #3B2F2F;
}

.close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
  color: #333;
}

/* Slider */
.slider {
  position: relative;
}

.slider img {
  width: 100%;
  border-radius: 6px;
}

.slider .prev,
.slider .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  font-size: 18px;
}

.slider .prev { left: 10px; }
.slider .next { right: 10px; }

/* Footer */
footer {
  background: #5A2E1B;
  color: white;
  text-align: center;
  padding: 20px;
}

.social-icons {
  margin-top: 10px;
}

.social-icons a {
  color: white;
  margin: 0 10px;
  font-size: 20px;
}

.social-icons a:hover {
  color: #D4AF37;
}

/* Story Sections */
.story {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 60px 20px;
  flex-wrap: wrap;
}

.story.reverse {
  flex-direction: row-reverse;
}

.story-img {
  flex: 1;
  min-width: 280px;
}

.story-img img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.story-text {
  flex: 1;
  min-width: 280px;
}

.story-text h2 {
  color: #C65D2C;
  margin-bottom: 15px;
}

.story-text p {
  line-height: 1.6;
  font-size: 1.05rem;
  color: #3B2F2F;
}

/* Pickup Section */
.pickup {
  background: #FDF9F6;
  padding: 60px 20px;
  text-align: center;
}

.pickup h2 {
  color: #8B3A1A;
  margin-bottom: 15px;
}

.pickup p {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.pickup-link {
  display: inline-block;
  background: #C65D2C;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.pickup-link:hover {
  background: #D4AF37;
  color: #3B2F2F;
}

.map-container {
  margin-top: 20px;
  border-radius: 8px;
  overflow: hidden;
}

/* Responsive */
@media (max-width: 1024px) {
  .navbar {
    padding: 0 1rem;
  }
  .hero {
    padding: 70px 15px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #8B3A1A;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    padding: 20px;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links a {
    color: white;
  }

  .hamburger {
    display: block;
  }

  .story, .story.reverse {
    flex-direction: column;
  }

  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
  .hero h1 {
    font-size: 1.8rem;
  }
  .card img {
    max-height: 180px;
  }
}
