/* Reset core styles - add at the very top of style.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, 
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* Mobile-first container styles */
.container,
.nav-container {
    width: 92%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
}

/* Grid fixes */
.services-grid,
.dishes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    width: 100%;
}

/* Card fixes */
.service-card {
    width: 100%;
    margin: 0;
    padding: 0;
}

.service-image-wrapper {
    width: 100%;
    margin: 0;
    padding: 0;
}

.service-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Section fixes */
.section {
    width: 100%;
    padding: 3rem 0;
    overflow: hidden;
}

/* Reset and Base Styles */
:root {
    --primary-color: #cf7018;
    --dark-color: #000000;
    --light-color: #ffffff;
    --gray-light: #f5f5f5;
    --gray-medium: #e0e0e0;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Playfair Display', serif;
    line-height: 1.6;
    color: var(--dark-color);
    overflow-x: hidden;
    padding-top: 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Header & Navigation */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    padding: 0.5rem 0;
    height: 80px;
    display: flex;
    align-items: center;
}

.site-header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
}

.nav-container {
    max-width: none;
    margin: 0 auto;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
}

.logo-img {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--light-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.site-header.scrolled .nav-link {
    color: var(--dark-color);
}

.nav-link:hover {
    color: var(--primary-color); /* Fixed the error by replacing #your-accent-color with var(--primary-color) */
}

/* Mobile menu styles */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    content: '';
    display: block;
    background: var(--light-color);
    height: 2px;
    width: 24px;
    position: absolute;
    transition: var(--transition);
}

