/* =========================
   📱 Enhanced Mobile Responsive Styles
========================= */

/* Small Tablets and Phones (max-width: 768px) */
@media (max-width: 768px) {
  /* Navbar */
  .navbar {
    padding: 0.8rem 1.2rem;
    flex-wrap: wrap;
  }

  .navbar .logo {
    font-size: 1.3rem;
  }

  .navbar .nav-links {
    display: none; /* hidden until hamburger shown */
    flex-direction: column;
    background: rgba(255,255,255,0.98);
    width: 100%;
    text-align: center;
    padding: 1rem 0;
    border-top: 1px solid rgba(0,0,0,0.1);
  }

  .navbar.active .nav-links {
    display: flex;
  }

  /* Optional hamburger menu (you can add JS toggle later) */
  .navbar .menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #4caf50;
    cursor: pointer;
  }

  /* Adjust Section Padding */
  section {
    padding: 80px 1.5rem 50px;
  }

  /* Menu Section */
  .menu-section h2 {
    font-size: 2.2rem;
  }

  .drink-card img {
    height: 180px;
  }

  .filter-buttons button,
  .sub-filter-buttons button {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
  }

  /* About Section */
  .about-container h2 {
    font-size: 2.2rem;
  }
  .about-story {
    font-size: 1rem;
  }
  .about-block h3 {
    font-size: 1.25rem;
  }

  /* Events */
  .event-grid {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }
  .event-card {
    width: 100%;
  }

  /* Charity */
  .charity h2 {
    font-size: 2rem;
  }
  .calendar-day {
    padding: 0.4rem;
    font-size: 0.8rem;
  }

  /* Testimonials */
  .testimony h2 {
    font-size: 1.8rem;
  }

  /* Contact */
  .contact h2 {
    font-size: 2rem;
  }
  .contact form {
    padding: 0 0.5rem;
  }
  .contact input,
  .contact textarea {
    font-size: 0.95rem;
  }
  .contact button {
    font-size: 1rem;
    padding: 0.8rem;
  }

  /* Footer */
  .footer {
    text-align: center;
    padding: 1rem;
  }
}

/* Extra Small Devices (max-width: 480px) */
@media (max-width: 480px) {
  .navbar .logo {
    font-size: 1.2rem;
  }

  .menu-section h2,
  .about-container h2,
  .charity h2,
  .events h2 {
    font-size: 1.8rem;
  }

  .drink-card h4 {
    font-size: 1.1rem;
  }
  .drink-card p {
    font-size: 0.85rem;
  }

  .about-story {
    font-size: 0.95rem;
  }

  .testimonial-card {
    flex: 0 0 95%;
    padding: 1rem;
  }

  .contact input,
  .contact textarea {
    padding: 0.8rem;
  }

  .contact button {
    padding: 0.8rem;
  }

  .footer {
    font-size: 0.9rem;
  }
}

/* =========================
   🌿 Hamburger Menu Styling
========================= */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: #4caf50;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.menu-toggle.active {
  transform: rotate(90deg);
}

/* Mobile Behavior */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.97);
    width: 100%;
    position: absolute;
    top: 70px;
    left: 0;
    text-align: center;
    padding: 1rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    z-index: 1000;
  }

  .navbar.active .nav-links {
    display: flex;
  }

  .nav-links li {
    margin: 0.5rem 0;
  }

  .nav-links a {
    font-size: 1.1rem;
    color: #333;
  }

  .navbar {
    position: relative;
  }
}


/* =========================
   1️⃣ Reset & Base
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  line-height: 1.6;
  color: #333;
  scroll-behavior: smooth;
  background: linear-gradient(
    135deg,
    #fdfcfb,
    #fff9f0,
    #f0fdf4,
    #d9f99d,
    #e8f5e9,
    #c8e6c9,
    #fff3e0,
    #ffe0b2,
    #d9f9e3,
    #a7d7a8,
    #e0f7fa,
    #b2ebf2
  );
  background-size: 200% 200%;
  animation: gradientFlow 25s ease infinite;
  position: relative;
  overflow-x: hidden;
}

/* 🌙 Dark Mode (Premium Look) */
body.dark-mode {
  color: #e0e0e0;
  background: linear-gradient(
    135deg,
    #0a0a0f,
    #141424,
    #1b1b2e,
    #1f2a3a,
    #162733,
    #0f2027
  );
  background-size: 250% 250%;
  animation: gradientFlowDark 35s ease infinite;
}

