body {
  background-color: black; /* Or use a color code like #f4f4f4 */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}
.lang {
    background: black;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 90%;
    height: 20px;
    position: relative;
}


/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Unified Navigation Bar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #66CC33;
    padding: 0.5rem 1rem;
    height: 100px;
    position: relative;
    z-index: 1000;
}

/* Logo - Right-aligned by default */
.logo {
    margin-left: auto; /* Pushes logo to right */
}

.logo img {
    max-height: 150px;
    height: auto;
    width: auto;
    transition: all 0.3s ease;
}

/* Navigation Links - Left-aligned */
.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin-right: auto; /* Pushes links to left */
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    transition: color 0.3s;
}

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

/* Burger Menu */
.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.3rem;
    color: white;
    background: none;
    border: none;
    z-index: 1001;
    order: -1; /* Always keeps burger on left */
}

/* Desktop (1103px and above) */
@media (min-width: 1103px) {
    .logo {
        margin-left: 30px; /* Adjust as needed */
        margin-right: 0;
    }
    .nav-links {
        margin-right: 20px;
    }
}

/* Mobile Styles */
@media (max-width: 1102px) {
    .navbar {
        height: 80px;
        padding: 0 1rem;
    }
    
    .logo {
        margin-left: auto;
        margin-right: auto;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .logo img {
        max-height: 100px;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: #333;
        flex-direction: column;
        align-items: center;
        justify-content: center; /* Centers menu items vertically */
        padding-top: 0;
        transition: left 0.3s ease;
        margin: 0;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        text-align: center;
        width: 100%;
    }
    
    .nav-links a {
        display: block;
        padding: 1rem 0;
        font-size: 1.2rem;
    }
}



/* Prevent scrolling when menu is open */
body.menu-open {
    overflow: hidden;
}


.full-width-banner {
    width: 100%;
    overflow: hidden;
    margin: 0;
    padding: 0;
    height: 30vh; /* 30% of viewport height */
}

.banner-image {
    width: 100%;
    height: 100%; /* Fill container height */
    object-fit: cover; /* Crop to fit */
    object-position: center; /* Focus on center of image */
    display: block;
}

/* About Us Section Styling */
.about-us {
  background-color: #000;
  padding: 80px 0;
  text-align: center;
}

.about-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  color: #66CC33;
  font-size: 2.5rem;
  margin-bottom: 40px;
  position: relative;
}

.section-title:after {
  content: "";
  display: block;
  width: 100px;
  height: 3px;
  background: #66CC33;
  margin: 15px auto;
}

.about-text {
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 25px;
  text-align: left;
}

.first-line {
  font-weight: bold;
  color: #fff;
}

.highlight-text {
  font-style: italic;
  font-size: 1.2rem;
  color: #66CC33;
  padding: 20px;
  border-left: 3px solid #66CC33;
  background-color: rgba(139, 0, 0, 0.05);
  margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-us {
    padding: 50px 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .about-text {
    font-size: 1rem;
  }
}


/* Menu Gallery Styling */
.menu-gallery {
  padding: 60px 0;
  background-color: #000;
}

.scroll-container {
  width: 100%;
  overflow-x: auto;
  padding: 20px 0;
  -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
}

.scroll-gallery {
  display: flex;
  gap: 25px;
  padding: 0 30px;
  width: max-content;
}

.menu-item {
  flex: 0 0 280px;
  text-align: center;
  transition: transform 0.3s;
}

.menu-item:hover {
  transform: translateY(-10px);
}

.menu-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  border: 3px solid #8B0000;
}

.menu-item p {
  margin-top: 15px;
  font-weight: 600;
  color: #8B0000;
  font-size: 1.1rem;
}

/* Hide scrollbar but keep functionality */
.scroll-container::-webkit-scrollbar {
  height: 8px;
}

.scroll-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.scroll-container::-webkit-scrollbar-thumb {
  background: #8B0000;
  border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .scroll-gallery {
    gap: 15px;
    padding: 0 15px;
  }
  
  .menu-item {
    flex: 0 0 220px;
  }
  
  .menu-item img {
    height: 160px;
  }
}










.scroll-gallery-section {
  padding: 60px 20px;
  background: #000;
  text-align: center;
}

.image-scroller {
  display: flex;
  overflow-x: auto;
  gap: 25px;
  padding: 30px 20px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.food-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(139, 0, 0, 0.1);
  transition: transform 0.3s;
}

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

.food-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid #66CC33;
}

.food-card p {
  padding: 15px;
  color: #66CC33;
  font-weight: 600;
  font-size: 1.1rem;
}

/* Hide scrollbar but keep functionality */
.image-scroller::-webkit-scrollbar {
  height: 8px;
}

.image-scroller::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.image-scroller::-webkit-scrollbar-thumb {
  background: #66CC33;
  border-radius: 10px;
}





.circular-gallery {
  padding: 60px 0;
  background: #000;
  position: relative;
  overflow: hidden;
}

.scroller-track {
  display: flex;
  width: max-content;
  animation: scroll 60s linear infinite;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* Matches cloned set */
}

.food-card {
  flex: 0 0 280px;
  margin: 0 15px;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(139, 0, 0, 0.1);
  transition: transform 0.3s;
}

.food-card:hover {
  transform: scale(1.05);
}

.food-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 3px solid #66CC33;
}

.food-card p {
  padding: 15px;
  color: #66CC33;
  font-weight: 600;
  text-align: center;
}

/* Gradient fade edges */
.circular-gallery:before,
.circular-gallery:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.circular-gallery:before {
  left: 0;
  background: linear-gradient(90deg, #000 0%, transparent 100%);
}

.circular-gallery:after {
  right: 0;
  background: linear-gradient(270deg, #000 0%, transparent 100%);
}




/* Footer Styles */
.footer {
    background-color: #66CC33;
    color: white;
    padding: 40px 0 20px;
    font-family: 'Arial', sans-serif;
    margin-top: 50px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 20px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
    padding: 0 15px;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: black;
}

.footer-column p {
    margin-bottom: 10px;
    line-height: 1.6;
}

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

.social-icons img {
    width: 32px;
    height: 32px;
    transition: transform 0.3s;
}

.social-icons img:hover {
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-column {
        flex: 100%;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-icons {
        justify-content: center;
    }
}


/*




conatct file 
*/


.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
}

h1 {
    color: #EFBF04;
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

/* Google Maps */
.map-container {
    margin: 30px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.contact-card h2 {
    color: black;
    margin-top: 0;
    font-size: 1.3rem;
    border-bottom: 2px solid #e0d6c2;
    padding-bottom: 10px;
}

.contact-card p {
    margin: 15px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 1.8rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
.whatsapp-button {
        text-align: center;
        margin-top: 40px;
    }
    .whatsapp-button a {
        display: inline-block;
        background-color: #25D366;
        color: white;
        text-decoration: none;
        padding: 15px 30px;
        border-radius: 50px;
        font-weight: bold;
        font-size: 18px;
        transition: background-color 0.3s;
    }
    .whatsapp-button a:hover {
        background-color: #66cc33;
    }
    .whatsapp-button img {
        vertical-align: middle;
        margin-right: 10px;
        width: 24px;
        height: 24px;
    }
.social-icons{
  font-size: 30px;
}
.social-icons ion-icon{
  color: white;
}

