* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  line-height: 1.6;
  background-color: #f0f8ff; /* Light background for a modern feel */
}

.container {
  width: 80%;
  margin: auto;
  overflow: hidden;
}

header {
  background: #ffffff; /* White background for header */
  padding: 10px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

header h1 {
  text-align: center;
  color: #d81b60; /* Earthy green color */
}

nav {
  margin-top: 10px;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
}

nav ul li {
  margin: 0 15px;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  transition: color 0.3s;
}

nav a:hover {
  color: #e91e63; /* Bright color for hover effect */
}
.hero {
    position: relative;
    width: 100%;
    height: 75vh; /* Full viewport height */
    overflow: hidden; /* Hide any overflow */
}

.hero-images {
    display: flex; /* Use flexbox for layout */
    width: 100%; /* Full width of the container */
    height: 100%; /* Full height of the container */
    animation: slide 12s infinite; /* Animation for sliding effect */
}

.hero-images img {
    min-width: 100%; /* Ensure the image covers the full width */
    min-height: 100%; /* Ensure the image covers the full height */
    object-fit: cover; /* Cover the entire area without distortion */
    transition: opacity 1s ease-in-out; /* Smooth transition for fade effect */
}

@keyframes slide {
    0% { transform: translateX(0); }
    20% { transform: translateX(0); }
    25% { transform: translateX(-100%); }
    45% { transform: translateX(-100%); }
    50% { transform: translateX(-200%); }
    70% { transform: translateX(-200%); }
    75% { transform: translateX(0); }
    100% { transform: translateX(0); }
}


/* .hero {
  position: relative;
  height: 70vh; /* Full viewport height */
 /* overflow: hidden;*/ /* Hide overflow for scrolling effect */
}

/* .hero-images {
  display: flex;
  animation: scroll 20s linear infinite; /* Continuous scroll animation
} */

/* .hero-images img {
  width: 100%;
  height: auto;
} */

/* @keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
} */

section {
  padding: 20px 0;
  background: #ffffff; /* White section backgrounds */
  margin: 20px 0;
  border-radius: 8px;
}

h2 {
  text-align: center;
  color: #d81b60; /* Earthy  color */
  margin-bottom: 20px;
}

.menu ul {
  list-style: none;
  padding: 0;
}

.menu li {
  margin-bottom: 15px;
}

.highlights {
    padding: 40px 20px; /* Add padding for spacing around the section */
    background-color: #f9f9f9; /* Optional: Light background for contrast */
}

.highlight-grid {
    display: flex; /* Use flexbox for inline layout */
    justify-content: space-around; /* Space items evenly */
    flex-wrap: wrap; /* Allow wrapping for smaller screens */
}

.highlight-item {
    flex: 1 1 30%; /* Allow flexibility for items, adjust width as needed */
    max-width: 300px; /* Set a max width for uniformity */
    text-align: center; /* Center text and images */
    margin: 10px; /* Add margin for spacing */
}

.highlight-item img {
    width: 100%; /* Make images responsive */
    height: auto; /* Maintain aspect ratio */
    max-height: 200px; /* Limit max height for medium size */
    object-fit: cover; /* Ensure images cover the area without distortion */
    border-radius: 10px; /* Optional: Add rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Optional: Add shadow for depth */
}

.highlight-item h3 {
    margin-top: 10px; /* Space between image and heading */
    font-size: 1.5rem; /* Adjust font size as needed */
    color: #333; /* Change text color if desired */
}

.container {
    max-width: 1200px; /* Optional: Limit width of the container */
    margin: 0 auto; /* Center the container */
    padding: 0 20px; /* Add some padding for mobile */
}

.contact form {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  margin: auto;
}

label {
  margin-bottom: 5px;
}

