body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #333333;
    color: #333333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    background-color: #FFF8E1;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.6);
    min-height: 100vh;
}

header {
    background-color: #A62630;
    color: white;
    padding: 20px 0;
    text-align: center;
    border-bottom: 5px solid #F5A623;
}
header h1 {
    margin: 0;
    font-size: 2.8em;
    letter-spacing: 1px;
}
header h2 {
    margin: 5px 0 0;
    font-size: 1.2em;
    font-weight: 300;
}
.logo-box {
    padding: 5px 0;
}
.logo-img {
    height: 40px;
    vertical-align: middle;
    margin-right: 10px;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: center;
    background-color: #F5A623;
}
nav li {
    display: inline-block;
}
nav li a {
    display: block;
    color: #333333;
    text-decoration: none;
    padding: 15px 25px;
    transition: background-color 0.3s, color 0.3s;
    font-weight: bold;
}
nav li a:hover, nav li a.active {
    background-color: #A62630;
    color: white;
}

.main-content {
    display: flex;
    padding: 30px 20px;
}

.primary-col {
    flex: 3;
    padding-right: 30px;
}

.secondary-col {
    flex: 1;
    border-left: 1px solid #ddd;
    padding-left: 20px;
}

.section-heading {
    color: #A62630;
    font-size: 1.6em;
    margin-top: 0;
    border-bottom: 3px solid #A62630;
    padding-bottom: 5px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
}

.ad-box {
    background-color: #F5A623;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 15px;
    opacity: 0.95;
    transition: opacity 0.4s;
}
.ad-box:hover {
    opacity: 1.0;
}
.ad-heading {
    color: #333333;
    border-bottom-color: #333333;
    text-shadow: none;
    font-size: 1.4em;
}

.coupon-box {
    border: 3px dashed #A62630;
    padding: 15px;
    margin-bottom: 30px;
    background-color: white;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

.coupon-box p {
    font-size: 0.9em;
    color: #A62630;
    font-style: italic;
    border-top: 1px solid #F5A623;
    padding-top: 10px;
    margin-top: 15px;
}

.coupon-img {
    width: 100%;
    height: auto;
    display: block;
    margin: 10px 0;
}

.ad-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
    margin: 15px 0;
}

.center-text {
    text-align: center;
}

.menu-link {
    display: inline-block;
    background-color: #A62630;
    color: #FFF8E1;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.menu-link:hover {
    background-color: #333333;
}

.contact-form label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    color: #A62630;
}
.contact-form input,
.contact-form textarea {
    width: 95%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}
.submit-button {
    background-color: #A62630;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1em;
    margin-top: 10px;
    transition: background-color 0.3s;
}
.submit-button:hover {
    background-color: #F5A623;
    color: #333333;
}

.call-to-action {
    margin: 20px 0;
    padding: 20px;
    border: 2px solid #F5A623;
    text-align: center;
    background-color: #fff;
    border-radius: 8px;
}
.call-link {
    font-weight: bold;
    color: #A62630;
    text-decoration: none;
    font-size: 2em;
    display: block;
    margin: 5px 0;
}
.call-link:hover {
    text-decoration: underline;
}


.phone-text {
    font-size: 1.8em;
    margin: 10px 0;
}

.contact-form-heading {
    margin-top: 30px; 
}

.map-heading {
    margin-top: 10px; 
    color: #A62630;
    font-size: 1.4em;
    text-shadow: none;
    border-bottom: 2px solid #F5A623;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

.map-img {
    width: 100%;
    border: 2px solid #333333;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}


#menu-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

#menu-table caption {
    padding: 12px;
    font-weight: bold;
    background-color: #A62630;
    color: white;
    font-size: 1.1em;
}

#menu-table th, #menu-table td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: left;
}

#menu-table thead th {
    background-color: #F5A623;
    color: #333333;
    text-transform: uppercase;
}

#menu-table tbody tr:nth-child(odd) {
    background-color: #f2f2f2;
}
#menu-table tbody tr:hover {
    background-color: #ffe0b2;
}

#menu-table tfoot td {
    background-color: #A62630;
    color: white;
    font-style: italic;
    text-align: center;
    font-weight: bold;
}

footer {
    background-color: #333333;
    color: #FFF8E1;
    text-align: center;
    padding: 15px 20px;
    clear: both;
    border-top: 3px solid #F5A623;
}
footer a {
    color: #F5A623;
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}

.hero-image {
    width: 100%;
    max-height: 450px;
    overflow: hidden;
}

.hero-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-bottom: 3px solid #F5A623;
}

@media screen and (max-width: 768px) {
    .container {
        width: 100%;
        box-shadow: none;
    }
    .main-content {
        flex-direction: column;
        padding: 20px 15px;
    }
    .primary-col, .secondary-col {
        flex: 1;
        padding-right: 0;
        padding-left: 0;
        padding-bottom: 20px;
        border-left: none;
    }
    nav li {
        display: block;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    nav li:last-child {
        border-bottom: none;
    }
    header h1 {
        font-size: 2em;
    }
    .ad-box {
        opacity: 1.0;
    }
    .hero-image {
        max-height: 150px;
    }
}

@media print {
    nav, footer, .secondary-col, .ad-box, .call-to-action {
        display: none;
    }
    body, .container {
        background: white;
        color: black;
        box-shadow: none;
        width: auto;
        max-width: none;
        font-size: 12pt;
    }
    .main-content {
        display: block;
        padding: 0;
        margin: 0;
    }
    #menu-table th, #menu-table td, #menu-table caption {
        background-color: white;
        color: black;
        border: 1px solid black;
    }
    #menu-table tbody tr:nth-child(odd) {
        background-color: white;
    }
    .coupon-box {
        border: 2px dashed black;
    }
}
