/* Basic reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #fff;
  padding-top: 0;
}

/* ===== Header ===== */
.site-header {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 0;
  transition: transform 0.3s ease-in-out;
  transform: translateY(0);
}

.site-header .container-fluid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(6px, 1.6vw, 16px) clamp(12px, 5vw, 70px);
  width: 100%;
  margin: 0 auto;
  position: relative;
  min-height: 60px;
  gap: 20px;
}

.site-header .logo {
  height: clamp(16px, 2.5vw, 38px);
  object-fit: contain;
  margin-right: auto;
}

/* ===== Navigation ===== */
.main-menu {
  display: flex;
  gap: clamp(8px, 3vw, 32px);
}

/* Scale nav link paddings so the header height reduces smoothly */
.navbar .nav-link {
  padding: 0 clamp(4px, 1.6vw, 12px);
  transition: color 0.3s ease;
}

/* Hamburger menu button */
.navbar-toggler {
  border: none;
  background: transparent;
  padding: 8px;
  cursor: pointer;
  display: none;
  position: relative;
  z-index: 1003;
  margin: 0 15px 0 auto;
  width: 24px;
  height: 24px;
  order: 2;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler .navbar-toggler-icon {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #000;
  position: relative;
  transition: all 0.3s ease;
}

.navbar-toggler .navbar-toggler-icon::before,
.navbar-toggler .navbar-toggler-icon::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: #000;
  left: 0;
  transition: all 0.3s ease;
}

.navbar-toggler .navbar-toggler-icon::before {
  transform: translateY(-6px);
}

.navbar-toggler .navbar-toggler-icon::after {
  transform: translateY(6px);
}

/* Transform hamburger to X when menu is open */
.navbar-toggler.active .navbar-toggler-icon {
  background-color: transparent;
}

.navbar-toggler.active .navbar-toggler-icon::before {
  transform: rotate(45deg) translate(0, 0);
  top: 0;
}

.navbar-toggler.active .navbar-toggler-icon::after {
  transform: rotate(-45deg) translate(0, 0);
  top: 0;
}
.navbar-toggler:not(.collapsed){
    border-color: transparent !important;
    box-shadow: none !important;
}

/* Mobile menu styles */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(3px);
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -320px;
  width: 85%;
  max-width: 320px;
  /*height: 100%;*/
  background-color: #fff;
  z-index: 1002;
  padding: 80px 25px 40px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: 2px solid #f0f0f0;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #333;
  padding: 5px;
  transition: all 0.2s ease;
}

.mobile-menu-close:hover {
  background: #f8f8f8;
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex: 1;
  padding-bottom: 30px;
}

.mobile-menu-item {
  display: block;
  font-size: 18px;
  color: #333;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 500;
  background: #f9f9f9;
}

.mobile-menu-item:hover {
  color: #B8D435;
  background: #f0f0f0;
  transform: translateX(4px);
}

.mobile-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #B8D435;
  color: #fff;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  margin-top: auto;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(184, 212, 53, 0.3);
  border: none;
  font-size: 16px;
}

.mobile-cta-btn:hover {
  background: #a3bc2e;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(184, 212, 53, 0.4);
}

.mobile-cta-btn:hover {
  background-color: #a3bc2e;
  color: #fff;
}

.menu-item {
  font-size: clamp(10px, 1.2vw, 16px);
  font-weight: 500;
  color: #000;
  text-decoration: none;
}

/* ===== CTA Button ===== */
.cta-btn {
  padding: clamp(4px, 1vw, 12px) clamp(8px, 1.6vw, 24px);
  background: #B8D435;
  color: #fff;
  border: none;
  border-radius: clamp(14px, 4vw, 24px);
  text-decoration: none;
  font-size: clamp(10px, 1.1vw, 16px);
  font-weight: 500;
}

/* ===== Hero / Container Section ===== */
.adds {
  position: relative;
  overflow: hidden;
}

