/* Basic Reset & Body Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Header */
header {
    background-color: #A03333; /* Deep Red/Burgundy */
    color: #fff;
    padding: 10px 0;
    border-bottom: 5px solid #FFC107; /* Golden Yellow Accent */
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 120px; /* Adjust as needed for your logo */
    margin-right: 10px;
    border-radius: 50%; /* If your logo is circular */
}

.logo h1 {
    font-family: 'Bangers', cursive; /* Fun, food-cart vibe */
    font-size: 2.5em;
    color: #FFC107; /* Golden Yellow */
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

nav ul {
    list-style: none;
}

nav ul li {
    display: inline;
    margin-left: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #FFC107; /* Golden Yellow on hover */
}

/* Hero Section */
.hero {
    background: url('Hero picture cropped.png') no-repeat center center/cover; /* Replace with your actual background image */
    color: #fff;
    text-align: center;
    padding: 100px 20px;
    position: relative;
}

.hero::before { /* Overlay for better text readability */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero h2 {
    font-family: 'Bangers', cursive;
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFC107;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.3em;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    background-color: #FFC107; /* Golden Yellow */
    color: #A03333; /* Deep Red */
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin: 10px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn:hover {
    background-color: #e0a800; /* Slightly darker yellow */
    transform: translateY(-3px);
}

.secondary-btn {
    background-color: #fff;
    color: #A03333;
}

.secondary-btn:hover {
    background-color: #eee;
}


/* Section Styling */
section {
    padding: 60px 0;
    text-align: center;
}

section:nth-of-type(even) { /* Alternate background for sections */
    background-color: #e9ecef; /* Light Gray */
}

h2 {
    font-family: 'Bangers', cursive;
    font-size: 3em;
    color: #A03333;
    margin-bottom: 40px;
    position: relative;
    display: inline-block; /* To center the underline */
}

h2::after { /* Underline effect */
    content: '';
    display: block;
    width: 80%;
    height: 4px;
    background-color: #FFC107;
    margin: 10px auto 0;
    border-radius: 2px;
}


/* Menu Section */
.menu-category {
    margin-bottom: 50px;
    text-align: left; /* Align menu items left within their category */
}

.menu-category h3 {
    font-family: 'Bangers', cursive;
    font-size: 2.2em;
    color: #212529; /* Darker text */
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    display: inline-block;
}

.menu-category h3::after {
    content: '';
    display: block;
    width: 60%;
    height: 3px;
    background-color: #A03333;
    margin: 8px auto 0;
    border-radius: 1.5px;
}

.menu-item {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

.menu-item h4 {
    font-size: 1.5em;
    color: #A03333;
    margin-bottom: 10px;
    font-family: 'Open Sans', sans-serif; /* Keep description legible */
    font-weight: 700;
}

.menu-item .description {
    font-size: 1.1em;
    color: #555;
    flex-grow: 1; /* Pushes price to bottom if descriptions vary */
}

.menu-item .price {
    font-size: 1.4em;
    font-weight: bold;
    color: #FFC107;
    text-align: right; /* Align price to the right */
    margin-top: 10px; /* Space between description and price */
}

/* Locations Section */
.locations-section {
    background-color: #fff;
    color: #333;
}

.location-info {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.location-info h3 {
    font-size: 1.8em;
    color: #A03333;
    margin-bottom: 20px;
    font-family: 'Bangers', cursive;
}

.location-info ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.location-info ul li {
    padding: 8px 0;
    border-bottom: 1px dotted #ccc;
}

.location-info ul li:last-child {
    border-bottom: none;
}

.location-info p a {
    color: #A03333;
    text-decoration: none;
    font-weight: bold;
}

.location-info p a:hover {
    text-decoration: underline;
}

.map-embed {
    margin-top: 30px;
    border-radius: 8px;
    overflow: hidden; /* Ensures iframe corners are rounded */
}

.map-embed iframe {
    width: 100%;
    height: 450px; /* Adjust height as needed */
    border: none;
}


/* About Section */
.about-section {
    background-color: #e9ecef;
    padding: 60px 20px;
}

.about-section p {
    max-width: 800px;
    margin: 0 auto 20px auto;
    font-size: 1.1em;
}

/* Contact Section */
.contact-section {
    background-color: #fff;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto 30px auto;
    text-align: left;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1em;
}

.form-group textarea {
    resize: vertical;
}

.contact-form .btn {
    width: 100%;
    padding: 15px;
    font-size: 1.2em;
    text-align: center;
}

.social-media {
    margin-top: 30px;
}

/* Social Media Icons (Font Awesome) */
.social-media a i {
    font-size: 5.0em; /* Adjust size as desired */
    color: #A03333; /* Icon color */
    margin: 0 10px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-media img:hover {
    transform: scale(1.1);
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9em;
}

footer p {
    margin-bottom: 5px;
}


/* Responsive Design */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        margin-top: 10px;
        padding-bottom: 10px;
    }

    nav ul li {
        margin: 0 10px;
        display: block; /* Stack navigation items on small screens */
        margin-bottom: 8px;
    }

    .logo h1 {
        font-size: 2em;
    }

    .hero h2 {
        font-size: 2.5em;
    }

    .hero p {
        font-size: 1em;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    h2 {
        font-size: 2.5em;
    }

    .menu-item h4 {
        font-size: 1.3em;
    }

    .menu-item .description {
        font-size: 1em;
    }

    .menu-item .price {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 50px;
    }
    .logo h1 {
        font-size: 1.8em;
    }
    nav ul li {
        margin-left: 10px;
        margin-right: 10px;
    }
    .hero h2 {
        font-size: 2em;
    }
    .hero p {
        font-size: 0.9em;
    }
    h2 {
        font-size: 2em;
    }
    .menu-item {
        padding: 15px;
    }
}