/* ===================== RESET ===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

html, body {
  width: 100%;
  overflow-x: hidden;
}

/* ===================== TOP BAR ===================== */
.top-bar {
  background: #1f1f1f;
  color: #fff;
  padding: 8px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  flex-wrap: wrap;
}

.top-left {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.top-bar a.social-link {
  color: #fff;           /* white color */
  text-decoration: none; /* remove underline */
  transition: 0.3s;
}

.top-bar a.social-link:hover {
  color: #f89f29;        /* optional hover color */
}
.brand {
  font-weight: bold;
  color: #cfa670;
  letter-spacing: 1px;
}

/* ===================== NAVBAR ===================== */
.navbar {
  background: #fff;
  padding: 16px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  flex-wrap: wrap;
}

.logo-area img {
  height: 48px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.nav-links a:hover {
  color:#f89f29;;
}

/* ===================== HERO ===================== */
.hero {
  height: 100vh;
  background: url("b1.jpg") center / cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.hero-inner {
  position: relative;
  width: 100%;
  padding: 0 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.hero-content {
  color:#f89f29;
  max-width: 500px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: #ddd;
}

.hero-btn {
  text-decoration: none;
  padding: 12px 28px;
  background: #f89f29;;
  color: #000;
  font-weight: bold;
  border-radius: 30px;
}

.hero-image img {
  width: 420px;
  height: 420px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 30px 10px rgba(174, 171, 171, 0.4);
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}

/* ===================== ABOUT US ===================== */
.about-section {
   background:white / cover no-repeat; 
  padding: 80px 20px;
}

.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.about-content {
  flex: 1;
  min-width: 300px;
  line-height: 1.7;
  font-size: 1rem;
}

.about-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #f89f29;
  opacity: 0;
  transition: all 1s ease-out;
}

.about-content p {
  margin-bottom: 18px;
}

.about-image {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: flex-end;
}

.about-image img {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  object-fit: cover;
  opacity: 0;
  transition: all 1s ease-out;
}

.about-content h2.visible { opacity: 1; transform: translateX(0); }
.about-image img.visible { opacity: 1; transform: translateX(0); transition-delay: 0.3s; }

/* ===================== DRINKS ===================== */
.drinks-section {
  position: relative;
  background: black;
  padding: 100px 20px 0 20px;
color: black;
  min-height: 400px;
}
.drinks-section::after {
  content: "";
  display: block;
  height: 100px;         /* space before footer */
   background: url('vandal.jpg') center bottom / cover no-repeat;    /* matches footer background */
  width: 100%;
}
.carousel-wrapper {
  position: relative;
  max-width: 1200px;
  margin: auto;
}

.drinks-carousel {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 10px;
  scrollbar-width: none; /* Firefox */
}

.drinks-carousel::-webkit-scrollbar {
  display: none; /* Chrome */
}

/* SAME SIZE BOX */
.drink-item {
  min-width: 250px;
  max-width: 250px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.drink-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.drink-item img:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 14px 30px rgba(0,0,0,0.35);
}

.drink-item h3 {
  margin-top: 15px;
  font-size: 1.1rem;
  color: #fff;
}
/* FORCE HORIZONTAL CAROUSEL */
.drinks-container {
  display: flex;
  flex-direction: row;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 10px;
}

/* Hide scrollbar */
.drinks-container::-webkit-scrollbar {
  display: none;
}
.drinks-section h2 {
  color: #f89f29;
  font-size: 2.2rem;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
  margin-top: -40px;
}
/* ===================== ARROWS ===================== */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  color: white;
  border: none;
  font-size: 28px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
}

.carousel-btn.left { left: -10px; }
.carousel-btn.right { right: -10px; }

.carousel-btn:hover {
  background: #cfa670;
  color: #000;
}

/* ===================== RESPONSIVE ===================== */
@media screen and (max-width: 900px) {
  .hero-inner, .about-inner { flex-direction: column; align-items: center; text-align: center; gap: 30px; }
  .hero-image img, .about-image img { max-width: 350px; }
  .hero-content h1 { font-size: 2.4rem; }
  .hero-content p { font-size: 1.1rem; }
  .about-content h2 { font-size: 2rem; }
  .about-content p { font-size: 0.95rem; }
  .nav-links { gap: 18px; justify-content: center; margin-top: 10px; }
}

@media screen and (max-width: 600px) {
  .hero-content h1 { font-size: 2rem; }
  .hero-content p { font-size: 1rem; }
  .about-content h2 { font-size: 1.8rem; }
  .about-content p { font-size: 0.9rem; }
  .hero-image img, .about-image img { max-width: 300px; }
  .drink-item img { height: 200px; }
}

/* ===================== SVG DIVIDER FIX ===================== */
.divider {
  width: 100%;
  height: 80px;        /* EXACT height of the curve */
  overflow: hidden;
  margin: 0;
  padding: 0;
  line-height: 0;
}

.divider svg {
  width: 100%;
  height: 100%;
  display: block;
}
/* ===================== TOP 3 DRINKS ===================== */

.top-drinks-section {
  position: relative;
 min-height: 250px;        /* smaller section */
padding: 50px 20px 40px;
  text-align: center;
  color: white;
margin-top: 40px; 
  /* ADD YOUR BACKGROUND HERE */
  background: url("imahefeedback.jpg") center / cover no-repeat;
}

.top-drinks-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 0;
}

.top-drinks-section h2 {
  position: relative;
  z-index: 1;
  color: #f89f29;
  font-size: 2.2rem;
  margin-bottom: 40px;
}

/* container */
.top-drinks-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: auto;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* card */
.top-drink-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  padding: 14px;
  box-shadow: 0 5px 18px rgba(0,0,0,0.15);
  width: 230px; /* SMALLER */
  transition: 0.3s ease;
}