.hamburger {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

@media (max-width: 768px) {
    /* Header fixes */
    .site-header {
        height: 60px;
        padding: 0;
        position: fixed;
        background-color: rgba(255, 255, 255, 0.05);
    }

    .nav-container {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        height: 100%;
        padding: 0;
    }

    .logo-img {
        height: 40px;
        grid-column: 1;
        justify-self: start;
    }

    .mobile-menu-toggle {
        display: block;
        grid-column: 3;
        justify-self: end;
        width: 30px;
        height: 30px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.9);
        flex-direction: column;
        padding: 1rem;
    }

    /* Hero fixes */
    .hero {
        margin-top: 0;
        padding-top: 80px;
        min-height: 100vh;
    }

    .hero-content {
        padding: 2rem 0;
    }

    .hero h1 {
        font-size: clamp(2rem, 4vw, 3rem);
        margin-top: 1rem;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 85vh;
    width: 100%;
    margin-top: -80px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-position: center;
    background-size: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        rgba(23, 23, 23, 0.4),
        rgba(0, 0, 0, 0.4)
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem 0;
    padding-top: calc(2rem + 80px);
    width: 90%;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    color: var(--light-color);
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.hero-content p {
    color: var(--light-color);
    font-size: clamp(1.25rem, 2.5vw, 1.8rem);
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
    font-weight: 500;
    opacity: 0.95;
}

/* Hero CTA button styles */
.hero .cta-button {
    display: inline-block;
    padding: 1.2rem 2.8rem;
    background-color: var(--primary-color);
    color: var(--light-color);
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.3rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    margin-top: 2rem;
}

.hero .cta-button:hover {
    background-color: #191919;
    border-color: #191919;
    color: var(--light-color);
    transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero .cta-button {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 1.2rem 2.8rem;
    background-color: var(--primary-color);
    color: var(--light-color);
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.3rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.cta-button:hover {
    background-color: #191919;
    border-color: #191919;
    color: var(--light-color);
    transform: translateY(-3px);
}

/* Sections */
.section {
    width: 100%;
    padding: 5rem 0;
}

.container {
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

/* Service Cards */
.services-grid {
    width: 90%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-align: center;
    overflow: hidden;
    background: var(--light-color);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.service-image-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    height: 250px;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img {
    transform: scale(1.05);
}

.service-content {
    width: 100%;
    padding: 1.5rem 1rem;
    text-align: center;
}

.service-content h3 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.service-content p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    width: 95%;
    margin: 0 auto;
    padding: 0;
}

.menu-card {
    width: 100%;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    box-sizing: border-box;
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.menu-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.menu-content .menu-description {
    flex-grow: 1;
    margin-bottom: 1rem;
}

.pricing-options {
    margin-top: auto;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-input {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--gray-medium);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Footer */
.footer {
    background-color: #191919;
    color: var(--light-color);
    padding: 4rem 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 1s ease forwards;
}

/* Media Queries */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .main-nav {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hero-content {
        padding: 2rem 0;
    }

    .section {
        padding: 3rem 0;
    }

    .logo-img {
        height: 40px;
    }
    
    .dishes-grid {
        grid-template-columns: 1fr;
    }
    
    .service-img {
        height: 200px;
    }

    .header {
        height: 80px;
    }
    
    .header.scrolled {
        height: 70px;
    }
    
    .hero {
        padding-top: 80px;
    }
}

/* County-Specific Styles */
/*
.polk-county-hero {
    background-image: url('../images/polk-county-hero.jpg');
}

.rutherford-county-hero {
    background-image: url('../images/rutherford-county-hero.jpg');
}

.cleveland-county-hero {
    background-image: url('../images/cleveland-county-hero.jpg');
}
*/

/* Service-Specific Styles */
.wedding-hero {
    background-image: url('../images/wedding-hero.jpg');
}

.business-lunch-hero {
    background-image: url('../images/business-lunch-hero.jpg');
}

.corporate-event-hero {
    background-image: url('../images/corporate-event-hero.jpg');
}

/* Utility Classes */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

/* Logo Styles */
.logo-img {
    height: 60px;
    width: auto;
    transition: height 0.3s ease;
}

.header.scrolled .logo-img {
    height: 50px;
}

/* Featured Dishes Section */
.dishes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.dish-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.dish-card:hover {
    transform: translateY(-10px);
}

.dish-image-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.dish-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.dish-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--light-color);
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.dish-card:hover .dish-img {
    transform: scale(1.05);
}

.dish-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.dish-description {
    display: block;
    font-size: 1rem;
    opacity: 0.9;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.dish-card:hover .dish-description {
    transform: translateY(0);
}

/* Footer styles */
.site-footer {
    background-color: #191919;
    padding: 2rem 0;
    color: var(--light-color);
}

.site-footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.powered-by {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.powered-by span {
    font-size: 0.9rem;
    opacity: 0.9;
}

.powered-by img {
    height: 30px;
    width: auto;
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Responsive footer adjustments */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .powered-by {
        justify-content: center;
    }
}

/* Update/Add these CTA styles */
.cta-container {
    margin-top: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 2.8rem;
    background-color: var(--primary-color);
    color: var(--light-color);
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.3rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.cta-button:hover {
    background-color: #191919;
    border-color: #191919;
    color: var(--light-color);
    transform: translateY(-3px);
}

.cta-subtext {
    color: var(--light-color);
    font-size: 1.1rem;
    margin-top: 1rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
    font-weight: 400;
    opacity: 0.9;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .cta-subtext {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

/* Contact/CTA Section styles */
.contact-section {
    background-color: var(--gray-light);
    text-align: center;
    padding: 5rem 2rem;
}

.section-title {
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.manager-intro {
    font-size: 1.2rem;
    color: var(--dark-color);
    font-weight: 400;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 2.8rem;
    background-color: var(--primary-color);
    color: var(--light-color);
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.3rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-section {
        padding: 3rem 1rem;
    }
    
    .section-title {
        margin-bottom: 1.25rem;
    }
    
    .manager-intro {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
}

/* Section Titles Enhancement */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    margin-top: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .service-image-wrapper,
    .dish-image-wrapper {
        height: 200px;
    }
    
    .service-content {
        padding: 1rem;
    }
    
    .dish-overlay {
        padding: 1.5rem 1rem;
    }
}

/* Menu Styling */
.menu-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Section Headers */
.menu-section h1 {
    font-size: 2.5rem;
    color: var(--dark-color);
    text-align: center;
    margin: 3rem 0 1rem;
}

/* Category Description */
.menu-section > p {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

/* Item Headers */
.menu-section h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    text-align: center;
    margin: 2rem 0 0.5rem;
}

/* Item Descriptions */
.menu-section h3 + p {
    text-align: center;
    font-size: 1.1rem;
    color: #565656;
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Pricing Lines */
.pricing-line {
    text-align: center;
    margin: 1rem 0 2rem;
    font-size: 1.1rem;
}

.pricing-line strong {
    color: var(--dark-color);
}

.pricing-line .discount {
    color: #565656;
    font-size: 80%;
}

/* Spacing */
.menu-item {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

/* Section Breaks */
.section-break {
    height: 2px;
    background: var(--primary-color);
    width: 100px;
    margin: 4rem auto;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .menu-section h1 {
        font-size: 2rem;
    }
    
    .menu-section h3 {
        font-size: 1.5rem;
    }
    
    .pricing-line {
        font-size: 1rem;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* About Section */
.about-section {
    background-color: #191919;
    padding: 5rem 2rem;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-section .section-title {
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--light-color);
}

.about-cta {
    font-size: 1.3rem !important;
    color: var(--primary-color) !important;
    font-weight: 500;
    text-align: center;
    font-style: italic;
}

/* Keep the section title underline */
.about-section .section-title::after {
    background-color: var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-text p {
        font-size: 1.1rem;
        line-height: 1.6;
    }
    
    .about-cta {
        font-size: 1.2rem !important;
    }
}

/* Serving Section Styles */
.serving-section {
    background-color: var(--gray-light);
    padding: 5rem 2rem;
}

.counties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.county-card {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.county-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.county-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.cities-list {
    list-style: none;
    padding: 0;
}

.cities-list li {
    color: var(--dark-color);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .counties-grid {
        grid-template-columns: 1fr;
    }
    
    .county-card {
        padding: 1.5rem;
    }
    
    .county-card h3 {
        font-size: 1.5rem;
    }
    
    .cities-list li {
        font-size: 1.1rem;
    }
}

/* Service Area Section */
.service-area-section {
    background-color: #191919;
    padding: 2rem 0;
    color: var(--light-color);
}

.service-area-intro {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--light-color);
}

.location-flow {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.location-group {
    margin-bottom: 1rem;
}

.location-group:last-child {
    margin-bottom: 0;
}

.location-group h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.location-pills {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.location-pill {
    margin: 0;
    padding: 0.2rem 0.5rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .location-group {
        margin: 2rem 0;
    }
    
    .location-pill {
        font-size: 1rem;
    }
    
    .location-flow {
        gap: 2rem;
    }
}

/* Add smooth scroll behavior to the whole page */
html {
    scroll-behavior: smooth;
}

/* Disable parallax on mobile devices for better performance */
@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
    }
}

.menu-cta-container {
    text-align: center;
    margin-top: 3rem;
}

/* The cta-button class already exists, so it will use those styles */

/* Menu Page Specific Styles */
.menu-page-content {
    padding-top: 120px; /* Accounts for fixed header */
    min-height: calc(100vh - 120px); /* Ensures content fills page */
    background-color: var(--light-color);
}

.menu-page-content .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 !important;
}

.menu-section {
    margin-bottom: 4rem;
    padding: 0 !important;
}

.menu-section h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.menu-description {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

/* Menu Styling */
.menu-category {
    color: var(--dark-color);
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.menu-category::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}



.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    width: 95%;
    margin: 0 auto;
    padding: 0 !important;
}

.menu-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.menu-content {
    width: 100%;
}

.menu-content h3 {
    color: var(--dark-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.menu-content .menu-description {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.pricing-options {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.price-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.3rem 0;
    border-bottom: 1px solid #eee;
    line-height: 1.2;
}

.serves {
    font-weight: 500;
    color: var(--dark-color);
    font-size: 1.1rem;
}

.price {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 1.1rem;
}

.discount {
    font-size: 0.9rem;
    color: #888;
    margin-left: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-content {
        padding: 1.5rem;
    }
    
    .menu-category {
        font-size: 2rem;
    }
}

/* Additional Menu Styles */
.menu-pricing {
    text-align: center;
    margin: 2rem 0;
    padding: 1rem;
    background: var(--gray-light);
    border-radius: 8px;
}

.menu-pricing p {
    margin: 0;
    font-size: 1.1rem;
    color: var(--dark-color);
}

/* For sections with shared pricing like sandwiches */
.menu-card.shared-pricing {
    padding: 1.5rem;
}

.menu-card.shared-pricing .pricing-options {
    display: none;
}

/* Enhance section spacing */
.menu-section {
    margin-bottom: 5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--gray-medium);
}

.menu-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

/* Add these new styles */
.section-banner {
    background-color: var(--dark-color);
    width: 100%;
    padding: 2rem 0;
    margin-bottom: 2rem;
}

.section-banner .menu-category {
    color: var(--light-color);
    margin-bottom: 0.5rem;
}

.section-banner .menu-description {
    color: var(--light-color);
    margin-bottom: 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.section-banner .menu-pricing {
    color: var(--light-color);
    margin-top: 1rem;
    font-size: 1.1rem;
}

.menu-card.full-width {
    grid-column: 1 / -1; /* Makes the card span full width */
}

.flavors-section {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-medium);
    text-align: center;
}

.flavors-section h4 {
    color: var(--dark-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.flavors-list {
    color: var(--dark-color);
    font-size: 1.1rem;
    line-height: 1.4;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Generic section styles */
.section {
    padding: 5rem 1rem;
}

.section-dark {
    background-color: #191919;
    color: var(--light-color);
}

.section-light {
    background-color: var(--gray-light);
}

.intro-section {
    padding: 6rem 2rem;
    background-color: var(--gray-light);
    text-align: center;
}

.intro-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.8;
    text-align: center;
}

.intro-content-centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    position: relative;
}

.decorative-line {
    height: 2px;
    width: 100px;
    background: var(--primary-color);
    margin: 2rem auto;
    opacity: 0.5;
}

.intro-content-centered p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 2rem 0;
}

.intro-content-centered .cta-button {
    margin-top: 2rem;
}

.about-section .about-content {
    text-align: center;
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text p {
    text-align: center;
}

/* Hamburger menu icon */
.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--light-color);
    position: relative;
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--light-color);
    transition: all 0.3s ease;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

/* Hamburger animation */
.mobile-menu-toggle.active .hamburger {
    background: transparent;
}

.mobile-menu-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.mobile-menu-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* Ensure proper spacing for fixed header */
body {
    padding-top: 80px; /* Adjust based on your header height */
}

@media (max-width: 768px) {
    body {
        padding-top: 60px; /* Smaller padding for mobile */
    }
}

.service-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card:hover {
    cursor: pointer;
}

/* Service Card Link Styles */
.service-card a {
    text-decoration: none;  /* Remove underline */
    color: inherit;         /* Keep original text color */
    display: block;         /* Make entire card clickable */
}

.service-card a:hover {
    text-decoration: none;  /* Ensure no underline on hover */
}

.service-content h3,
.service-content p {
    color: var(--dark-color);  /* Ensure text color stays consistent */
}

/* Optional: if you want to keep the hover effect on the entire card */
.service-card:hover {
    cursor: pointer;
    transform: translateY(-10px);  /* Keep existing hover animation */
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-arrow {
    margin-left: 4px;
    font-size: 0.8em;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(255, 255, 255, 0.98);
    min-width: 280px;
    padding: 1rem 0;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    color: var(--dark-color);
    padding: 0.75rem 1.5rem;
    display: block;
    text-decoration: none;
    text-align: left;
    transition: all 0.2s ease;
    white-space: nowrap;
    font-size: 0.95rem;
}

.dropdown-menu a:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--primary-color);
}

/* Adjust for scrolled header */
.site-header.scrolled .dropdown-menu {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Mobile Responsive Dropdown */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        transform: none;
        background: transparent;
        box-shadow: none;
        padding-left: 1rem;
        display: none;
        opacity: 1;
        visibility: visible;
        min-width: 100%;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        color: var(--light-color);
        padding: 0.5rem 1rem;
        text-align: center;
        font-size: 1rem;
    }

    .site-header.scrolled .dropdown-menu a {
        color: var(--dark-color);
    }

    .dropdown-arrow {
        transition: transform 0.3s ease;
    }

    .dropdown.active .dropdown-arrow {
        transform: rotate(180deg);
    }
}

@media (max-width: 768px) {
    /* Set consistent widths for ALL containers on mobile */
    .nav-container,
    .container,
    .hero-content,
    .about-content,
    .menu-content,
    .contact-form,
    .footer-content,
    .services-grid,
    .section-title,
    .intro-content-centered,
    .menu-grid,
    .dishes-grid,
    .counties-grid,
    .location-flow,
    .menu-section,
    .section-banner,
    .flavors-section,
    .intro-text,
    .about-text,
    .footer-grid {
        width: 95%;
        margin-left: auto;
        margin-right: auto;
        padding-left: 0;
        padding-right: 0;
        box-sizing: border-box;
    }

    /* Ensure sections don't overflow */
    .section,
    .about-section,
    .serving-section,
    .service-area-section,
    .intro-section {
        width: 100%;
        padding: 3rem 0;
    }
}

/* Base navbar styles */
.nav-container {
    width: 90%;
    margin: 0 auto;
    padding: 0;
}

@media (max-width: 768px) {
    .nav-container {
        width: 95%;
        margin: 0 auto;
        padding: 0;
    }

    /* Also ensure these containers match */
    .container,
    .hero-content,
    .about-content,
    .menu-content,
    .contact-form,
    .footer-content,
    .services-grid,
    .section-title,
    .intro-content-centered {
        width: 95%;
        margin: 0 auto;
        padding: 0;
    }
}

/* Add to body and html */
html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* Base container width */
.container,
.nav-container,
.hero-content,
.services-grid,
.menu-grid,
.about-content,
.contact-form,
.footer-content,
.section-title,
.intro-content-centered {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

/* Full width elements */
.hero,
.hero-background,
.hero-overlay,
.site-header {
    width: 100%;
}

@media (max-width: 768px) {
    /* Strict 95% width control */
    .container,
    .nav-container,
    .hero-content,
    .services-grid,
    .menu-grid,
    .about-content,
    .contact-form,
    .footer-content,
    .section-title,
    .intro-content-centered,
    .menu-section,
    .dishes-grid,
    .counties-grid,
    .location-flow,
    .flavors-section,
    .intro-text,
    .about-text,
    .footer-grid,
    .menu-card,
    .service-card,
    .county-card,
    .section-banner .menu-description,
    .section-banner .menu-category {
        width: 95%;
        max-width: 95%;
        margin-left: auto;
        margin-right: auto;
        padding-left: 1rem;
        padding-right: 1rem;
        box-sizing: border-box;
    }

    /* Keep these elements 100% width */
    .hero,
    .hero-background,
    .hero-overlay,
    .site-header {
        width: 100%;
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    /* Ensure content sections don't overflow */
    .section,
    .about-section,
    .serving-section,
    .service-area-section,
    .intro-section {
        width: 100%;
        max-width: 100%;
        padding: 3rem 0;
        overflow: hidden;
    }
}

/* Fix 1: Update container widths and padding */
.container,
.nav-container,
.hero-content,
.services-grid,
.menu-grid,
.about-content,
.contact-form,
.footer-content,
.section-title,
.intro-content-centered {
    width: 90%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
    box-sizing: border-box;
}

/* Fix 2: Update mobile media query */
@media (max-width: 768px) {
    .container,
    .nav-container,
    .hero-content,
    .services-grid,
    .menu-grid,
    .about-content,
    .contact-form,
    .footer-content,
    .section-title,
    .intro-content-centered,
    .menu-section,
    .dishes-grid,
    .counties-grid,
    .location-flow,
    .flavors-section,
    .intro-text,
    .about-text,
    .footer-grid {
        width: 90%;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding-left: 1rem;
        padding-right: 1rem;
        box-sizing: border-box;
    }

    /* Fix 3: Remove conflicting padding on service cards */
    .service-card {
        padding-left: 0;
        padding-right: 0;
    }

    /* Fix 4: Ensure grid items don't overflow */
    .services-grid,
    .dishes-grid {
        width: 90%;
        padding: 0;
    }
}

/* Fix 5: Update base HTML and body styles */
html, 
body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
}

/* Fix 1: Update viewport handling */
html, 
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* Fix 2: Update service cards and images */
.service-card {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.service-image-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.service-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Fix 3: Update container widths */
@media (max-width: 768px) {
    .container,
    .nav-container,
    .hero-content,
    .services-grid,
    .dishes-grid {
        width: 90%;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding: 0;
        box-sizing: border-box;
    }

    /* Fix grid layouts */
    .services-grid,
    .dishes-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Core fixes for mobile viewport */
@media (max-width: 768px) {
    /* Force content to stay within viewport */
    body {
        width: 100vw;
        max-width: 100vw;
        overflow-x: hidden;
        position: relative;
        margin: 0;
        padding: 0;
    }

    /* Fix container width */
    .container {
        width: 92%;
        margin-left: auto;
        margin-right: auto;
        padding: 0;
        overflow: hidden;
    }

    /* Fix service cards */
    .services-grid {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0;
        margin: 0;
    }

    .service-card {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    /* Fix images */
    .service-image-wrapper {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .service-img {
        width: 100%;
        height: auto;
    }

    /* Fix hero section */
    .hero-content {
        width: 92%;
        margin-left: auto;
        margin-right: auto;
        padding: 0;
    }
}

/* Update or add this CSS */
.featured-section {
    background: none; /* Remove any background color */
}

/* OR if it's coming from .section */
.section.featured-section {
    background: none;
}

/* Service Area Spacing Fixes */
.service-area-section {
    padding: 2rem 0;
}

.service-area-section h2 {
    margin-bottom: 0.5rem;  /* Reduce space after main title */
}

.service-area-intro {
    margin-bottom: 1rem;  /* Reduce space after intro text */
}

.location-group {
    margin-bottom: 1rem;  /* Significantly reduce space between county sections */
}

.location-group:last-child {
    margin-bottom: 0;  /* Remove margin from last county group */
}

.location-group h3 {
    color: var(--primary-color);  /* Keep the orange county names */
    margin-bottom: 0.5rem;  /* Reduce space between county name and cities */
}

/* City names spacing */
.location-pills {
    display: flex;
    gap: 1rem;  /* Space between city names */
    flex-wrap: wrap;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.location-pill {
    margin: 0;  /* Remove any default margins */
    padding: 0.2rem 0.5rem;
}

@media (max-width: 768px) {
    /* Much tighter mobile spacing */
    .service-area-section {
        padding: 1rem 0;
    }
    
    .service-area-section h2.section-title {
        margin-bottom: 0.5rem;
    }
    
    .service-area-intro {
        margin-bottom: 1rem;
    }
    
    /* Drastically reduce space between counties */
    .location-group {
        margin: 0.75rem 0; /* Very minimal spacing */
        padding: 0;
    }
    
    .location-group h3 {
        margin: 0.25rem 0; /* Minimal spacing around county names */
    }
    
    /* Remove any extra spacing that might be inherited */
    .location-flow {
        display: flex;
        flex-direction: column;
        gap: 0.75rem; /* Very small gap between sections */
    }
    
    .location-pills {
        margin: 0;
        padding: 0;
    }
}

/* Menu page specific styles */
.menu-page-content {
    padding-top: 80px;
}

.menu-section {
    margin-bottom: 4rem;
}

.section-banner {
    background: #000;
    color: #fff;
    padding: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

/* Menu grid layout */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    width: 95%;
    margin: 0 auto;
}

.menu-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
}

.menu-content {
    width: 100%;
}

/* Full width card for wings section */
.menu-card.full-width {
    grid-column: 1 / -1;
}

/* Tablet breakpoint */
@media (max-width: 992px) {
    .menu-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

/* Mobile breakpoint */
@media (max-width: 576px) {
    .menu-grid {
        width: 95%;
        grid-template-columns: 1fr;
        margin-left: auto;
        margin-right: auto;
        padding-left: 0;
        padding-right: 0;
    }
}

/* Menu grid layout - base styles */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    width: 95%;
    margin: 0 auto;
    padding: 0;
}

.menu-card {
    width: 100%;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    box-sizing: border-box;
}

/* Override any container width restrictions */
@media (max-width: 768px) {
    .menu-grid,
    .menu-section,
    .section-banner {
        width: 95% !important; /* Force 95% width */
        max-width: 95% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .menu-card {
        width: 100% !important;
        margin: 0 !important;
        padding: 1.5rem !important;
    }
}

/* Add these styles to handle external padding */
@media (max-width: 576px) {
    .menu-grid,
    .menu-section {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

/* Add these styles for mobile h2 spacing */
@media (max-width: 576px) {
    .section-title {
        padding-bottom: 1.5rem; /* Add space above the line */
    }
    
    .section-title::after {
        bottom: 0.5rem; /* Adjust line position */
    }
}