/* Global Floating Shapes */
body::before,
body::after {
  content: '';
  position: fixed;
  border-radius: 50%;
  opacity: 0.12;
  z-index: 0;
  pointer-events: none;
}

body::before {
  width: 300px;
  height: 300px;
  top: -80px;
  left: -100px;
  background: #ffb74d;
  animation: floatShapes 15s ease-in-out infinite alternate;
}

body::after {
  width: 400px;
  height: 400px;
  bottom: -120px;
  right: -150px;
  background: #4caf50;
  animation: floatShapes 18s ease-in-out infinite alternate-reverse;
}

/* 🌙 Dark Mode Floating Shapes */
body.dark-mode::before {
  background: #6a5acd; /* soft purple glow */
  opacity: 0.18;
}

body.dark-mode::after {
  background: #00bcd4; /* teal glow */
  opacity: 0.12;
}

@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes gradientFlowDark {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes floatShapes {
  0%   { transform: translate(0, 0) rotate(0); }
  50%  { transform: translate(20px, 30px) rotate(45deg); }
  100% { transform: translate(-10px, -20px) rotate(0); }
}


/* =========================
   2️⃣ Navbar
========================= */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: fixed;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(5px);
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

body.dark-mode .navbar {
  background: rgba(30,30,30,0.95);
}

.navbar .logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #4caf50;
  text-decoration: none;
}

.navbar .nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.navbar .nav-links a {
  text-decoration: none;
  color: inherit;
  font-weight: 500;
  transition: color 0.3s;
}

.navbar .nav-links a:hover {
  color: #4caf50;
}

#darkModeToggle {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
}

/* =========================
   3️⃣ Sections Base
========================= */
section {
  padding: 100px 2rem 60px; /* account for fixed navbar */
  min-height: 100vh;
  position: relative;
  z-index: 1; /* keeps content above floating shapes */
  background: transparent !important;
}


/* =========================
   4️⃣ Hero Section
========================= */
/* Hero Section Gradient we put in home html */

/* =========================
   5️⃣ Menu Section
========================= */
.menu-section {
  padding: 100px 2rem 60px;
  background: linear-gradient(135deg, #fdfcfb, #fff9f0);
  position: relative;
  overflow: hidden;
}

.menu-section h2 {
  text-align: center;
  font-size: 2.8rem;
  color: #4caf50;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

/* =========================
   Filter Buttons
========================= */
.filter-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.filter-buttons button {
  padding: 0.6rem 1.2rem;
  border: 1px solid #4caf50;
  background: rgba(255,255,255,0.9);
  color: #4caf50;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.4s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.filter-buttons button.active,
.filter-buttons button:hover {
  background-color: #4caf50;
  color: #fff;
  box-shadow: 0 8px 20px rgba(76,175,80,0.3);
  transform: scale(1.05);
}

/* =========================
   Sub Filter Buttons
========================= */
.sub-filter-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2rem;
  animation: fadeIn 0.4s ease-in-out;
}

.sub-filter-buttons button {
  padding: 0.5rem 1rem;
  border: 1px solid #2e7d32;
  background: rgba(255,255,255,0.8);
  color: #2e7d32;
  border-radius: 30px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s;
}

.sub-filter-buttons button.active,
.sub-filter-buttons button:hover {
  background-color: #2e7d32;
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(46,125,50,0.25);
}

/* Fade In Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =========================
   Drinks Grid
========================= */
.drink-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
}

/* Drink Card */
.drink-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  text-align: center;
  transition: all 0.5s ease;
  position: relative;
}