.container-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 991.98px) {
  .navbar-toggler {
    display: block;
  }

  .site-header .navbar-collapse {
    display: none !important;
  }

  .site-header .cta-btn {
    display: none;
  }

  .mobile-menu .cta-btn {
    display: inline-block;
  }
}

@media (max-width: 768px) {
  .site-header .container-fluid {
    padding: 8px 20px;
  }

  .main-menu {
    gap: 8px;
  }

  .site-header .cta-btn {
    margin-top: 0;
    align-self: auto;
    text-align: left;
  }
}
/* ===== Green strip area ===== */
.green-strip {
  width: 100%;
  background: #DCEA9A; /* light green */
  padding: 36px 56px; /* matches top/left offsets */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Inner container (holds all 7 items) */
.strip-content {
  display: flex;
  gap: clamp(8px, 2vw, 16px);
  flex-wrap: nowrap;
  width: 100%;
  max-width: 100%;
  justify-content: space-between;
  align-items: center;
}

/* Each group (star + text) */
.strip-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(6px, 1.6vw, 16px);
  height: 28px;
}

/* Star image */
.strip-star {
  width: clamp(6px, 1.6vw, 24px);
  height: clamp(6px, 1.6vw, 24px);
  object-fit: contain;
}

/* Text next to the star */
.strip-text {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: clamp(8px, 2vw, 20px);
  line-height: 140%;
  text-align: center;
  color: #000000;
  white-space: nowrap;
}