.top-drink-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(248, 159, 41, 0.6);
}

/* smaller rectangle image */
.drink-image {
  width: 100%;
  height: 140px; /* smaller */
  border-radius: 10px;
  margin-bottom: 12px;
  background-size: cover;
  background-position: center;
  transition: 0.3s ease;
}

.top-drink-card:hover .drink-image {
  transform: scale(1.03);
}

/* title */
.top-drink-card h3 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: #333;
}

/* stars */
.stars {
  font-size: 1rem;
  color: #f89f29;
  margin-bottom: 10px;
}

/* description */
.top-drink-card p {
  font-size: 0.85rem;
  line-height: 1.4;
  color: #555;
}
/* Divider */
.section-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #f89f29, #fff);
  margin: 50px auto 0;
  border-radius: 2px;
}

/* responsive */
@media (max-width: 900px) {
  .top-drinks-container {
    gap: 30px;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .top-drink-card {
    width: 90%;
  }

  .drink-image {
    height: 220px;
  }
}

/* Divider */
.section-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #f89f29, #fff);
  margin: 50px auto 0;
  border-radius: 2px;
}
.top-drink-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #333;
}
@media (max-width: 768px) {
  .top-drink-card {
    width: 80%;
  }
}

@media (max-width: 500px) {
  .top-drink-card {
    width: 95%;
  }

  .drink-image {
    height: 150px;
  }
}
.feedback-section {
  padding: 80px 20px;
  background:url(b1.jpg);
  text-align: center;
  overflow: hidden; /* prevents right excess */
}

.testimonial-wrapper {
  width: 100%;
  max-width: 1000px;
  margin: auto;
  overflow: hidden;
  position: relative;
}

.testimonial-row {
  display: flex;
  transition: transform 0.5s ease;
  width: 300%; /* 3 slide positions */
}

.testimonial-card {
  flex: 0 0 33.333%; /* 3 cards per view */
  padding: 20px;
  box-sizing: border-box;
}

.testimonial-card {
  background:white;
  margin: 10px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  text-align: left;
}

.stars {
  color: #f89f29;
  margin: 8px 0;
}

/* DOTS FIX */
.slider-dots {
  margin-top: 30px;
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 6px;
  background: #ccc;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: 0.3s;
}

.dot.active {
  background: #f89f29;
}


.bento-section {
  padding: 70px 20px;
  text-align: center;
  background: #fff;
}

.bento-section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #f89f29;
}

.bento-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 15px;
  max-width: 1000px;
  margin: auto;
}

.bento-item {
  background-size: cover;
  background-position: center;
  border-radius: 15px;
}

.bento-item.large {
  grid-row: span 2; /* takes full height */
}
.bento-item:last-child {
  grid-column: 1 / -1; /* full width */
  height: 200px;
  border-radius: 15px;

  background-size: cover;        /* cover whole box */
  background-position: bottom;   /* show bottom of image */
  background-repeat: no-repeat;
}

.bento-item:hover {
  transform: scale(1.05);
}
.footer {
  background: url('liq.jpg') center center / cover no-repeat;
  color: #fff;
  padding: 40px 20px 20px;
  text-align: center;
  font-family: Arial, sans-serif;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;  /* content starts at top */
  min-height: 250px;            /* taller footer fills the white space */
}

.footer {
 background: url('b1.jpg') center bottom / cover no-repeat; 
  color: #fff;
  padding: 40px 20px 20px;
  text-align: center;
  font-family: Arial, sans-serif;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 250px;

  /* Ensure footer sticks below drinks section */
  margin-top: -50px;  /* optional: pulls footer up slightly if overlap needed */
}


.footer h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

.footer p {
  margin: 5px 0;
  font-size: 14px;
}

.footer a {
  color: #f89f29;
  text-decoration: none;
  margin: 0 5px;
  transition: 0.3s;
}

.footer a:hover {
  text-decoration: underline;
}

.footer-bottom {
  font-size: 12px;
  color: #ccc;
  margin-top: auto; /* pushes bottom text to the very bottom of the footer */
}
/* -------------------- CONTACT SECTION -------------------- */
.contact-section {
  padding: 80px 20px;
  
  display: flex;
  justify-content: center;
  text-align: center;
}

.contact-box {
  background: #ffffff;
  padding: 50px 30px;
  border-radius: 30px;       /* rounded sides */
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  max-width: 500px;
  width: 100%;
}

.contact-box h2 {
  font-size: 28px;
  margin-bottom: 35px;
  color:  #f89f29;
}

/* ===================== CONTACT FORM WRAPPER ===================== */
.contact-form-wrapper {
  max-width: 500px;
  margin: 0 auto;  /* centered inside box */
}

.contact-form-wrapper form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form-wrapper input,
.contact-form-wrapper textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 14px;
  resize: none;
}

.contact-form-wrapper textarea {
  height: 120px;
}

.contact-form-wrapper button {
  padding: 12px;
  border: none;
  border-radius: 20px;
  background:  #f89f29;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form-wrapper button:hover {
  background: #f89f29;
}
.divider {
  width: 100%;               /* full width */
  height: 4px;               /* thickness of the divider */
  background-color: white;   /* white line */
}

/* Optional: add some spacing above/below */
.divider {
  margin: 0;                 /* no extra margin */
}