.drink-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.drink-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.drink-card:hover img {
  transform: scale(1.05) rotate(-1deg);
}

.drink-card h4 {
  margin: 0.8rem 0 0.3rem;
  font-size: 1.25rem;
  font-weight: bold;
  color: #2e7d32;
}

.drink-card p {
  font-size: 0.95rem;
  color: #555;
  padding: 0 0.5rem 1rem;
}

/* Badge */
.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #2e7d32;
  color: #fff;
  padding: 0.3rem 0.6rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: bold;
  z-index: 2;
}

/* Premium Highlight */
.drink-card.premium {
  border: 2px solid gold;
  background: linear-gradient(145deg, rgba(255, 249, 240,0.9), rgba(253,252,251,0.9));
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.25);
}

.drink-card.premium .badge {
  background-color: gold;
  color: #2e7d32;
}

/* =========================
   Dark Mode
========================= */
body.dark-mode .drink-card {
  background: rgba(43,43,43,0.8);
}

body.dark-mode .drink-card p {
  color: #ccc;
}

body.dark-mode .filter-buttons button,
body.dark-mode .sub-filter-buttons button {
  background: rgba(50,50,50,0.9);
  border: 1px solid #66bb6a;
  color: #66bb6a;
}

body.dark-mode .filter-buttons button.active,
body.dark-mode .sub-filter-buttons button.active {
  background-color: #66bb6a;
  color: #fff;
}