/* Responsive fallback */
@media (max-width: 768px) {
    .green-strip {
        padding: 12px 8px;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
    }

    .strip-content {
        display: flex;
        gap: 16px;
        animation: bounce-scroll 8s ease-in-out infinite;
        width: max-content;
    }

  .strip-text {
    font-size: clamp(8px, 3vw, 16px);
  }

    @keyframes bounce-scroll {
        0%, 100% {
            transform: translateX(0);
        }
        25% {
            transform: translateX(-25%);
        }
        50% {
            transform: translateX(-50%);
        }
        75% {
            transform: translateX(-25%);
        }
    }

    .green-strip::-webkit-scrollbar {
        display: none;
    }
    .green-strip {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
}

/* ===== Steps Section ===== */
.steps-section {
  width: 100%;
  padding: 3rem 0;
  background-color: #fff;
}

.section-header h2 {
  font-family: Arial, sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 60px;
  color: #1A1A1A;
  margin-bottom: 0.5rem;
}

.section-header p {
  font-family: Arial, sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  color: #0A0A0A;
}

.steps-wrapper {
  display: flex;
  justify-content: center;
  gap: 2rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-behavior: smooth;
}

.steps-wrapper::-webkit-scrollbar {
  display: none; /* hide scrollbar */
}

.step-item {
  flex: 0 0 auto; /* prevents shrinking */
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 330px;
  gap: 1.5rem;
}

.step-image {
  width: 310px;
  height: 349px;
  border-radius: 0px 40px;
  background-size: cover;
  background-position: center;
}

.step-number {
  width: 40px;
  height: 40px;
  background-color: #B8D435;
  border-radius: 50%;
  color: #fff;
  font-family: Arial, sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-item h3 {
  font-family: Arial, sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 36px;
  text-align: center;
  color: #1A1A1A;
  margin: 0;
}

.step-item p {
  font-family: Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
  color: #0A0A0A;
  margin: 0;
}

/* Responsive: show 1 item at a time on smaller screens */
@media (max-width: 992px) {
  .steps-wrapper {
    justify-content: flex-start;
    gap: 1rem;
    padding-left: 1rem;
  }

  .step-item {
    width: 80%;
  }

  .step-image {
    width: 100%;
    height: auto;
    aspect-ratio: 310/349; /* maintain image ratio */
  }
}
/* ===== Signature Drinks Section ===== */
.signature-drinks {
  width: 100%;
  padding: 3rem 0;
  background-color: #fff;
}

.section-header h2 {
  font-family: Arial, sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 60px;
  color: #1A1A1A;
}

.section-header p {
  font-family: Arial, sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  color: #0A0A0A;
}

.drinks-wrapper {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
}

.drinks-wrapper::-webkit-scrollbar {
  display: none;
}

.drink-item {
  background: #FFFFFF;
  box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1), 0px 4px 6px -4px rgba(0,0,0,0.1);
  border-radius: 16px;
  width: 251.8px;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  scroll-snap-align: start;
}

.drink-image {
  width: 100%;
  height: 256px;
  background-color: #e0e0e0; /* placeholder */
  border-radius: 0;
  background-size: cover;
  background-position: center;
}

.drink-price {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 51px;
  height: 21px;
  background: #B8D435;
  border-radius: 50px;
  font-family: Arial, sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.drink-title {
  font-family: Arial, sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  color: #1A1A1A;
  padding: 16px 24px 0;
  margin: 0;
}

.drink-description {
  font-family: Arial, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #0A0A0A;
  padding: 0 24px 16px 24px;
  margin: 0;
}

.menu-btn {
  margin-top: 2rem;
  background: #B8D435;
  color: #fff;
  font-family: Arial, sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 27px;
  border: none;
  border-radius: 32px;
  padding: 16px 32px;
  cursor: pointer;
}

/* Desktop: center drinks row */
@media (min-width: 992px) {
  .drinks-wrapper {
    justify-content: center;
    overflow-x: visible;
  }
}





/* ====== MAKE IT YOURS SECTION ====== */
.make-it-yours {
  position: relative;
  width: 100%;
  height: auto;
  margin: 0 auto;
  background: #121505;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 64px 8px;
  isolation: isolate;
  box-sizing: border-box;
  overflow: hidden;
}

/* blurred green glow behind image */
.blur-bg {
  position: absolute;
  width: 450px;
  height: 310px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: rgba(184, 212, 53, 0.2);
  filter: blur(64px);
  border-radius: 99999px;
  z-index: 0;
}

/* Title */
.title {
  font-family: Arial, sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 60px;
  color: #B8D435;
  margin-bottom: 48px;
  z-index: 2;
  text-align: center;
}

/* === Main layout === */
.content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 64px;
  z-index: 2;
  flex-wrap: wrap; /* responsive wrapping */
}

/* === Left & Right columns === */
.left-options,
.right-options {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 419px;
  gap: 0;
  flex-shrink: 0;
}

/* === Each option row === */
.option {
  display: flex;
  align-items: center;
  position: relative;
  min-height: 78px;
}

/* === White cards === */
.white-card {
  width: 350px;
  height: 78px;
  background: #fff;
  border-radius: 0 16px 16px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 56px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
}

.white-card.right {
  border-radius: 16px 0 0 16px;
  padding-left: 20px;
  padding-right: 56px;
  text-align: right;
  align-items: flex-end;
}

.white-card h3 {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 20px;
  margin: 0;
  color: #050505;
}

.white-card p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  margin: 4px 0 0 0;
  color: #050505;
}

