

/* General body and container settings */
body, html {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    scroll-behavior: smooth;
}

body {
    opacity: 0;
    transition: opacity 0.5s ease-in; /* Shorter duration for subtle effect */
}

body.loaded {
    opacity: 1;
}

/*Navigation*/
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center; 
    position: sticky; 
    top: 0; 
    z-index: 10; 
    padding: 10px 0; 
    width: 100%; 
}


.header {
    background-image: linear-gradient(#A8D5BA, #71a3a1); 
    padding: 0;
    margin: 0;
    border-bottom-left-radius: 50% 20%;
    border-bottom-right-radius: 50% 20%;
    box-shadow: 0 2px 9px 0 rgba(0,0,0,.2);

    position: sticky; /* Makes the navbar sticky */
    top: 0; /* Sticks the navbar to the top */
    z-index: 10; /* Keeps the navbar on top of other content */
    width: 100%; /* Ensures full width */
}

.logo-container {
    display: flex;
    justify-content: flex-start;
    box-shadow: 0 2px 9px 0 rgba(0,0,0,.2);
}

.logo img {
    max-width: 100px;
    height: auto;
    
}

.navbar {
    flex-grow: 1;
    display: flex;
    justify-content: center; 
    align-items: center;
    font-size: 20px;
    position: sticky; /* Makes the navbar sticky */
    top: 0; /* Sticks the navbar to the top */
    z-index: 10; /* Keeps the navbar on top of other content */
    padding: 10px 0; /* Optional padding */
    width: 100%; /* Ensures full width */
}

.navbar-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 40px; 
}

.navbar-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 1000;
    text-transform: uppercase;
    padding: 8px 15px;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.navbar-link:hover,
.navbar-link:focus {
    background-color: #4C6B49; 
    color: #fff;
}



/* HERO section*/

.hero {
    background: url('hero-bg.jpg') no-repeat center center/cover;
    height: 80vh; /* Full viewport height */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    color: #fff; /* White text for contrast */
    overflow: hidden;
    margin-top: 0;
    padding: 0;
  }
  
  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
    z-index: 1;
    backdrop-filter: blur(3px); 
  }
  
  .hero-container {
    position: relative;
    z-index: 2; /* Place content above the overlay */
    max-width: 700px;
    margin: 0 auto;
    padding: 20px;
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1.8;
    color: #ffebd2; /* Light cream for subtitle contrast */
  }
  
  .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: #ffffff; /* Bright white for emphasis */
  }
  
  .hero-btn-group {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  .btn {
    display: inline-block;
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    border: none;
    border-radius: 30px; /* Rounded pill-like shape */
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); /* Add depth with shadow */
  }
  
  .btn-primary {
    background-color: #A8D5BA; /* Dark green */
    color: #fff;
  }
  
  .btn-primary:hover {
    background-color: #3a5238;
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.4); /* Stronger shadow on hover */
  }
  
  .btn-secondary {
    background-color: #FFB6B9; /* Soft pink */
    color: #fff;
  }
  
  .btn-secondary:hover {
    background-color: #ff6f6f;
    box-shadow: 0 7px 20px #000000;
  }

  .about{
    padding: 90px;
  }

  .column {
  float: left;
  width: 33.3%;
  margin-bottom: 16px;
  padding: 0 8px;
}

.card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  margin: 8px;
}

.about-section {
  padding: 50px;
  text-align: center;
  background-color: #474e5d;
  color: white;
  margin-top: 50px;
}


.button:hover {
  background-color: #555;
}

.owners{
    height: 60vh;
}

@media screen and (max-width: 650px) {
  .column {
    width: 100%;
    display: block;
  }
}

.row {
    display: flex;
    flex-wrap: wrap;  /* Ensures that columns wrap on smaller screens */
    justify-content: space-between;  /* Spaces out the columns */
    margin: 0 -8px; /* Adjusts for the padding on columns */
}

/* Column settings for flexbox */
.column {
    flex: 1 1 33.33%;  /* Flex-grow, flex-shrink, flex-basis */
    padding: 0 8px;  /* Adjust column spacing */
    box-sizing: border-box;  /* Ensures padding doesn't affect width */
    margin-bottom: 16px; /* Space between rows */
}

.card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    margin: 8px;
}

.menu {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 40px;
}

.menu-items {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.menu-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 300px;
    transition: transform 0.3s ease;
}

.menu-item:hover {
    transform: scale(1.05); /* Slight zoom effect on hover */
}

.menu-item-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.menu-item-details {
    padding: 20px;
}

.menu-item-details h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.menu-item-details p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 10px;
}

.price {
    font-size: 1.2rem;
    font-weight: 600;
    color: #4C6B49;
}

#testimonials {
    padding: 2rem 0;
    background: rgba(243, 243, 243);
  }
  
  .testimonial-title {
    text-align: center;
    font-size: 2.8rem;
    color: #555;
  }
  
  .testimonial-container {
    display: flex;
    justify-content: space-between;
    font-size: 1.4rem;
    padding: 1rem;
  }
  
  
  .testimonial-box {
    text-align: center;
    padding: 1rem;
  }
  
  .customer-photo img {
    display: block;
    width: 200px;
    height: 200px;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    margin: auto;
  }

  .contact-section {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
    background-color: #474e5d; /* Teal background */
            color: white;
            width: 100%;
    padding: 20px;
}

.contact-column {
  flex: 1;
  min-width: 300px;
  width: 33%;  /* Control the width of each column, if you want them side by side */
  padding: 20px;
}

.contact-icon {
    font-size: 50px;
    color: white;
    margin-bottom: 15px;
}

.contact-column h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.contact-column p {
    line-height: 1.8;
    font-size: 1rem;
}

.contact-column p span {
    font-weight: bold;
}

.badge {
    margin-top: 20px;
}

.badge img {
    max-width: 100px;
}

.map-container {
  width: 100%;
  max-width: 1200px;
  text-align: center;
  margin: 20px auto;
}
.map-header {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #555;
}
iframe {
  width: 100%;
  height: 600px;
  border: 2px solid #ddd;
  border-radius: 8px;
}

/* Responsive design for small screens */
@media screen and (max-width: 768px) {
    .menu-items {
        flex-direction: column;
        gap: 30px;
    }
}

footer{
        margin-top: 20px;
        font-size: 14px;
        text-align: center;
    }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .hero-title {
      font-size: 2.5rem;
    }
  
    .hero-subtitle {
      font-size: 1.2rem;
    }
  
    .hero-btn-group {
      flex-direction: column;
      gap: 15px;
    }
  }