input,
textarea {
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button.btn {
  background: #e91e63;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button.btn:hover {
  background: #d81b60;
}

.about {
    background-color: #f9f9f9; /* Light background color for the section */
    padding: 40px 20px; /* Padding around the section */
    border-radius: 10px; /* Rounded corners for the section */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Shadow for depth */
}

.about-content {
    display: flex; /* Use flexbox to align items */
    flex-direction: column; /* Default to column for mobile */
    align-items: center; /* Center items horizontally */
}

.about-text {
    flex: 1; /* Allow text section to grow */
    padding: 20px; /* Add padding for spacing */
    max-width: 600px; /* Limit the width for better readability */
    background-color: #fff; /* White background for the text box */
    border: 1px solid #e1e1e1; /* Light border around the text box */
    border-radius: 8px; /* Rounded corners for the text box */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.about-image {
    flex: 1; /* Allow image section to grow */
    padding: 20px; /* Add padding for spacing */
}

.menu {
    background-color: #f9f9f9; /* Light background color for the menu section */
    padding: 40px 20px; /* Padding around the section */
    border-radius: 10px; /* Rounded corners for the section */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Shadow for depth */
}

.menu ul {
    list-style: none; /* Remove default list styling */
    padding: 0; /* Remove default padding */
}

.menu-item {
    display: flex; /* Use flexbox to align items */
    align-items: center; /* Center items vertically */
    margin-bottom: 20px; /* Space between menu items */
    border: 1px solid #e1e1e1; /* Light border around each item */
    border-radius: 8px; /* Rounded corners for each item */
    padding: 20px; /* Add padding for spacing */
    background-color: #fff; /* White background for items */
}

.menu-item img {
    width: 120px; /* Set a fixed width for medium images */
    height: auto; /* Maintain aspect ratio */
    border-radius: 8px; /* Rounded corners for images */
    margin-left: 20px; /* Space between text and image */
}


.menu h3 {
    margin: 0; /* Remove default margin for headings */
}

.menu p {
    margin: 5px 0; /* Space between paragraph elements */
}


/* Media query for larger screens */
@media (min-width: 768px) {
    .about-content {
        flex-direction: row; /* Change to row on larger screens */
    }

    .about-text, .about-image {
        flex: 1; /* Equal flex basis for text and image */
        padding: 20px; /* Add padding for both sections */
    }
}

/* Media query for larger screens */
@media (min-width: 768px) {
    .about-content {
        flex-direction: row; /* Change to row on larger screens */
    }

    .about-text, .about-image {
        flex: 1; /* Equal flex basis for text and image */
    }
}


.customer-experience {
    background-color: #f0f0f0; /* Light background color for the section */
    padding: 40px 20px; /* Padding around the section */
    text-align: center; /* Center the text */
}

.customer-experience h2 {
    margin-bottom: 20px; /* Space below the heading */
}

.testimonial-container {
    display: flex;
    flex-wrap: wrap; /* Allows wrapping of testimonials */
    justify-content: space-between; /* Distributes space evenly */
}

.testimonial {
    flex: 1 1 calc(25% - 20px); /* Adjust the width based on your layout */
    margin: 10px; /* Space between testimonials */
    text-align: center; /* Center-align text */
    background-color: #d26d6d; /* Optional background for better visibility */
    padding: 20px; /* Padding around the content */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5); /* Subtle shadow */
}

.testimonial img {
    width: 100%; /* Make image take full width */
    height: 150px; /* Set a fixed height */
    object-fit: cover; /* Crop the image to fill the space */
    border-radius: 8px; /* Rounded corners for images */
    margin-bottom: 15px; /* Space between image and text */
}




.testimonial p {
    margin: 5px 0; /* Space between paragraph elements */
}

.live-reviews {
    background-color: #fffbfb; /* White background for reviews */
    padding: 40px 20px; /* Padding around the section */
    text-align: center; /* Center the text */
}

.live-reviews h2 {
    margin-bottom: 20px; /* Space below the heading */
}

.review {
    margin: 20px 0; /* Space between reviews */
}

.review-content {
    display: flex; /* Flexbox for alignment */
    align-items: center; /* Center vertically */
    justify-content: center; /* Center horizontally */
    background-color: #f7a3a3; /* Light grey background for review card */
    border-radius: 8px; /* Rounded corners */
    padding: 20px; /* Padding inside the review card */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.reviewer-image {
    width: 60px; /* Fixed width for reviewer images */
    height: 60px; /* Fixed height for reviewer images */
    border-radius: 50%; /* Make images circular */
    margin-right: 20px; /* Space between image and text */
}

.review-text {
    text-align: left; /* Align text to the left */
}

.star-rating {
    margin-top: 5px; /* Space above the star rating */
}

.star {
    color: #FFD700; /* Gold color for filled stars */
    font-size: 18px; /* Size of stars */
}

.star.filled {
    color: #FFD700; /* Gold color for filled stars */
}



footer {
    background-color: #cfcdcd; /* Light grey background */
    padding: 40px 20px; /* Padding around the footer */
}

.footer-content {
    display: flex; /* Use flexbox for layout */
    justify-content: space-between; /* Space between sections */
    margin-bottom: 20px; /* Space below the footer content */
}

.footer-section {
    flex: 1; /* Each section takes equal space */
    margin-right: 20px; /* Space between sections */
}

.footer-section:last-child {
    margin-right: 0; /* Remove margin for the last section */
}

.footer-location {
    text-align: center; /* Center the location section */
    margin-bottom: 20px; /* Space below the location section */
}

.map {
    margin-top: 10px; /* Space above the map */
}

.footer-bottom {
    text-align: center; /* Center the footer bottom text */
    font-size: 14px; /* Font size for footer bottom */
}

.footer-bottom ul {
    list-style: none; /* Remove bullet points */
    padding: 0; /* Remove padding */
    display: inline-block; /* Display inline */
}

.footer-bottom li {
    display: inline; /* Display items inline */
    margin: 0 10px; /* Space between items */
}

.footer-bottom a {
    text-decoration: none; /* Remove underline */
    color: #333; /* Darker text color */
}

.footer-bottom a:hover {
    text-decoration: underline; /* Underline on hover */
}

.social-media {
    list-style: none; /* Remove bullet points */
    padding: 0; /* Remove padding */
    display: flex; /* Use flexbox for alignment */
    justify-content: center; /* Center the icons */
}

.social-media li {
    margin: 0 15px; /* Space between social media items */
}

.social-media a {
    display: flex; /* Align icon and text */
    align-items: center; /* Center items vertically */
    text-decoration: none; /* Remove underline */
    color: #333; /* Darker text color */
}

.social-icon {
    width: 20px; /* Width for social media icons */
    height: 20px; /* Height for social media icons */
    margin-right: 5px; /* Space between icon and text */
}



/* footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 15px 0;
}

footer ul {
  list-style: none;
  display: flex;
  justify-content: center;
}

footer ul li {
  margin: 0 15px;
}

footer a {
  color: white;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
} */

/* Responsive Styles */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
  }

  .hero h2 {
    font-size: 2.5rem;
  }
}