/* === Green circles === */
.circle {
  width: 100px;
  height: 100px;
  background: #B8D435;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.circle img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* === Overlap positioning === */
.left-options .option .circle {
  position: absolute;
  left: 0;
}

.left-options .option .white-card {
  margin-left: 50px;
}

/* Specific style for sweetness level option */
.left-options .option:nth-child(2)  {
  margin-left: -20px; /* Increased from 50px to 70px */
}
/* Specific style for sweetness level option */
.right-options .option:nth-child(2)  {
  margin-left: 20px; /* Increased from 50px to 70px */
}

.right-options .option .circle {
  position: absolute;
  right: 0;
}

.right-options .option .white-card {
  margin-right: 50px;
}

/* === Center image === */
.center-image img {
  width: 333px;
  height: 426px;
  object-fit: cover;
  border-radius: 16px;
  z-index: 2;
  display: block;
}

/* ====== RESPONSIVE DESIGN ====== */

/* ✅ Tablets (≤1200px) */
@media (max-width: 1200px) {
  .content {
    gap: 40px;
  }

  .left-options,
  .right-options {
    height: auto;
    gap: 32px;
  }

  .center-image img {
    width: 280px;
    height: 370px;
  }

  .circle {
    width: 85px;
    height: 85px;
  }

  .white-card {
    width: 270px;
  }
}

/* ✅ Mobile (≤900px) */
@media (max-width: 900px) {
  .content {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .left-options,
  .right-options {
    flex-direction: column;
    align-items: center;
    height: auto;
    gap: 24px;
  }

  .option {
    flex-direction: row;
    justify-content: center;
  }

  .white-card,
  .white-card.right {
    width: 320px;
    height: auto;
    padding: 16px 24px;
    margin: 0;
    border-radius: 16px;
    text-align: center;
    align-items: center;
  }

  .circle {
    position: static;
    margin-bottom: 12px;
    width: 80px;
    height: 80px;
  }

  .option {
    flex-direction: column;
  }

  .title {
    font-size: 32px;
    line-height: 48px;
  }

  .center-image img {
    width: 270px;
    height: auto;
  }

  .blur-bg {
    width: 300px;
    height: 200px;
    filter: blur(48px);
  }
}

/* ✅ Very small screens (≤600px) */
@media (max-width: 600px) {
  .white-card h3 {
    font-size: 18px;
  }
  .white-card p {
    font-size: 14px;
  }
  .circle {
    width: 70px;
    height: 70px;
  }
  .center-image img {
    width: 240px;
  }
}


/* ===== Visit Us Section ===== */
.visit-us {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  box-sizing: border-box;
}

/* Header */
.visit-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}

.visit-header h2 {
  font-family: 'Arial', sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 60px;
  color: #1A1A1A;
  margin: 0;
}

.visit-header p {
  font-family: 'Arial', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  color: #0A0A0A;
  margin: 0;
}

/* Main Row */
.visit-content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 48px;
  flex-wrap: wrap;
  width: 100%;
}

/* Image */
.visit-image {
  flex: 1 1 500px;
  max-width: 527px;
  height: 400px;
  border-radius: 16px;
  background: #eaeaea;
  overflow: hidden;
}

.visit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

/* Details Column */
.visit-details {
  flex: 1 1 500px;
  max-width: 527px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Each info box */
.visit-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #F8F8F8;
  border-radius: 16px;
  padding: 32px;
  box-sizing: border-box;
}

.visit-icon {
  width: 48px;
  height: 48px;
  background: #B8D435;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.visit-icon img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

/* Text inside info box */
.visit-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.visit-text h3 {
  font-family: 'Arial', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  color: #1A1A1A;
  margin: 0;
}

.visit-text p {
  font-family: 'Arial', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #0A0A0A;
  margin: 0;
}

/* Button */
.visit-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background: #B8D435;
  color: #FFFFFF;
  border-radius: 10px;
  padding: 14px 0;
  text-decoration: none;
  font-family: 'Arial', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 27px;
  transition: 0.3s;
}

.visit-btn img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.visit-btn:hover {
  background: #a1c626;
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
  .visit-header h2 {
    font-size: 32px;
    line-height: 48px;
  }

  .visit-card {
    padding: 24px;
  }
}

@media (max-width: 768px) {
  .visit-content {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .visit-image,
  .visit-details {
    max-width: 100%;
  }

  .visit-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .visit-header h2 {
    font-size: 28px;
    line-height: 40px;
  }

  .visit-text h3 {
    font-size: 18px;
  }

  .visit-text p {
    font-size: 14px;
  }

  .visit-btn {
    font-size: 16px;
    padding: 12px 0;
  }
}


 /* ===== Contact Section ===== */
.contact-section {
  width: 100%;
  padding: 80px 70px;
  display: flex;
  justify-content: center;
  background: #fff;
}

.contact-container {
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 100%;
  max-width: 1299px;
}

/* Title */
.contact-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 90px;
  line-height: 100px;
  color: #000;
  margin: 0;
}

/* Inputs container */
.contact-inputs {
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 100%;
}

