/* Basic styles */
body {
    margin: 0;
    /* Using Playfair Display for headings and Roboto for body text */
    font-family: 'Roboto', serif; /* Elegant body font */
    background-color: #f2f2f2; /* Light grey */
    color: #333; /* Dark grey */
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif; /* Elegant heading font */
    color: #1a1a1a;
}

/* Animations */
@keyframes fadeIn { /* Changed animation name to fadeIn */
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.animate-left {
font-family:"Lora", serif;
  font-size: 2em;
  font-weight: 500;
  color: #111; /* Or your brand color */
  letter-spacing: 0.08em;
  white-space: nowrap;
  opacity:1;
  
}

.animate-left.is-visible {
  
    animation: fadeIn 1.5s ease-out forwards; /* Changed to fadeIn, increased duration */
}


/* Navigation Bar */
.navbar {
  display: flex;
  align-items: center;
  background-color: #fffdfd;
  padding: 18px 40px;
  color: rgb(0, 0, 0);
  min-height: 80px;
  max-height: 100px;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  box-sizing: border-box;

}

.navbar .nav-left {
  display: flex;
  align-items: center;
  
}


.navbar .logo img {
  height: 100px;
  margin-right:40px;
  margin-top: 7px;
}

/* Text beside logo */


.navbar .nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 40px;
  font-family: "Lora", serif;
  font-weight: bold;
  font-size: 1.2rem;
   margin-left: 450px;

}

.nav-links li {
  position: relative;
}

.nav-links a,
.dropbtn {
  color: rgb(0, 0, 0);
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
  padding: 0;
  transition: color 0.3s ease, transform 0.2s ease;
}

.nav-links a:hover,
.dropbtn:hover {
  color: #365724;
  transform: translateY(-2px);
}

.dropdown .dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #f1f4f1;
  color: #000;
  min-width: 220px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  border-radius: 6px;
  z-index: 999;
}

.dropdown .dropdown-content a {
  display: block;
  padding: 12px 16px;
  font-size: 1rem;
  font-weight: normal;
  white-space: nowrap;
  color: #000;
}

.dropdown .dropdown-content a:hover {
  background-color: #22662c;
  color: #fff;
  transform: none;
}

@media (hover: hover) and (pointer: fine) {
  .dropdown:hover .dropdown-content {
    display: block;
  }
}

/* Hamburger Menu */
.menu-toggle {
  display: none ;
  width: 30px;
  height: 30px;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1100;
}

.menu-toggle .bar {
  width: 100%;
  height: 3px;
  background-color: #3c2b2b;
  border-radius: 2px;
  transition: 0.3s ease;
}

