/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f8f8f8;
    margin: 0;
    padding: 0;
}

/* Hero Section Styling Fix */.hero {
    position: relative;
    background-image: url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 20px;
}

/* Dark Overlay */.hero-overlay {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

/* Hero Text */.hero-title {
    font-size: 3em;
    font-weight: bold;
    color: #ffffff;
}.hero-subtitle {
    font-size: 1.5em;
    color: #ffffff;
}

/* Weekly Specials - Centered Content */.specials {
    text-align: center;
    padding: 50px 20px;
}.specials h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 10px;
}.specials h3 {
    font-size: 1.8em;
    color: #666;
    margin-bottom: 15px;
}.specials p {
    font-size: 1.2em;
    color: #444;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

/* Hero Section Fix - Ensure Text is in Front */.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2; /* Ensures text is above the overlay */
    text-align: center;
    width: 100%;
}

/* Center Customer Reviews */.reviews {
    text-align: center;
}

/* Fix Logo to Look Professional */.logo a {
    font-size: 1.8em;
    font-weight: bold;
    text-decoration: none;
    color: white;
}.logo a:hover {
    text-decoration: none; /* Remove underline on hover */
}


/* Weekly Specials - Fixed Row Layout */.specials-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
}.special {
    background: white;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    width: 180px; /* Consistent size */
    /* flex-grow: 1; */
}.special {
    cursor: pointer; /* Makes it clear that specials are clickable */
}.special img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
}

/* Center the Recipe Section */.recipe {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 40px auto;
}

/* Arrange Image on Left and Content on Right */.recipe-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    gap: 20px;
    width: 100%;
}.recipe-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 800px;
    margin: auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}.recipe-container img {
    width: 250px;
    height: auto;
    border-radius: 10px;
}.recipe-content {
    flex: 1;
    text-align: left;
}

/* Style Recipe Image */.recipe-container img {
    width: 40%; /* Adjusts image size */
    max-width: 300px;
    border-radius: 10px;
}

/* Recipe Text Content */.recipe-content {
    width: 60%;
    max-width: 500px;
}

/* Style Recipe Titles */.recipe h2 {
    font-size: 2em;
    margin-bottom: 15px;
    text-align: center;
}

/* Subtitles & Lists */.recipe h3,.recipe h4 {
    font-size: 1.4em;
    margin-bottom: 10px;
}.recipe ul {
    list-style-type: disc;
    padding-left: 20px;
}.recipe p {
    font-size: 1.1em;
    line-height: 1.5;
}

/* About Us Styling */.about {
    text-align: center;
    padding: 40px 20px;
    max-width: 800px;
    margin: 0 auto;
}.about h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 20px;
}.about p {
    font-size: 1.2em;
    line-height: 1.6;
    color: #555;
}

/* Department Highlights Styling */.departments {
    padding: 50px 20px;
    text-align: center;
}.departments h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 20px;
}.department-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}.department-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    text-align: center;
}.department-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    margin-bottom: 15px;
}.department-item h3 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 10px;
}.department-item p {
    font-size: 1em;
    line-height: 1.5;
    color: #555;
}.button {
    display: inline-block;
    background-color: #007bff;
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin-top: 30px;
}.button:hover {
    background-color: #0056b3;
}

/* Customer Reviews Styling */.reviews-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 40px;
}.review {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    text-align: center;
}

/* Footer Styling */.footer-container {
    background-color: #056839;
    color: white;
    padding: 30px;
    display: flex;
    justify-content: space-between;
}.footer-info,.footer-links {
    flex: 1;
    padding: 10px;
}.footer-links ul {
    list-style: none;
    padding: 0;
}.footer-links a {
    color: white;
    text-decoration: none;
}.footer-links a:hover {
    text-decoration: underline;
}

/* Responsive Fixes */
@media (max-width: 1024px) {
  .specials-container {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
  .specials-container {
        flex-direction: column;
        align-items: center;
    }

  .special {
        width: 100%;
    }

  .reviews-container {
        flex-direction: column;
        align-items: center;
    }

  .department-grid {
        flex-direction: column;
        align-items: center;
    }
}