/* Row of inputs */
.input-row {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

/* Input fields */
.input-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.input-field label {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 36px;
  color: #000;
}

.input-field input,
.input-field textarea {
  padding: 10px;
  border: none;
  border-bottom: 1px solid #CACACA;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  resize: none;
}

.message-field textarea {
  height: 146px;
  padding-bottom: 32px;
}

/* CTA Button */
.contact-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 32px 25px;
  width: 358px;
  height: 91px;
  background: #B8D435;
  border-radius: 37px;
  border: none;
  cursor: pointer;
}

.contact-cta span:first-child {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 27px;
  color: #fff;
  text-align: center;
}

.arrow-right {
  font-size: 24px;
  color: #fff;
}

/* Responsive */
@media (max-width: 1200px) {
  .input-row {
    flex-direction: column;
  }
  .contact-title {
    font-size: 60px;
    line-height: 70px;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 60px 16px;
  }
  .contact-title {
    font-size: 40px;
    line-height: 50px;
  }
  .contact-cta {
    width: 100%;
  }
}


/* ===== Contact Info Section ===== */
.contact-info-section {
  width: 100%;
  padding: 80px 72px;
  display: flex;
  justify-content: center;
  background: url('background.jpg') no-repeat center/cover;
}

.contact-info-container {
  display: flex;
  flex-direction: row;
  gap: 69px;
  width: 100%;
  max-width: 1440px;
}

/* Header */
.contact-info-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 575px;
}

.contact-info-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 36px;
  color: #000;
}

.contact-info-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 56px;
  line-height: 130%;
  color: #000;
  margin: 0;
}

/* Info Cards Container */
.contact-info-cards {
  display: flex;
  flex-direction: row;
  gap: 78px;
  width: 100%;
  max-width: 698px;
}

/* Individual Card */
.info-card {
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 310px;
  padding: 32px;
}

/* Card Header */
.info-card-header {
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 100%;
}

.info-card-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 27px;
  color: #000;
}

.divider {
  width: 27px;
  height: 3px;
  background: #000;
}

/* Card Details */
.info-card-details {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.info-detail {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
  color: #000;
}

/* Responsive */
@media (max-width: 1200px) {
  .contact-info-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }
  .contact-info-cards {
    flex-direction: column;
    gap: 32px;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .contact-info-section {
    padding: 60px 16px;
  }
  .contact-info-title {
    font-size: 40px;
    line-height: 50px;
  }
}

/* ===== Order Ahead Section ===== */
.order-ahead-section {
  width: 100%;
  height: auto;
  background: #F8FBEB;
  display: flex;
  justify-content: center;
  padding: 48px 8px;
}

.order-ahead-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1424px;
  gap: 40px;
}

/* Heading */
.order-ahead-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
  max-width: 1424px;
}

.order-ahead-title {
  font-family: Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 5vw, 40px);
  line-height: 1.2;
  text-align: center;
  color: #050505;
  margin: 0;
  position: relative;
  width: 100%;
  max-width: 100%;
  white-space: nowrap;
  overflow: visible;
  padding: 0 15px;
  box-sizing: border-box;
}

/* Ensure the span with Enjoy stays on the same line */
.order-ahead-title span {
  white-space: nowrap;
  display: inline-block;
}

/* Adjust for smaller screens */
@media (max-width: 768px) {
  .order-ahead-title {
    font-size: clamp(20px, 6vw, 32px);
    white-space: normal;
    line-height: 1.3;
  }

  .order-ahead-title br {
    display: none;
  }
}

.order-ahead-subtitle {
  font-family: Arial, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 34px;
  text-align: center;
  color: #151515;
  margin: 0;
  position: relative;
  width: 100%;
  max-width: 672px;
  height: auto;
}



/* Features */
.order-features {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 97px;
  width: 100%;
  max-width: 787px;
  height: auto;
  border-top: 1px solid #000;
  padding-top: 64px;
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
}

.feature-title {
  font-family: Arial, sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 27px;
  text-align: center;
  color: #050505;
}