/* Mobile Styles */
@media (max-width: 540px) {
  .navbar {
    padding: 10px 10px;
    flex-wrap: nowrap;
    justify-content: space-between;
    
  }

  .logo img {
    height: 40px;
  }

  .animate-left {
    font-size: 0.7rem;
    margin-right: 13px;
  }

  /* Hide text initially, show only at top */
  .animate-left.hidden {
    opacity: 0;
    pointer-events: none;
    width: 0;
    margin-left: 0 !important;
    overflow: hidden;
  }

  /* Hamburger visible */
  .menu-toggle {
  display: flex;
  }
  html,body {
     min-width: 0;
  margin: 0;
  padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
      width: 100%;
  
  }
  /* Nav links hidden by default on mobile */
  .navbar .nav-links {
    position: fixed;
    line-height: 25px;
    top: 80px;
    left:50%;
    right:0;
     align-items: center; 
     margin-left: 0 !important;  
     transform: none; 
    background-color: #ffffff;
    height:auto;
    width: 80vw;
      max-width: 100vw !important;
    min-width: 0 !important;
    flex-direction: column;
    text-align: center;
    gap: 10px;
    padding: 10px 0px 10px 0;
    box-shadow: -2px 0 5px rgba(0,0,0,0.2);
      opacity: 0;
        transition: transform 0.4s, opacity 0.2s;
    z-index: 1000;
  overflow-x: hidden;
  }

  /* Show nav links when toggled */
  .nav-links.active {
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links li {
    width: 100%;
    margin-left:0 !important;
     justify-content: center;
     
  }
    *, *::before, *::after {
    box-sizing: border-box;
  }
  img, table, .nav-links {
    max-width: 100vw;
  }

  .nav-links a, .dropbtn {
    font-size: 1.2rem;
    width: 100%;
  }

  /* Dropdown content moved inline in mobile */
  .dropdown .dropdown-content {
    position: static;
    min-width: 100%;
    box-shadow: none;
    background-color: #fbfff8;
    display: none;
    padding-left: 0 !important;
  }

  /* Show dropdown in mobile when dropdown has active class */
  .dropdown.active .dropdown-content {
    display: block;
  }
}
/*tablet*/
@media (max-width: 768px) {
  .navbar {
    padding: 10px 20px;
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .logo img {
    height: 40px;
  }

  .animate-left {
    font-size: 0.9rem;
    margin-right: 13px;
  }

  /* Hide text initially, show only at top */
  .animate-left.hidden {
    opacity: 0;
    pointer-events: none;
    width: 0;
    margin-left: 0;
    overflow: hidden;
  }

  /* Hamburger visible */
  .menu-toggle {
    display: flex;
  }
  html,body {
     overflow-x: hidden;
      width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  }
  /* Nav links hidden by default on tablet */
  .nav-links {
    position: fixed;
    top: 80px;
    left:0;
    transform: none; 
    background-color: #fdfbfb;
    height:auto;
    width: 80%;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 18px;
    box-shadow: -2px 0 5px rgba(0,0,0,0.2);
    overflow-y: auto;
     opacity: 0;
        transition: transform 0.4s, opacity 0.2s;
    z-index: 1000;
    overflow-x: hidden;
  }

  /* Show nav links when toggled */
  .nav-links.active {
    transform: translate(-50%, 0);
    opacity:1;
    pointer-events: auto; 
   }

  .nav-links li {
    width: 100%;
    margin-left:20px;
  }
    *, *::before, *::after {
    box-sizing: border-box;
  }
  img, table, .nav-links {
    max-width: 100vw;
  }

  .nav-links a, .dropbtn {
    font-size: 1.0rem;
    display: block;
    width: 100%;
  }

  /* Dropdown content moved inline in tab */
  .dropdown .dropdown-content {
    position: static;
    min-width: 100%;
    box-shadow: none;
    background-color: #fdfffc;
    display: none;
    padding-left: 10px;
    border-radius: 0 0 6px 6px;
  }

  /* Show dropdown in mobile when dropdown has active class */
  .dropdown.active .dropdown-content {
    display: block;
  }
}
/* ===== FOOTER ===== */
footer {
    background: #1a1a1a;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 20px;
}


/* Hero Section */
/* Hero Section Container */
.hero-section {
    position: relative;
    overflow: hidden;
    text-align: center;
    
    
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Scrolling Background Container */
/* Container shows only one image */
.background-scroller {
  position: relative;
  width: 100vw;
  height: 100vh; /* Adjust as needed */
  overflow: hidden;
}

/* Images row — all images side by side */
.scrolling-images {
  display: flex;
  width: calc(100vw * 6); /* 6 images = 3 originals + 3 duplicates */
  height: 100%;
  
  animation: slideStep 18s steps(3) infinite;
}

.scrolling-images img {
  width: 100vw;
  height: 100%;
  object-fit: cover;
}

/* Slide animation in 6 discrete steps */
@keyframes slideStep {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100vw * 3)); /* Shift by 3 images (original set width) */
  }
}




/* Hero Content sits above the background */
.hero-content {
    position: absolute;
    z-index: 1;
    max-width: 900px;
    padding-top: 60px;
    color: #ffffff;
}

