/* Global Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  font-size: clamp(1rem, 1.5vw, 1.2rem); /* Responsive base font size */
    line-height: 1.6;
}

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

/* Header Styles */
header {
  background-color: #333;
  padding: 10px;
  color: white;
  text-align: center;
}


header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
}
header nav ul li {
    display: inline;
    padding-right: 10px;
    background-color: black;
    padding: 0 10px;
    border-radius: 10px;
    border: 0.5px solid lightgrey;
}
header nav ul li a {
  text-decoration: none;
  color: white;
  font-weight: bold;
}

/* Hero Section */
#hero {
  position: relative;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-image: url('/images/banana-leaf-1600.jpg');
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content {
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  background-color:unset;
}

#hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem); /* Responsive heading */
  padding:10px;
}

#hero p {
  font-size: clamp(1.2rem, 3vw, 1.5rem); /* Responsive paragraph */
  padding:10px;
}
.cta-button-wrapper {   
    padding: 50px 20px 80px;
}
.cta-button-wrapper .button, 
.button {
  background-color: green;
  color: white;
  padding: 10px 20px;
  border-radius: 20px;
  text-decoration: none;
  margin: 10px;
  font-size: clamp(1rem, 2vw, 1.2rem); /* Responsive button size */
}

/* Section Styling */
.section {
  padding: 60px 20px;
  min-height: 300px;
  text-align: center;
}

#about {
  background-color: #ffee74;
}

#featured-dishes {
  background-color: #f4f4f4;
}

#location {
  background-color: #c3ffd6;
}

/* About Section */
.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  /*display: inline-block;*/
}

#about h2 {
  font-size: clamp(2rem, 4vw, 3rem); /* Responsive heading */
}

#about p {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem); /* Responsive paragraph */
  line-height: 1.6;
}
#timings {
    
    align-content: center;
}
/* Featured Dishes Section */
.dishes-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
#services ul {
    text-align: left;
}
.dish-card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  width: 300px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.dish-card:hover {
  transform: translateY(-10px); /* Slight lift effect on hover */
}

.dish-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.price {
  font-weight: bold;
  color: #28a745;
  font-size: 1.2rem;
  margin-top: 10px;
}

/* Contact Section */
#contact {
  background-color: #474242;
  text-align: center;
  padding: 60px 20px;
  color: #ffeb3b;
}

.contact-details {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.contact-item {
  width: 250px;
}

.contact-item h3 {
  color: #ffeb3b;
  font-size: clamp(1.5rem, 3vw, 2rem); /* Responsive heading */
  margin-bottom: 10px;
}

.contact-item a {
    color: #ffff00;
    text-decoration: none;
    border-bottom: 1px solid white;
}

.contact-item a:hover {   
    background-color: aliceblue;
    color: black;
    padding: 5px;
    border-radius: 5px;
}

/* Footer */
footer {
  background-color: #333;
  color: white;
  padding: 20px;
  text-align: center;
  font-size: clamp(1rem, 2vw, 1.2rem); /* Responsive footer text */
}

/* Media Queries for Smaller Screens */
@media (max-width: 768px) {
  /* Hero Section Adjustments */
  #hero {
    height: 60vh; /* Smaller height for mobile screens */
    background-image: url('/images/banana-leaf-420.jpg'); /* Smaller background image */
  }

  #hero h1 {
    font-size: 2rem; /* Adjust hero heading for smaller screens */
  }

  #hero p {
    font-size: 1.2rem; /* Adjust paragraph for smaller screens */
  }

  .cta-button-wrapper {
    padding: 10px 0;
  }

  /* Contact Section */
 .contact-details {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

  iframe {
    width: 100%;
    height: auto; /* Make iframe responsive */
  }

  /* Dishes Container */
  .dish-card {
    width: 100%; /* Make dish cards take up full width */
    max-width:320px;
 padding:10px;
  }
   .dish-card h3 {
    padding: 10px 0px;
    margin: 0px;
}
  .dish-card p {
    padding: 5px 0px;
    margin: 0;
}

  /* Footer */
  footer {
    font-size: 1rem; /* Adjust footer text size for smaller screens */
  }
}

/* Media Queries for Extra Small Screens (max-width: 480px) */
@media (max-width: 480px) {
  #hero h1 {
    font-size: 1.8rem; /* Smaller heading for very small screens */
  }

  #hero p {
    font-size: 1rem; /* Smaller paragraph text */
  }

  .button {
    font-size: 1rem; /* Smaller button text */
    padding: 8px 16px;
  }

  .dish-card {
    width: 100%; /* Ensure dish cards are full width on small screens */
    max-width:320px;
    padding:10px;
  }
   .dish-card h3 {
    padding: 10px 0px;
    margin: 0px;
}
  .dish-card p {
    padding: 5px 0px;
    margin: 0;
}

  .about-content {
    max-width: 100%; /* Full width for text on small screens */
  }
}