.feature-desc {
  font-family: Arial, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  text-align: center;
  color: #101010;
}

@media (max-width: 768px) {
    .order-features {
        flex-direction: column;
        gap: 1.2rem;
        padding: 0 1rem;
    }

    .feature {
        text-align: center;
        padding: 1.2rem;
    }
}

/* ===== Footer Section ===== */
.footer-section {
  position: relative;
  width: 100%;
  height: auto;
  padding-bottom: 90px; /* space for bottom bar */
  background: #131313;
  font-family: Arial, sans-serif;
  color: #FFFFFF;
}

/* Top Footer Container */
.footer-top {
  display: flex;
  justify-content: space-between;
  padding: 50px 100px 0 100px;
  gap: 50px;
  flex-wrap: wrap;
}

/* Logo & Description */
.footer-logo-desc {
  width: 420px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-desc {
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  color: #FFFFFF;
}

.social-icons {
  display: flex;
  gap: 21px;
  margin-top: 10px;
}

.social-icons .icon {
  width: 40px;
  height: 40px;
  background: #FFFFFF;
  border-radius: 50%;
}

.social-icons .facebook {
  background: url('facebook.png') no-repeat center/contain;
}

.social-icons .instagram {
  background: url('instagram.png') no-repeat center/contain;
}

.social-icons .whatsapp {
  background: url('whatsapp.png') no-repeat center/contain;
}

.social-icons .twitter {
  background: url('twitter.png') no-repeat center/contain;
}

.social-icons .youtube {
  background: url('youtube.png') no-repeat center/contain;
}


/* Footer Columns */
.footer-links,
.footer-contact,
.footer-hours {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-header {
  font-size: 18px;
  font-weight: 700;
  line-height: 27px;
  color: #FFFFFF;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

ul li {
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: #FFFFFF;
}

/* Footer Bottom */
.footer-bottom {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
  border-top: 0.8px solid rgba(255,255,255,0.1);
}

.footer-terms a {
    text-decoration: none;        /* removes underline */
    color: inherit;               /* same color as text */
    margin-left: 15px;            /* spacing between links */
    transition: color 0.3s ease;  /* smooth hover effect */
}

.footer-terms a:hover span {
    color: #503CEB;               /* hover color (your brand purple) */
    text-decoration: none;        /* ensure underline stays off */
}

.footer-terms span {
    cursor: pointer;
}

@media (max-width: 992px) {
  .footer-top {
    padding: 40px 24px 0 24px;
    flex-direction: column;
    gap: 32px;
  }
  .footer-logo-desc {
    width: 100%;
  }
  .footer-bottom {
    height: auto;
    padding: 12px 16px;
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

.footer-bottom span {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: rgba(255,255,255,0.6);
}

.footer-terms {
  display: flex;
  gap: 24px;
}

.hours {
  color: var(--AndroidGreenW-950, #B8D435);

}


.links-list {
  list-style: none; /* remove bullets if needed */
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 30px; /* space between items */
}

.footer-hours .hours-list li {
  margin-bottom: 20px; /* adjust the value as needed */
}

/* Space between contact items */
.footer-contact .contact-list li {
  margin-bottom: 30px; /* adjust spacing */
  display: flex;
  align-items: center; /* vertically align icon and text */
  gap: 15px; /* space between icon and text */
}

/* Customize Coffee Section */
.customize-coffee {
  position: relative;
  padding: 64px 0;
  background: #121505;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.customize-coffee .container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 8px;
}

.section-title {
  font-family: 'Arial', sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 60px;
  text-align: center;
  color: #B8D435;
  margin-bottom: 64px;
}

.features-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 64px;
  position: relative;
  width: 100%;
  max-width: 1424px;
  margin: 0 auto;
  height: 518px;
}

.feature-column {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 420px;
  height: 419px;
  position: relative;
}

.feature-card {
  position: absolute;
  display: flex;
  align-items: center;
  background: #FFFFFF;
  border-radius: 0 16px 16px 0;
  padding: 11px 12px 11px 60px; /* Adjusted padding to match icon height */
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.2);
  width: 350px; /* Increased width to make white background longer */
  height: 78px;
  overflow: visible; /* Allow icon to overflow */
}

.feature-column:not(.right) .feature-card:nth-child(1) {
  top: 14.5px;
  left: 100px; /* Moved further from center */
  width: 350px;
}
.feature-column:not(.right) .feature-card:nth-child(2) {
  top: 181.5px;
  left: 80px; /* Moved further from center */
  width: 350px;
}
.feature-column:not(.right) .feature-card:nth-child(3) {
  top: 333.5px;
  left: 100px; /* Moved further from center */
  width: 350px;
}

.feature-column.right .feature-card:nth-child(1) {
  top: 14.5px;
  right: 100px; /* Moved further from center */
  width: 350px;
}
.feature-column.right .feature-card:nth-child(2) {
  top: 181.5px;
  right: 80px; /* Moved further from center */
  width: 350px;
}
.feature-column.right .feature-card:nth-child(3) {
  top: 333.5px;
  right: 100px; /* Moved further from center */
  width: 350px;
}

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

.feature-icon {
  position: absolute;
  left: -50px;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100%;
}

.right .feature-icon {
  right: -50px;
  left: auto;
}

.right .feature-card {
  border-radius: 16px 0 0 16px;
  flex-direction: row-reverse;
  padding: 11px 60px 11px 12px; /* Adjusted padding to match icon height */
  right: 0;
  left: auto;
}

.right .feature-content {
  text-align: right;
  padding-right: 0;
  padding-left: 0;
  margin-right: 0;
}

.icon-circle {
  width: 100px;
  height: 100px;
  background: #B8D435;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.feature-svg {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.feature-content {
  width: 100%;
  padding: 0;
  margin: 0;
}

.feature-content h3 {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  color: #050505;
  margin: 0 0 8px 0;
}

.feature-content p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #050505;
  margin: 0;
}

.coffee-image {
  width: 333px;
  height: 426px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.image-placeholder {
  width: 100%;
  max-width: 300px;
  height: 400px;
  background: #f5f5f5;
  border-radius: 16px;
  overflow: hidden;
}

.featured-coffee {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blur-circle {
  position: absolute;
  width: 450px;
  height: 310px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: rgba(184, 212, 53, 0.2);
  filter: blur(64px);
  border-radius: 2.68435e+07px;
  z-index: 0;
}

/* Responsive Styles */
@media (max-width: 1440px) {
  .features-grid {
    gap: 32px;
    padding: 0 20px;
  }

  .feature-column {
    width: 380px;
  }

  .feature-card {
    width: 300px;
  }

  .feature-column:not(.right) .feature-card,
  .feature-column.right .feature-card {
    width: 280px;
    left: auto !important;
    right: auto !important;
  }
}

@media (max-width: 1200px) {
  .features-grid {
    flex-direction: column;
    gap: 40px;
    padding: 0 20px;
  }

  .feature-column, .coffee-image {
    max-width: 100%;
    width: 100%;
  }

  .coffee-image {
    order: -1;
    margin-bottom: 20px;
  }

  .image-placeholder {
    max-width: 100%;
    height: 300px;
  }

  .feature-card {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 40px;
  }

  .feature-card {
    padding: 12px 16px;
  }

  .icon-circle {
    width: 50px;
    height: 50px;
  }

  .feature-svg {
    width: 24px;
    height: 24px;
  }

  .feature-content h3 {
    font-size: 18px;
    line-height: 1.3;
  }

  .feature-content p {
    font-size: 14px;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .make-it-yours {
    padding: 60px 0;
  }

  .section-title {
    font-size: 28px;
  }

  .feature-card {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .right .feature-card {
    flex-direction: column;
  }

  .feature-icon {
    margin: 0 0 12px 0;
  }

  .right .feature-icon {
    margin: 12px 0 0 0;
    order: 0;
  }

  .right .feature-content {
    text-align: center;
  }
}