/* =========================
   6️⃣ About Section
========================= */
.premium-about {
  padding: 100px 2rem;
  background: linear-gradient(135deg, #f0fdf4, #d9f99d);
}

.about-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.about-container h2 {
  font-size: 3rem;
  color: #2f855a;
  margin-bottom: 2rem;
  position: relative;
}

.about-story {
  font-size: 1.15rem;
  margin-bottom: 2rem;
  color: #276749;
  line-height: 1.8;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeSlideUp 1s forwards;
}

.about-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.about-block {
  flex: 1 1 45%;
  background: #ffffffcc;
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeSlideUp 1s forwards;
}

.about-block:nth-child(1) { animation-delay: 0.3s; }
.about-block:nth-child(2) { animation-delay: 0.6s; }

.about-block h3 {
  color: #1b5e20;
  margin-bottom: 0.8rem;
  font-size: 1.5rem;
}

.about-block ul {
  list-style: disc;
  padding-left: 1.2rem;
  text-align: left;
  color: #2e7d32;
}

.about-images {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.about-images img {
  width: 45%;
  border-radius: 15px;
  object-fit: cover;
  transition: transform 0.3s;
}

.about-images img:hover {
  transform: scale(1.05);
}

/* Animation Keyframes */
@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media(max-width:768px){
  .about-details {
    flex-direction: column;
  }
  .about-block {
    flex: 1 1 100%;
  }
  .about-images img {
    width: 100%;
  }
}

/* =========================
   7️⃣ Events & Charity
========================= */

/* ---------- Events ---------- */
.events {
  padding: 100px 2rem;
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9); /* green gradient */
  position: relative;
  overflow: hidden;
}

body.dark-mode .events {
  background: linear-gradient(135deg, #2b2b2b, #3c3c3c);
}

.events h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #2e7d32;
  margin-bottom: 3rem;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 1rem;
  padding: 0 2rem;
}

.event-card {
  background: rgba(255,255,255,0.9);
  padding: 0.8rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.event-card:hover {
  transform: translateY(-5px);
}

.event-img-wrapper {
  width: 100%;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.8);
  padding: 0.5rem;
  border-radius: 12px;
}

.event-img-wrapper img {
  max-width: 150%;
  max-height: 150%;
  object-fit: contain;
  border-radius: 10px;
  margin-bottom: 0.8rem;
}

.event-info h3 {
  font-size: 1.0rem;
  font-weight: bold;
  color: #1b5e20;
  margin-bottom: 0.3rem;
}

.event-info p {
  font-size: 0.95rem;
  color: #2e7d32;
}

.event-card {
  position: relative;
  width: 280px; /* adjust size */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.event-img-wrapper {
  position: relative;
}

.event-img-wrapper img {
  width: 100%;
  display: block;
}

/* Coming Soon Banner */
.coming-soon-banner {
  position: absolute;
  top: 12px;
  left: -25px;
  background: linear-gradient(135deg, #ff4e50, #f9d423);
  color: white;
  font-weight: bold;
  padding: 6px 40px;
  transform: rotate(-15deg);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 3px 8px rgba(0,0,0,0.25);
  border-radius: 4px;
  z-index: 5;
  animation: pulse 2s infinite;
}

/* Animation */
@keyframes pulse {
  0%   { transform: rotate(-15deg) scale(1); }
  50%  { transform: rotate(-15deg) scale(1.08); }
  100% { transform: rotate(-15deg) scale(1); }
}



/* ---------- Charity Section ---------- */
.charity {
  padding: 100px 2rem;
  background: linear-gradient(135deg, #fff3e0, #ffe0b2); /* warm orange gradient */
  position: relative;
  overflow: hidden;
}

body.dark-mode .charity {
  background: linear-gradient(135deg, #2b2b2b, #3c3c3c);
}

.charity h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #e65100;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

/* Charity container flex layout */
.charity-container {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

/* Left content */
.charity-left {
  flex: 1 1 300px;
  min-width: 300px;
  position: relative;
  z-index: 1;
}

/* Right calendar */
.charity-right {
  flex: 1 1 400px;
  min-width: 300px;
  position: relative;
  z-index: 1;
}

/* Charity calendar card */
.charity-calendar {
  background: linear-gradient(135deg, #ffecb3, #fff8e1);
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* Calendar header */
.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.calendar-header button {
  background: #4caf50;
  color: #fff;
  border: none;
  padding: 0.5rem 0.8rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s;
}

.calendar-header button:hover {
  background: #43a047;
}

/* Calendar labels row */
.calendar-labels {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 0.5rem;
}

.day-label {
  font-weight: bold;
  text-align: center;
  color: #2e7d32;
  padding: 0.3rem 0;
}

/* Calendar grid (days only) */
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5rem;
}

/* Calendar days */
.calendar-day {
  padding: 0.6rem;
  text-align: center;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: all 0.3s;
  cursor: pointer;
}

.calendar-day:hover {
  background: #c8e6c9;
  transform: translateY(-2px);
}

/* Highlight every 3rd Friday for charity */
.calendar-day.friday-charity {
  background: #bdbdbd; /* greyed out for charity day */
  color: #fff;
  font-weight: bold;
  cursor: not-allowed;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.calendar-day.friday-charity:hover {
  transform: none;
}

/* Empty slots */
.calendar-day.empty {
  background: transparent;
  box-shadow: none;
  cursor: default;
}

.calendar-day.today {
  background: #4caf50;
  color: #fff;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}


/* Responsive */
@media (max-width:768px){
  .charity-container {
    flex-direction: column;
  }
  .charity-left, .charity-right {
    min-width: 100%;
  }
}


/* =========================
   Testimonial Section
========================= */
.testimony {
  padding: 60px 1.5rem;
  margin: 0;
  background: linear-gradient(135deg, #d9f9e3, #a7d7a8);
  position: relative;
  overflow: hidden;
  min-height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimony h2 {
  text-align: center;
  font-size: 2rem;
  color: #2e7d32;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-carousel-wrapper {
  overflow: hidden;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.testimonial-carousel {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: scrollCarousel 60s linear infinite;
}

.testimonial-card {
  flex: 0 0 60%;         /* ✅ each card takes 60% of container */
  max-width: 700px;      /* ✅ prevent it from becoming too wide */
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  flex-shrink: 0;
  text-align: center;
  position: relative;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 0.8rem;
  color: #276749;
}

.testimonial-card span {
  font-weight: 600;
  color: #1b5e20;
  display: block;
}

/* Keyframes for continuous scroll */
@keyframes scrollCarousel {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Responsive */
@media (max-width:768px){
  .testimonial-card {
    flex: 0 0 90%;   /* ✅ on small screens take 90% width */
    max-width: none;
    padding: 1.2rem;
  }
}


/* =========================
   9️⃣ Contact Section - Premium (No Bubbles)
========================= */
.contact {
  padding: 100px 2rem;
  background: linear-gradient(135deg, #e0f7fa, #b2ebf2); /* base gradient */
  position: relative;
  overflow: hidden;
}

/* Remove decorative floating shapes */
.contact::before,
.contact::after {
  content: none !important;
}

.contact h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #2e7d32;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

/* Form styling */
.contact form {
  max-width: 500px;
  margin: 0 auto 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: relative;
  z-index: 1;
}

.contact input,
.contact textarea {
  padding: 1rem;
  border-radius: 15px;
  border: 1px solid rgba(0,0,0,0.1);
  font-size: 1rem;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: all 0.3s;
}

.contact input:focus,
.contact textarea:focus {
  outline: none;
  border-color: #4caf50;
  box-shadow: 0 6px 25px rgba(76, 175, 80, 0.2);
}

.contact button {
  padding: 1rem;
  background: linear-gradient(135deg, #4caf50, #81c784);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: all 0.3s;
}

.contact button:hover {
  background: linear-gradient(135deg, #43a047, #66bb6a);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.contact-links {
  text-align: center;
  margin-top: 2rem;
  position: relative;
  z-index: 1;
}

.contact-links a {
  display: inline-block;
  margin: 0 0.5rem;
  color: #4caf50;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s;
}

.contact-links a:hover {
  color: #2e7d32;
  text-decoration: underline;
}

.contact-subtitle {
  text-align: center;
  font-size: 1.15rem;
  color: #276749;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

/* Contact Methods */
.contact-methods {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.contact-methods a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: #2e7d32;
  text-decoration: none;
  padding: 0.5rem 1rem;
  background: rgba(255,255,255,0.8);
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: all 0.3s;
}

.contact-methods a:hover {
  background: rgba(255,255,255,1);
  color: #1b5e20;
  transform: translateY(-2px);
}

.contact-methods .icon {
  font-size: 1.2rem;
}

/* Socials */
.socials {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.socials a {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 1rem;
  border-radius: 12px;
  background: rgba(255,255,255,0.8);
  font-weight: 500;
  color: #2e7d32;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: all 0.3s;
}

.socials a:hover {
  background: rgba(255,255,255,1);
  color: #1b5e20;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width:768px){
  .contact {
    padding: 80px 1.5rem;
  }
  .contact form {
    max-width: 100%;
  }
}


/* =========================
   10️⃣ Responsive
========================= */
@media (max-width:768px){
  .hero {
    flex-direction: column;
    text-align: center;
  }
  .hero-image img {
    max-width: 300px;
  }
  .drink-grid, .event-grid, .charity-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   Footer
========================= */
.footer {
  background-color: #2e7d32; /* green */
  color: #fff;
  padding: 1.5rem 2rem;
  margin-top: 3rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-text {
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #c8e6c9; /* light green */
}

/* Responsive */
@media (min-width: 768px) {
  .footer-container {
    flex-direction: row;
  }
  .footer-text {
    text-align: left;
  }
}


/* 🌈 Continuous Gradient Background */
body {
  line-height: 1.6;
  color: #333;
  scroll-behavior: smooth;
  background: linear-gradient(135deg, #fdfcfb, #fff9f0, #f0fdf4, #d9f99d, #e8f5e9, #c8e6c9, #fff3e0, #ffe0b2, #d9f9e3, #a7d7a8, #e0f7fa, #b2ebf2);
  background-size: 200% 200%;
  animation: gradientFlow 25s ease infinite;
}

/* Animate the gradient for luxury feel */
@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* 🪄 Make all sections transparent to blend */
section,
.menu-section,
.premium-about,
.events,
.charity,
.testimony,
.contact {
  background: transparent !important;
}