/* Hero Heading */
.hero-section h1 {
    font-size: 3.2em;
    margin-top: 0;
    margin-bottom: 0;
    text-transform: uppercase;
    color: #000000;
}

/* Tagline */
.hero-section .tagline {
    font-size: 2.5em;
    font-style: italic;
    margin-bottom: -20px;
    color: #ffffff;
}

/* Scroll Down Arrow */
.scroll-down-arrow {
    font-size: 3em;
    color: white;
    cursor: pointer;
    animation: bounce 2s infinite;
    margin-top: 30px;
    transition: transform 0.2s ease;
}

.scroll-down-arrow:hover {
    transform: scale(1.1);
}

/* Bounce Animation */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px);
    }
    60% {
        transform: translateY(-7px);
    }
}



/* Responsive Adjustments */

/* Tablets */
@media (max-width: 900px) {
    .hero-section {
       padding-top: 3px;
        margin-bottom: -155px;
        min-height: 40vh;
    }
    .scrolling-images img {
        height: 80vh;
    }
    .hero-section .tagline {
        font-size: 1.5em;
        margin-bottom: 60px;
    }
    .scroll-down-arrow {
        font-size: 2.5em;
        margin-top: 20px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .hero-section {
        padding-top: 3px;
        margin-bottom: -160px;
        min-height:90vh;
    }
    .scrolling-images-bg img {
        height: 100vh;
        max-width: 100vw;
    }
    .hero-section .tagline {
        font-size: 1.3em;
        margin-bottom: 50px;
    }
    .scroll-down-arrow {
        font-size: 2em;
        margin-top: 7px;
    }
}



/* About Section */
.about-section {
    background-color: white;
    padding: 60px 20px; /* Enlarged padding */
    text-align: center;
}

.about-section h2 {
    
    font-size: 2.5em;
    margin-bottom: 20px;
    margin-top: 2px;
}

.about-section p {
 
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    color: #555;
}

.mission-vision-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.mission-vision-section h3 {
    font-size: 2em;
    margin-top: 30px;
    margin-bottom: 15px;
}

.mission-vision-section p {
    max-width: 700px;
    margin: 0 auto 20px auto;
}


/* Services Section */
.services-section {
    background-color: #f2f2f2;
    padding: 50px 20px;
    text-align: center;
}

.services-section h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    margin-top: 2px;
}

.service-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.service-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.1);
    width: 280px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(101, 225, 94, 0.2);
}

.service-card h3 {
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.9em;
}
.menu-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 38px;
  max-width: 1100px;
  margin: 0 auto;
}

.menu-card {
  position: relative;
  background: #fff;
  border: 1.2px solid #111;  /* Thinner border */
  border-radius: 17px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.13);
  padding: 20px 20px 20px 20px; /* More top padding for image */
  min-height: 300px;
  overflow: visible;
  transition: transform 0.16s, box-shadow 0.16s;
}

.menu-card:hover {
  transform: translateY(-3px) scale(1.012);
  box-shadow: 0 10px 25px rgba(0,0,0,0.17);
}

/* IMAGE: Sits lower, nice all-sides border radius, thin border */
.menu-img-wrapper {
  position: absolute;
  top: -28px; /* Lower image for more gap from the top */
  right: -26px;
  z-index: 3;
}

.menu-img {
  width: 108px;
  height: 108px;
  border-radius: 18px;  /* Uniform rounded corners everywhere */
  object-fit: cover;
  border: 2px solid #111;   /* Thinner, modern border */
  background: #fff;
  box-shadow: 0 6px 26px rgba(0,0,0,0.12);
}

/* Content never under image */
.menu-card h3 {
  margin-top: 10px;
  margin-left:90px ;
  padding-right: 115px;
  color: #22723a;
  font-size: 1.5em;
  margin-bottom: 13px;
  text-align: center;
}

.menu-card ul {

  padding-left: 2px;
  color: #000000;
  font-size: 1.07em;
  padding-right: 10px;
  list-style: none;
}

.menu-card ul li {
    line-height: 2 !important;
    list-style: none;
  margin-bottom: 9px;
  line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 850px) {
  .menu-heading-strip {
     margin-top: 80px;
    padding: 22px 0 16px 0;
    font-size: 1.2em;
  }
  .menu-items {
    gap: 24px;
  }
  .menu-card {
    padding: 48px 7px 14px 10px;
  }
  .menu-img-wrapper {
    top: -23px;
    right: -17px;
  }
  .menu-img {
    width: 90px;
    height: 90px;
    border-radius: 14px;
    border: 1.5px solid #111;
  }
  .menu-card h3 {
    padding-right: 94px;
    font-size: 1.08em;
  }
}

@media (max-width: 768px) {
  .menu-items {
    grid-template-columns: 1fr;
    gap: 27px;
  }
  .menu-heading-strip {
     margin-top: 80px;
    padding: 22px 0 16px 0;
    font-size: 1.2em;
  }
  .menu-img-wrapper {
    top: -17px;
    right: -10px;
  }
  .menu-img {
    width: 75px;
    height: 75px;
    border-radius: 9px;
    border: 1.2px solid #111;
  }
  .menu-card h3 {
    padding-right: 78px;
  }
  .menu-section {
    padding: 70px 0 36px 0;
  }
}

@media (max-width: 540px) {
  .menu-section {
    padding: 45px 0 23px 0;
  }
  .menu-img-wrapper {
    top: -28px;
    right: -6px;
  }
  .menu-img {
    width: 54px;
    height: 54px;
    border-radius: 7px;
    border-width: 1.2px;
  }
  .menu-card {
    padding: 33px 2vw 12px 2vw;
  }
  .menu-card h3 {
    font-size: 1.5em;
    padding-right: 70px;
  }
  .menu-heading-strip {
   margin-top: 80px;
    padding: 20px 0;
    font-size: 0.7em;
  }
}



/* Menu Page Specific Styling */
.menu-section {
    padding: 120px 20px 50px 20px; /* Top padding to account for fixed navbar */
    text-align: center;
    background-color: white;
    min-height: 80vh; /* Ensure content pushes footer down */
}
.menu-section h2 {
    font-size: 2.8em;
    margin-bottom: 20px;
}
.menu-section p {
  margin-bottom: 0px;
    font-size: 1.1em;
    color: #555; background: #ffffff;
  padding: 40px 0 40px 0;
}


.menu-heading-strip {
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
background-image: url('../images/strip.jpg');
    background-size: cover;      /* Cover the entire strip */
  background-position: center;
  padding: 36px 0 28px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.11);
  margin-bottom: 34px;
  border-radius: 0;
}

.menu-heading-strip h2 {
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 2.7em;
  text-align: center;
  margin: 0;
  letter-spacing: 2px;
}

.menu-section p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px auto;
  color: #333;
  font-size: 1.15em;
}


/* Logo Carousel Section */
.logo-carousel-section {
    background-color: #e0e0e0; /* Lighter grey for better logo visibility */
    padding: 50px 0; /* Removed horizontal padding to ensure full width for carousel */
    text-align: center;
    color: #1a1a1a; /* Dark text for contrast */
    overflow: hidden; /* Crucial: Hides horizontal scrollbar for the section */
}

.logo-carousel-section h2 {
    font-size: 2.5em;
    margin-top: 2px;
    margin-bottom: 30px;
    padding: 0 20px; /* Add padding back for heading */
}

.carousel-container {
    /* The main container for the carousel, controls the visible window */
    display: flex; /* Ensures the track is laid out horizontally */
    overflow: hidden; /* Hides parts of the track that are outside the container */
}

.carousel-track {
    display: flex;
    white-space: nowrap; /* Keep all images on one line */
    animation: scrollLogos 400s linear infinite; /* Increased duration to 200s for very slow speed */
    padding: 20px 0; /* Add some padding to carousel track */
    will-change: transform; /* Hint for browser optimization */
    /* Removed dynamic width from JS, relies on content */
}


.carousel-track img { /* Changed to target .carousel-track img */
    height: 80px; /* Adjust logo height */
    margin: 0 20px;
    filter: none; /* Logos are always colorful */
    transition: transform 0.3s ease; /* Added transition for hover */
    flex-shrink: 0; /* Prevent images from shrinking */
}

.carousel-track img:hover { /* Changed to target .carousel-track img */
    transform: scale(1.05); /* Slight zoom on hover */
}

@keyframes scrollLogos {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-50%); } /* Scrolls half the content width, then repeats */
}

/* Feedback Sidebar */
/* Feedback Sidebar Box */
.feedback-sidebar {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #1a1a1a;
  color: white;
  padding: 10px;
  border-radius: 5px 0 0 5px;
  z-index: 1000;
}

/* Sidebar button */
.feedback-sidebar button {
  background: none;
  border: none;
  color: white;
  font-family: 'Roboto', serif;
  font-size: 1em;
  cursor: pointer;
  padding: 5px 10px;
  transition: background-color 0.3s ease;
}

.feedback-sidebar button:hover {
  background-color: #6d6d6d;
}

/* Emoji container */
.feedback-emojis {
  display: none;               /* hidden by default */
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
  align-items: center;
}

/* Emoji style (if using emoji chars in JS) */
.feedback-emojis span {
  cursor: pointer;
  font-size: 1.5em;
  transition: transform 0.2s ease;
}

.feedback-emojis span:hover {
  transform: scale(1.2);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  background-image: url('../images/bground.jpg');
  background-size: cover;
  background-position: center;
  padding: 120px 20px 50px 20px; /* top padding accounts for fixed navbar */
  text-align: center;
  min-height: 80vh;
}

.contact-section h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #ffffff;
}

/* ===== CONTACT FORM ===== */
.contact-form {
  max-width: 600px;
  margin: 20px auto;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #333;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form input[type="number"],
.contact-form input[type="date"],
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
  font-family: 'Roboto', serif;
  font-size: 1em;
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form button {
  background-color: #1a1a1a;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1em;
  font-family: 'Roboto', serif;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #555;
}

/* ===== NEW FLEX LAYOUT FOR SHORTER FORM ===== */
.form-row {
  display: flex;
  gap: 20px; /* space between side-by-side fields */
}

.form-row .form-group {
  flex: 1; /* each takes equal width */
}

.form-group input {
  width: 100%;
}

/* Mobile: stack columns into single column */
@media (max-width: 600px) {
  .form-row {
    flex-direction: column;
    gap: 0;
  }
}
@media (max-width: 900px) {
  /* Adjust Contact Us heading */
 .contact {
    color: #000000 !important;       /* Set to black or a visible color */
    font-size: 1.8rem !important;    /* Increase font size for readability */
    margin-bottom: 10px !important; /* Add spacing below */
    display: block !important;       /* Ensure it is displayed */
    visibility: visible !important;
    opacity: 1 !important;
    position: static !important;     /* Prevent off-screen positioning */
    z-index: 10 !important;          /* Bring above other elements */
  }
}

/* Map Section */
.map-section {
    background-color: #f2f2f2;
    padding: 50px 20px;
    text-align: center;
}

.map-section h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
}

.map-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #ccc; /* Placeholder background */
    margin: 0 auto 20px auto;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.get-directions-button {
    display: inline-block;
    background-color: #1a1a1a;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-family: 'Roboto', serif;
    font-weight: bold;
    margin-top: 20px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.get-directions-button:hover {
    background-color: #555;
    transform: translateY(-2px);
}


/* Footer (for contact details and socials) */
footer {
    background-color: #1a1a1a; /* Dark background as per reference image */
    color: white;
    padding: 20px;
    font-family: 'Roboto', serif;
    text-align: left;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1300px;
    margin: 0 auto;
    gap: 100px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin-bottom: -70px;
    padding: 1px 1px;
}
/* Phones and tablets: align footer content to the left */
@media (max-width: 900px) {
  .footer-column {
    text-align: left !important;  /* Align text left */
    margin: 0 !important;          /* Remove centering margins */
    padding-left: 0 !important;    /* Remove left padding */
  }
}
@media (max-width: 900px) {
  .links {
    margin-left: 0 !important;  /* Remove left margin to align with others */
  }
}

.footer-column h2 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 1.5em;
    font-family: 'Playfair Display', serif;
}
.links{
  margin-left: 30px;
  color: #cccccc;
  margin-bottom: 15px;
  font-family: 'Playfair Display', serif;
}
.footer-column h3 {
    color: #cccccc;
    margin-bottom: 15px;
    font-size: 1.2em;
    font-family: 'Playfair Display', serif;
    margin-right: 10px;
}
.footer-column-footer{
   color: #cccccc;
    margin-bottom: 5px;
    font-size: 1.2em;
    font-family: 'Playfair Display', serif;
    margin-left: 10px;
}
.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
    margin-left: 37px;
}

.footer-column ul li a {
    color: #f2f2f2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #1e7a35;
}

.footer-column p {
    margin-bottom: 8px;
    display: flex;

    margin-right: 10px;
}



/* Social icons within footer */

.social-icons {
  display: flex;
  align-items: center;
  gap: 12px;               /* Slightly smaller gap */
  max-width: 100%;        /* Prevent container overflow */
  overflow: hidden;       /* Hide anything outside container */
  padding: 5px 0;         /* Optional vertical padding */
}

.social-icon img {
  width: 30px;            /* Smaller icon size */
  height: 30px;
  display: block;
  transition: transform 0.3s ease;
  margin-top: 0;          /* Reset margin */
}

.social-icon img:hover {
  transform: translateY(-2px) scale(1.1);
  filter: brightness(1.2);
}

@media (max-width: 900px) and (min-width: 600px) {
  .social-icon img {
    width: 30px;
    height: 30px;
  }
}

/* Phones (screen width below 600px) */
@media (max-width: 599px) {
  .social-icon img {
    width: 26px;
    height: 26px;
  }
}
/* Tablet (e.g., 600px to 900px) */


.copyright {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 0.9em;
    color: #cccccc;
}

/* WhatsApp Fixed Button */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #1a1a1a; /* Black to match theme */
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.whatsapp-button img {
    width: 32px; /* Size of the image inside the button */
    height: 32px;
    filter: grayscale(100%) brightness(200%); /* Make WhatsApp logo white */
    transition: filter 0.3s ease;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    background-color: #333; /* Darker grey on hover */
}

.whatsapp-button:hover img {
    filter: none; /* Show original color on hover */
}


/* Responsive Design */
@media (max-width: 768px) {
    body {
        overflow-x: hidden; /* Ensure no horizontal scroll on mobile */
    }

 
    .hero-section {
        padding: 0 0;
        margin-top: 0; /* Adjusted for stacked navbar on mobile and thicker nav */
    }


    .hero-section .tagline {
        font-size: 2em;
    }

    .about-section,
    .services-section,
    .logo-carousel-section,
    .contact-section,
    .map-section,
    .menu-section { /* Added menu-section to responsive padding */
        padding: 30px 10px;
    }

    .service-card {
        width: 100%;
    }

        .contact-form {
            margin: 20px auto;
        }
    
        footer {
            padding: 8px 12px;
        }
    
        .footer-content {
            flex-direction: column;
         gap: 20px; 
    }

    .footer-column {
         margin-bottom: 8px;       /* Less space between stacked columns */
        padding: 0; 
        width: 100%;
    }


    .footer-column ul li {
        display: inline-block; /* For horizontal list in footer on mobile */
        margin: 0 8px 8px 0;
    }

    
    
    .map-container {
        width: 100%; /* Ensure map takes full width on mobile */
        height: 250px; /* Fixed height for map on mobile */
        padding-bottom: 0;
    }

  }