:root {
    --green: #6db33f;
    --dark-green: #4a8a28;
    --red: #d42b2b;
    --yellow: #f5c518;
    --dark: #1a1a1a;
    --white: #fff;
    --light-bg: #f4f9ee;
    --card-bg: #6db33f;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    background-color: #f0f4ec;
    background-image: linear-gradient(rgba(244, 249, 238, 0.92), rgba(240, 244, 236, 0.94)), url('/Images/everything.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--dark);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    flex: 1 0 auto;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

/*header {
    position: sticky;
    top: 0;
    z-index: 1000;
}*/

/* NAV */
nav {
    background: var(--white);
    border-bottom: 3px solid var(--green);
    padding: 14px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-circle {
    width: 56px;
    height: 56px;
    background: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.logo-pizza {
    font-size: 30px;
}

.logo-text {
    font-family: 'Fredoka One', cursive;
    font-size: 1.7rem;
    color: var(--green);
    line-height: 1;
}

    .logo-text span {
        color: var(--dark);
    }

.nav-links {
    display: flex;
    gap: 8px;
    list-style: none;
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border: 2px solid #d2e3c3;
    background: white;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 20px;
    height: 2px;
    background: var(--dark-green);
    border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

nav.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

nav.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
}

nav.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

    .nav-links a {
        text-decoration: none;
        font-weight: 700;
        font-size: 0.95rem;
        padding: 8px 20px;
        border-radius: 8px;
        border: 2px solid #ccc;
        color: var(--dark);
        transition: all 0.2s;
        cursor: pointer;
        white-space: nowrap;
    }

        .nav-links a.active, .nav-links a:hover {
            background: var(--green);
            color: white;
            border-color: var(--green);
        }

/* PAGES */
.page {
    display: none;
}

    .page.active {
        display: block;
    }

/* HOME PAGE */
.hero-banner {
    color: white;
    padding: 28px 40px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-banner.banner-home {
    background:
        linear-gradient(rgba(20, 20, 20, 0.6), rgba(20, 20, 20, 0.7)),
    url('/Images/Uploads/pepperoni%20sausage.png') center/cover no-repeat;
}

    .hero-banner::before {
        content: '';
        position: absolute;
        top: -30px;
        left: -30px;
        right: -30px;
        bottom: -30px;
        background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 60%), radial-gradient(circle at 80% 50%, rgba(255,255,255,0.06) 0%, transparent 60%);
    }

.tagline {
    font-family: 'Fredoka One', cursive;
    font-size: 2.2rem;
    letter-spacing: 1px;
    position: relative;
}

.home-hero-inner {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.hero-kicker {
    display: inline-block;
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}

.hero-subtitle {
    max-width: 680px;
    margin: 14px auto 0;
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.92;
}

.hero-actions {
    margin-top: 22px;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 148px;
    text-decoration: none;
    border-radius: 10px;
    padding: 9px 18px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.hero-btn:hover {
    transform: translateY(-1px);
}

.hero-btn-primary {
    background: var(--yellow);
    color: var(--dark);
    box-shadow: 0 4px 14px rgba(245,197,24,0.35);
}

.hero-btn-secondary {
    background: rgba(255,255,255,0.16);
    color: white;
    border: 2px solid rgba(255,255,255,0.38);
}

.hero-btn-secondary:hover {
    background: rgba(255,255,255,0.25);
}

.home-intro-strip {
    max-width: 860px;
    margin: 22px auto 0;
    background: white;
    border: 2px solid #e3edd7;
    border-radius: 999px;
    text-align: center;
    padding: 10px 16px;
    font-weight: 700;
    color: var(--dark-green);
    box-shadow: 0 3px 12px rgba(0,0,0,0.05);
}

.home-intro-strip p {
    margin: 0;
    letter-spacing: 0.3px;
}

    .tagline span {
        color: var(--yellow);
    }

.dot-line {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin: 10px 0 4px;
}

    .dot-line span {
        width: 8px;
        height: 8px;
        background: var(--yellow);
        border-radius: 50%;
        opacity: 0.8;
    }

/* LOCATION CARDS */
.locations-section {
    padding: 40px;
    display: flex;
    gap: 28px;
    justify-content: center;
    flex-wrap: wrap;
}

.location-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 28px 32px 24px;
    color: white;
    width: 340px;
    box-shadow: 0 6px 24px rgba(109,179,63,0.25);
    position: relative;
}

    .location-card h2 {
        font-family: 'Fredoka One', cursive;
        font-size: 1.7rem;
        margin-bottom: 6px;
    }

.location-card-professional {
    border: 1px solid rgba(255,255,255,0.35);
}

.location-photo-slot {
    width: 100%;
    height: 170px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 14px;
    border: 1px solid rgba(255,255,255,0.45);
    background: rgba(255,255,255,0.14);
}

.location-photo-slot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.location-card-professional .location-tag {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 0.74rem;
    font-weight: 700;
    margin: 2px 0 10px;
    letter-spacing: 0.5px;
}

.location-note {
    font-size: 0.82rem;
    opacity: 0.85;
    margin-bottom: 16px;
    font-style: italic;
}

.location-detail {
    margin: 8px 0;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    gap: 6px;
}

    .location-detail strong {
        min-width: 72px;
    }

.view-menu-btn {
    display: inline-block;
    margin-top: 18px;
    background: white;
    color: var(--dark-green);
    font-family: 'Fredoka One', cursive;
    font-size: 1rem;
    padding: 8px 22px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    text-decoration: underline;
    font-weight: 700;
    transition: background 0.2s;
}

    .view-menu-btn:hover {
        background: var(--yellow);
        color: var(--dark);
    }

.location-card-professional .view-menu-btn {
    text-decoration: none;
    padding: 9px 18px;
}

.pizza-img-corner {
    position: absolute;
    right: 16px;
    bottom: 16px;
    font-size: 4rem;
    opacity: 0.18;
}

/* CALL BANNER */
.call-banner {
    background: var(--dark-green);
    color: white;
    text-align: center;
    padding: 18px 40px;
    font-family: 'Fredoka One', cursive;
    font-size: 1.4rem;
    letter-spacing: 1px;
}

    .call-banner span {
        color: var(--yellow);
        font-size: 1.6rem;
    }

/* MENU PAGE */
.menu-page-header {
    position: relative;
    overflow: hidden;
/*    background: linear-gradient(135deg, var(--dark-green) 0%, #355e1d 100%);*/
    color: white;
    padding: 22px 40px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.menu-page-header.banner-bc,
.menu-page-header.banner-bc-pizza,
.menu-page-header.banner-bc-other,
.menu-page-header.banner-ps,
.menu-page-header.banner-ps-pizza,
.menu-page-header.banner-ps-other,
.menu-page-header.banner-catering {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

    .menu-page-header.banner-bc,
    .menu-page-header.banner-bc-pizza,
    .menu-page-header.banner-bc-other {
        background-image: 
            linear-gradient(rgba(20, 20, 20, 0.6), rgba(20, 20, 20, 0.7)), 
            url('/Images/Uploads/pepperoni%20sausage.png');
    }

    .menu-page-header.banner-ps,
    .menu-page-header.banner-ps-pizza,
    .menu-page-header.banner-ps-other {
        background-image: 
            linear-gradient(rgba(20, 20, 20, 0.6), rgba(20, 20, 20, 0.7)), 
            url('/Images/Uploads/pepperoni%20and%20menu.png');
    }

    .menu-page-header.banner-catering {
        background-image: 
            linear-gradient(rgba(20, 20, 20, 0.6), rgba(20, 20, 20, 0.7)), 
            url('/Images/Uploads/pepperonit.jpg');
    }

.menu-page-header::before {
    content: '';
    position: absolute;
    inset: 0;
/*    background: linear-gradient(90deg, rgba(11, 43, 24, 0.45), rgba(11, 43, 24, 0.15));*/
    pointer-events: none;
}

.menu-page-header > * {
    position: relative;
    z-index: 1;
}

    .menu-page-header h1 {
        font-family: 'Fredoka One', cursive;
        font-size: 2rem;
    }

    .menu-page-header p {
        font-size: 0.95rem;
        opacity: 0.85;
    }

.back-btn {
    background: rgba(255,255,255,0.15);
    color: white;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 8px;
    padding: 6px 16px;
    font-family: 'Fredoka One', cursive;
    font-size: 1rem;
    cursor: pointer;
    margin-right: auto;
    transition: background 0.2s;
}

    .back-btn:hover {
        background: rgba(255,255,255,0.3);
    }

.menu-content {
    max-width: 960px;
    margin: 0 auto;
    padding: 36px 24px;
}
.download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    margin-bottom: 18px;
    border-radius: 999px;
    border: 2px solid #d8e6cb;
    background: linear-gradient(135deg, #ffffff 0%, #f5fbe8 100%);
    color: var(--dark-green);
    font-family: 'Fredoka One', cursive;
    font-size: 0.95rem;
    letter-spacing: 0.4px;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
    box-shadow: 0 4px 14px rgba(21, 34, 13, 0.08);
}

.download-btn:hover {
    border-color: var(--green);
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(21, 34, 13, 0.12);
}

.download-btn:focus-visible {
    outline: 3px solid rgba(109, 179, 63, 0.35);
    outline-offset: 2px;
}

.preview-notice {
    background: #fff8e1;
    border: 2px solid var(--yellow);
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 0.86rem;
    color: #6b5600;
    margin-bottom: 18px;
    font-weight: 700;
}

.price-strike {
    text-decoration: line-through;
    text-decoration-color: var(--dark);
    text-decoration-thickness: 3px;
}

.special-card {
    background: white;
    border-radius: 14px;
    padding: 18px 20px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    border-left: 6px solid var(--green);
    margin-bottom: 24px;
}

.special-card .special-label {
    margin: 0;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--dark-green);
}

.special-card h2 {
    margin: 4px 0;
    font-family: 'Fredoka One', cursive;
    color: var(--dark);
    font-size: 1.4rem;
}

.special-card .special-price {
    margin: 0;
    font-family: 'Fredoka One', cursive;
    color: var(--red);
    font-size: 1.1rem;
}

.special-description {
    margin: 0;
    color: #5b5b5b;
    font-size: 0.88rem;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-specials-shell {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    align-items: stretch;
    gap: 10px;
    margin-bottom: 18px;
}

.featured-specials-carousel {
    position: relative;
    overflow: visible;
    padding-bottom: 18px;
    margin-bottom: 0;
}

.featured-specials-carousel .carousel-item {
    transition: opacity 0.25s ease-in-out;
}

.featured-specials-carousel .carousel-inner {
    overflow: visible;
}

.featured-specials-carousel .special-card {
    margin-bottom: 0;
}

.featured-specials-nav {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    border-radius: 999px;
    background: white;
    border: 2px solid #d6e8c7;
    box-shadow: 0 6px 16px rgba(26, 26, 26, 0.12);
    opacity: 1;
    transform: translateY(-9px);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.featured-specials-nav:hover {
    transform: translateY(-9px) scale(1.04);
    border-color: var(--green);
}

.featured-specials-nav:focus-visible {
    outline: 3px solid rgba(109, 179, 63, 0.35);
    outline-offset: 2px;
}

.featured-specials-nav .carousel-control-prev-icon,
.featured-specials-nav .carousel-control-next-icon {
    width: 14px;
    height: 14px;
    filter: invert(30%) sepia(26%) saturate(827%) hue-rotate(54deg) brightness(92%) contrast(90%);
}

.featured-specials-carousel .carousel-indicators {
    margin-bottom: 0;
    bottom: -2px;
}

.featured-specials-carousel .carousel-indicators [data-bs-target] {
    width: 26px;
    height: 5px;
    border-radius: 999px;
    border: 0;
    background-color: #c8dcb5;
    opacity: 0.9;
}

.featured-specials-carousel .carousel-indicators .active {
    background-color: var(--dark-green);
}

.menu-table {
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
}

.menu-table thead th {
    background: var(--green);
    color: white;
    border: none;
    font-family: 'Fredoka One', cursive;
    font-weight: 400;
    letter-spacing: 0.4px;
    padding: 12px 16px;
}

.menu-table tbody td {
    padding: 11px 16px;
    border-color: #eef2e7;
    font-weight: 600;
}

.menu-table tbody tr:hover {
    background: #f7fbf2;
}

.menu-section-title {
    font-family: 'Fredoka One', cursive;
    font-size: 1.5rem;
    color: var(--dark-green);
    border-bottom: 3px solid var(--green);
    padding-bottom: 6px;
    margin-bottom: 18px;
    margin-top: 32px;
    scroll-margin-top: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.menu-category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    overflow: visible;
    padding-bottom: 0;
    margin: 28px 0 14px;
    border-bottom: 0;
    scrollbar-width: none;
}

.menu-category-tabs::-webkit-scrollbar {
    display: none;
}

.menu-category-tabs::-webkit-scrollbar-track {
    display: none;
}

.menu-category-tabs::-webkit-scrollbar-thumb {
    display: none;
}

.menu-category-tabs::-webkit-scrollbar-thumb:hover {
    display: none;
}

.menu-category-tabs .nav-item {
    flex: 0 0 auto;
}

.menu-category-tabs .nav-link {
    border: 0;
    border-bottom: 3px solid transparent;
    border-radius: 0;
    color: var(--red);
    font-family: 'Fredoka One', cursive;
    font-size: 0.88rem;
    letter-spacing: 0.4px;
    padding: 8px 6px;
    line-height: 1.2;
    text-transform: uppercase;
    white-space: nowrap;
    background: transparent;
}

.menu-category-tabs .nav-link:hover {
    border-bottom-color: rgba(212, 43, 43, 0.45);
    color: var(--red);
    background: transparent;
}

.menu-category-tabs .nav-link.active {
    background: transparent;
    border-bottom-color: var(--red);
    color: var(--red);
}

.menu-tab-content {
    margin-top: 2px;
}

.menu-category-pane {
    margin-bottom: 16px;
}

.menu-category-label {
    font-family: 'Fredoka One', cursive;
    font-size: 1.08rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--red);
    padding: 0 0 6px;
    margin-top: 20px;
    scroll-margin-top: 10px;
    margin-bottom: 10px;
    border-bottom: 3px solid var(--red);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 32px;
}

.menu-item {
    display: grid;
    grid-template-columns: 114px minmax(0, 1fr);
    height: 126px;
    overflow: hidden;
    gap: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
    border-left: 4px solid var(--green);
}
.special-card-layout {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
}

.special-card-media {
    width: 120px;
    height: 96px;
    border-radius: 10px;
    overflow: hidden;
    background: #f1f3ec;
    border: 1px solid #dbe6cf;
}

.special-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.special-card-media:empty,
.menu-item .menu-item-media:empty {
    display: none;
}

.special-card-media:empty + .special-card-copy,
.menu-item .menu-item-media:empty + .text-cell {
    grid-column: 1 / -1;
}

.special-card-media-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c7b61;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.45px;
    text-transform: uppercase;
}

.special-card-copy {
    min-width: 0;
}

    .menu-item.red-accent {
        border-left-color: var(--red);
    }

    .menu-item.yellow-accent {
        border-left-color: var(--yellow);
    }

    .menu-item .menu-item-media {
        width: 114px;
        height: 126px;
        background: #e6efe0;
        border-right: 1px solid #dce9d1;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .menu-item .menu-item-fallback {
        color: #5e7652;
        font-size: 0.72rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.8px;
    }

    .menu-item .text-cell {
        box-sizing: border-box;
        padding: 12px 14px 14px;
        display: flex;
        flex-direction: column;
        align-content: flex-start;
        gap: 4px;
        min-width: 0;
        overflow: hidden;
    }

    .menu-item h4 {
        font-weight: 800;
        font-size: 1.08rem;
        margin: 0;
        color: var(--dark);
        letter-spacing: 0.35px;
        display: -webkit-box;
        line-clamp: 2;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .menu-item img {
        height: 126px;
        width: 100%;
        object-fit: cover;
        display: block;
    }

    .menu-item .price {
        font-family: 'Fredoka One', cursive;
        color: var(--red);
        font-size: 1.05rem;
        white-space: nowrap;
        margin: 0;
    }

    .menu-item .special-price {
        margin: 0;
    }

    .menu-item .desc {
        font-size: 0.78rem;
        color: #666;
        line-height: 1.35;
        margin: 0;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

.special-card-image-trigger {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
}

.special-card-image-trigger:focus-visible {
    outline: 3px solid rgba(109, 179, 63, 0.35);
    outline-offset: 3px;
}

.special-image-modal .modal-content {
    border-radius: 18px;
    overflow: hidden;
    border: 0;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.special-image-modal .modal-header {
    background: var(--dark-green);
    color: white;
    border-bottom: 0;
}

.special-image-modal .modal-title {
    font-family: 'Fredoka One', cursive;
    font-size: 1.05rem;
}

.special-image-modal .btn-close {
    filter: invert(1) brightness(2);
}

.special-image-modal .modal-body {
    padding: 0;
    background: #111;
}

.special-image-modal .modal-body img {
    width: 100%;
    max-height: 78vh;
    object-fit: contain;
    display: block;
    background: #111;
}

.pizza-sizes {
    background: white;
    border-radius: 12px;
    padding: 18px 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
    margin-bottom: 16px;
}

    .pizza-sizes table {
        width: 100%;
        border-collapse: collapse;
        font-size: 0.9rem;
    }

    .pizza-sizes th {
        background: var(--green);
        color: white;
        padding: 8px 12px;
        text-align: left;
        font-family: 'Fredoka One', cursive;
        font-size: 0.95rem;
    }

    .pizza-sizes td {
        padding: 8px 12px;
        border-bottom: 1px solid #eee;
        font-weight: 600;
    }

    .pizza-sizes tr:last-child td {
        border-bottom: none;
    }

.toppings-box {
    background: white;
    border-radius: 12px;
    padding: 14px 18px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
    margin-bottom: 16px;
    font-size: 0.88rem;
    color: #444;
    line-height: 1.7;
}

.specialty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 14px;
}

.specialty-item {
    background: white;
    border-radius: 12px;
    padding: 14px 16px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
}

    .specialty-item h4 {
        font-weight: 800;
        color: var(--red);
        font-size: 0.9rem;
    }

    .specialty-item .sp-prices {
        font-family: 'Fredoka One', cursive;
        color: var(--dark-green);
        font-size: 0.88rem;
        margin-top: 3px;
    }

    .specialty-item .desc {
        font-size: 0.75rem;
        color: #777;
        margin-top: 4px;
        line-height: 1.4;
    }

.pdf-section {
    margin-top: 48px;
    border-top: 3px dashed var(--green);
    padding-top: 30px;
}

.pdf-label {
    font-family: 'Fredoka One', cursive;
    font-size: 1.1rem;
    color: var(--dark-green);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pdf-embed-placeholder {
    background: #e8f5e1;
    border: 2px dashed var(--green);
    border-radius: 12px;
    height: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--dark-green);
    gap: 10px;
}

    .pdf-embed-placeholder .pdf-icon {
        font-size: 3rem;
    }

    .pdf-embed-placeholder p {
        font-weight: 700;
        font-size: 1rem;
    }

    .pdf-embed-placeholder small {
        font-size: 0.8rem;
        color: #777;
    }

/* CATERING PAGE */
.catering-hero {
    background: linear-gradient(135deg, var(--green) 0%, var(--dark-green) 100%);
    color: white;
    padding: 40px;
    text-align: center;
}

    .catering-hero h1 {
        font-family: 'Fredoka One', cursive;
        font-size: 3rem;
        color: white;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    .catering-hero p {
        font-size: 1.1rem;
        color: rgba(255,255,255,0.92);
        margin-top: 8px;
        font-style: italic;
    }

.catering-content {
    max-width: 960px;
    margin: 0 auto;
    padding: 36px 24px;
}

.catering-tabs {
    margin-top: 10px;
}

.catering-feed-note {
    background: #eef7e5;
    color: var(--dark-green);
    border-radius: 10px;
    border: 2px solid #d8e9c8;
    padding: 10px 14px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 14px;
}

.catering-service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px;
}

.catering-service-card {
    background: white;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
    border-left: 4px solid var(--green);
}

.catering-service-card h4 {
    margin: 0 0 6px;
    color: var(--dark-green);
    font-family: 'Fredoka One', cursive;
    font-size: 1.05rem;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.catering-service-card p {
    margin: 0 0 6px;
    color: #3f4a37;
    line-height: 1.5;
    font-size: 0.88rem;
}

.catering-service-card p:last-child {
    margin-bottom: 0;
}

.catering-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 28px;
}

.catering-item {
    background: white;
    border-radius: 12px;
    padding: 18px 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border-left: 5px solid var(--green);
}

    .catering-item h4 {
        font-family: 'Fredoka One', cursive;
        font-size: 1.1rem;
        color: var(--dark);
        text-transform: uppercase;
    }

    .catering-item .price {
        font-family: 'Fredoka One', cursive;
        color: var(--red);
        font-size: 1.3rem;
        margin: 4px 0;
    }

    .catering-item .desc {
        font-size: 0.82rem;
        color: #666;
        line-height: 1.5;
    }

.catering-note {
    background: #eef7e5;
    color: var(--dark-green);
    border-radius: 10px;
    border: 2px solid #d8e9c8;
    padding: 12px 18px;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 28px;
    text-align: center;
}

.sides-highlight {
    background: var(--dark-green);
    color: white;
    border-radius: 12px;
    padding: 18px 22px;
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.sides-highlight-item {
    flex: 1;
    min-width: 140px;
    text-align: center;
    border: 2px solid var(--white);
    border-radius: 8px;
    padding: 12px;
}

    .sides-highlight-item h4 {
        font-family: 'Fredoka One', cursive;
        color: var(--white);
        font-size: 1rem;
    }

    .sides-highlight-item p {
        font-size: 0.85rem;
        margin-top: 4px;
        color: #ccc;
    }

.catering-pizza-box {
    background: var(--dark-green);
    color: white;
    border-radius: 12px;
    padding: 20px 22px;
    margin-bottom: 20px;
}

    .catering-pizza-box h3 {
        font-family: 'Fredoka One', cursive;
        font-size: 1.3rem;
        margin-bottom: 12px;
        text-transform: uppercase;
    }

.pizza-deal {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.pizza-deal-card {
    background: rgba(255,255,255,0.15);
    border-radius: 8px;
    padding: 12px 16px;
    flex: 1;
    min-width: 180px;
}

    .pizza-deal-card p {
        font-size: 0.88rem;
        line-height: 1.7;
    }

    .pizza-deal-card .deal-price {
        font-family: 'Fredoka One', cursive;
        font-size: 1.3rem;
        color: var(--white);
    }

/* ORDER PAGE */
.order-hero {
    color: white;
    text-align: center;
    padding: 50px 40px;
}

    .order-hero.banner-order {
        background: 
            linear-gradient(rgba(20, 20, 20, 0.6), rgba(20, 20, 20, 0.7)), 
            url('/Images/Uploads/cheese%20sticks.png') center/cover no-repeat;
    }

    .order-hero h1 {
        font-family: 'Fredoka One', cursive;
        font-size: 2.6rem;
        color: white;
    }

    .order-hero p {
        font-size: 1.05rem;
        margin-top: 10px;
        color: rgba(255,255,255,0.9);
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.6;
    }

.order-cards {
    max-width: 860px;
    margin: 0 auto;
    padding: 40px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.home-social-strip {
    max-width: 960px;
    margin: 0 auto;
    padding: 18px 24px 6px;
    text-align: center;
}

.home-social-strip h3 {
    margin: 0 0 10px;
    font-family: 'Fredoka One', cursive;
    color: var(--dark-green);
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.home-social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.home-social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.86rem;
    border: 2px solid #e2e8db;
    color: #1f2c16;
    background: #f7faf2;
    transition: transform 0.18s ease, border-color 0.18s ease;
}

.home-social-link i {
    font-size: 1rem;
}

.home-social-link:hover {
    transform: translateY(-1px);
    border-color: var(--green);
}
.order-card {
    background: white;
    border-radius: 16px;
    padding: 28px 28px 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-top: 6px solid var(--green);
}

.order-location-photo {
    width: 100%;
    height: 150px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 14px;
    border: 1px solid #dce9d1;
}

.order-location-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

    .order-card h2 {
        font-family: 'Fredoka One', cursive;
        font-size: 1.5rem;
        color: var(--dark);
        margin-bottom: 8px;
    }

    .order-card .order-note {
        font-size: 0.82rem;
        color: #777;
        font-style: italic;
        margin-bottom: 16px;
    }

.phone-cta {
    background: var(--green);
    color: white;
    border-radius: 10px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

    .phone-cta .phone-icon {
        font-size: 1.6rem;
    }

    .phone-cta .phone-info strong {
        font-family: 'Fredoka One', cursive;
        font-size: 1.3rem;
        display: block;
        letter-spacing: 1px;
    }

    .phone-cta .phone-info small {
        font-size: 0.8rem;
        opacity: 0.85;
    }

.order-hours {
    font-size: 0.88rem;
    color: #555;
    margin-top: 12px;
    line-height: 1.6;
}

    .order-hours strong {
        color: var(--dark);
    }

.delivery-options {
    margin-top: 14px;
}

    .delivery-options h4 {
        font-weight: 800;
        font-size: 0.9rem;
        color: var(--dark);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 10px;
    }

.delivery-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f5f5f5;
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 10px;
    text-decoration: none;
    color: var(--dark);
    font-weight: 700;
    border: 2px solid #e0e0e0;
    transition: border-color 0.2s;
    cursor: pointer;
}

    .delivery-btn:hover {
        border-color: var(--green);
    }

    .delivery-btn .d-logo {
        font-size: 1.4rem;
        width: 32px;
        text-align: center;
    }

    .delivery-btn .d-info small {
        display: block;
        font-size: 0.75rem;
        color: #777;
        font-weight: 400;
    }

.call-only-notice {
    background: #fff8e1;
    border: 2px solid var(--yellow);
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 0.85rem;
    color: #6b5600;
    margin-top: 14px;
    font-weight: 600;
}

.catering-info-box {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
    border-left: 5px solid var(--green);
}

.catering-info-box em {
    color: #6c757d;
    font-size: 0.82rem;
}

/* ABOUT PAGE */
.about-hero {
    color: white;
    padding: 48px 40px;
    text-align: center;
}

    .about-hero.banner-about {
        background: 
            linear-gradient(rgba(20, 20, 20, 0.6), rgba(20, 20, 20, 0.7)), 
            url('/Images/Uploads/chicken%20bacon%20ranch%20with%20veggies.png') center/cover no-repeat;
    }

    .about-hero h1 {
        font-family: 'Fredoka One', cursive;
        font-size: 2.8rem;
        margin-bottom: 12px;
    }

    .about-hero p {
        font-size: 1.05rem;
        max-width: 540px;
        margin: 0 auto;
        line-height: 1.7;
        opacity: 0.9;
    }

.about-content {
    max-width: 860px;
    margin: 0 auto;
    padding: 40px 24px;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 36px;
}

.value-card {
    background: white;
    border-radius: 14px;
    padding: 22px 18px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

    .value-card .icon {
        font-size: 2.2rem;
        margin-bottom: 10px;
    }

    .value-card h3 {
        font-family: 'Fredoka One', cursive;
        font-size: 1.1rem;
        color: var(--dark-green);
        margin-bottom: 6px;
    }

    .value-card p {
        font-size: 0.82rem;
        color: #666;
        line-height: 1.5;
    }

.about-story {
    background: white;
    border-radius: 16px;
    padding: 28px 32px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    margin-bottom: 28px;
}

    .about-story h2 {
        font-family: 'Fredoka One', cursive;
        font-size: 1.6rem;
        color: var(--dark-green);
        margin-bottom: 14px;
    }

    .about-story p {
        font-size: 0.95rem;
        color: #444;
        line-height: 1.75;
        margin-bottom: 10px;
    }

    .about-outreach {
        background: white;
        border-radius: 16px;
        padding: 28px 32px;
        box-shadow: 0 2px 16px rgba(0,0,0,0.08);
        margin-bottom: 28px;
    }

    .about-outreach-header {
        margin-bottom: 24px;
    }

    .about-outreach h2 {
        font-family: 'Fredoka One', cursive;
        font-size: 1.6rem;
        color: var(--dark-green);
        margin-bottom: 8px;
    }

    .about-franchise {
        background: white;
        border-radius: 16px;
        padding: 28px 32px;
        box-shadow: 0 2px 16px rgba(0,0,0,0.08);
        margin-bottom: 28px;
    }

    .about-franchise-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        align-items: center;
    }

    .about-franchise-media {
        display: grid;
        gap: 16px;
    }

    .about-franchise-media img {
        width: 100%;
        border-radius: 16px;
        object-fit: cover;
        min-height: 190px;
        height: 220px;
    }

    .about-franchise-copy h2,
    .about-franchise-copy h3 {
        font-family: 'Fredoka One', cursive;
        color: var(--dark-green);
        margin-bottom: 12px;
    }

    .about-franchise-copy h2 {
        font-size: 1.6rem;
    }

    .about-franchise-copy h3 {
        font-size: 1.2rem;
    }

    .about-franchise-copy p {
        color: #444;
        line-height: 1.7;
        margin-bottom: 16px;
    }

    .about-franchise-copy ul {
        list-style: none;
        padding: 0;
        margin: 0 0 18px 0;
        display: grid;
        gap: 10px;
    }

    .about-franchise-copy ul li {
        padding-left: 30px;
        position: relative;
        color: #333;
        font-weight: 600;
    }

    .about-franchise-copy ul li::before {
        content: '✅';
        position: absolute;
        left: 0;
        top: 0;
    }

    .about-franchise-copy .franchise-cta {
        font-size: 0.98rem;
        color: #333;
        font-weight: 700;
    }

    .about-franchise-copy .franchise-cta a {
        color: var(--dark-green);
        text-decoration: underline;
    }

    .about-outreach p {
        font-size: 0.95rem;
        color: #444;
        line-height: 1.7;
        margin: 0;
        opacity: 0.9;
    }

    .about-carousel .carousel-item {
        border-radius: 18px;
        overflow: hidden;
        position: relative;
        min-height: 320px;
    }

    .about-carousel .carousel-item img {
        width: 100%;
        height: 420px;
        object-fit: cover;
    }

    .about-carousel .carousel-caption {
        background: rgba(0,0,0,0.45);
        border-radius: 14px;
        padding: 14px 16px;
        bottom: 18px;
    }

    .about-carousel .carousel-caption p {
        margin: 0;
        font-size: 0.95rem;
    }

    .about-carousel .carousel-indicators [data-bs-target] {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: #ddd;
    }

    .about-carousel .carousel-indicators .active {
        background-color: var(--dark-green);
    }

    .about-carousel .carousel-control-prev,
    .about-carousel .carousel-control-next {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.35);
        display: flex;
        align-items: center;
        justify-content: center;
        top: 50%;
        transform: translateY(-50%);
        opacity: 1;
    }

    .about-carousel .carousel-control-prev-icon,
    .about-carousel .carousel-control-next-icon {
        width: 24px;
        height: 24px;
        filter: none;
    }

    .about-social-links {
        list-style: none;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        padding: 0;
        margin: 6px 0 0;
    }

    .about-social-links a {
        display: inline-flex;
        align-items: center;
        padding: 8px 12px;
        border-radius: 8px;
        border: 2px solid #ecd8d8;
        text-decoration: none;
        font-weight: 800;
        color: #9f2121;
        background: #fff7f7;
    }

    .about-social-links a:hover {
        border-color: #d42b2b;
        color: #7e1717;
    }

.about-locations {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-loc-card {
    background: var(--card-bg);
    color: white;
    border-radius: 14px;
    padding: 22px 22px;
}

    .about-loc-card h3 {
        font-family: 'Fredoka One', cursive;
        font-size: 1.3rem;
        margin-bottom: 8px;
    }

    .about-loc-card p {
        font-size: 0.85rem;
        line-height: 1.7;
        opacity: 0.9;
    }

/* FOOTER */
footer {
    background: var(--dark);
    color: white;
    text-align: center;
    padding: 24px 40px;
    font-size: 0.88rem;
    color: #aaa;
    margin-top: auto;
}

.footer-social-links {
    margin-top: 12px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-social-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid #3a3a3a;
    background: #222;
    color: #f0f0f0;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.82rem;
}

.footer-social-btn i {
    font-size: 0.95rem;
}

.footer-social-btn:hover {
    color: white;
    border-color: #666;
    background: #2b2b2b;
}

    footer strong {
        color: var(--yellow);
        font-family: 'Fredoka One', cursive;
        font-size: 1.05rem;
    }

@media (max-width: 640px) {
    .order-cards, .about-values, .about-locations, .catering-grid {
        grid-template-columns: 1fr;
    }

    .locations-section {
        padding: 24px 16px;
    }

    .tagline {
        font-size: 1.4rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-kicker {
        font-size: 0.72rem;
    }

    .home-intro-strip {
        margin: 14px 16px 0;
        border-radius: 12px;
    }

    .home-social-strip {
        padding: 0 16px 4px;
    }

    .location-photo-slot {
        height: 150px;
    }

    .home-social-link {
        width: 100%;
        justify-content: center;
    }

    .menu-content, .catering-content, .about-content {
        padding: 24px 14px;
    }

    .about-franchise-grid {
        grid-template-columns: 1fr;
    }

    .about-franchise-media img {
        height: 200px;
    }

    body {
        background-attachment: scroll;
    }

    .about-carousel .carousel-item img {
        height: 260px;
    }

    .featured-specials-carousel {
        padding-bottom: 16px;
        margin-bottom: 14px;
    }

    .featured-specials-shell {
        grid-template-columns: 32px minmax(0, 1fr) 32px;
        gap: 8px;
        margin-bottom: 14px;
    }
    .special-card-layout {
        grid-template-columns: 90px minmax(0, 1fr);
        gap: 10px;
    }

    .special-card-media {
        width: 90px;
        height: 78px;
    }

    .featured-specials-nav {
        width: 32px;
        height: 32px;
        transform: translateY(-8px);
    }

    .featured-specials-nav:hover {
        transform: translateY(-8px) scale(1.04);
    }

    .featured-specials-nav .carousel-control-prev-icon,
    .featured-specials-nav .carousel-control-next-icon {
        width: 12px;
        height: 12px;
    }

    .menu-category-tabs {
        margin-top: 20px;
        gap: 6px;
    }

    .menu-category-tabs .nav-link {
        font-size: 0.8rem;
        padding: 7px 13px;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .menu-item {
        grid-template-columns: 92px minmax(0, 1fr);
        min-height: 128px;
    }

    .menu-item .menu-item-media {
        width: 92px;
        min-height: 128px;
    }

    .menu-item img {
        height: 128px;
    }

    .menu-item .text-cell {
        padding: 10px 12px;
    }

    nav {
        padding: 12px 14px;
    }

    .logo img {
        height: 84px;
        width: auto;
    }

    .nav-toggle {
        display: inline-flex;
        flex: 0 0 auto;
    }

    .nav-links {
        position: absolute;
        right: 14px;
        top: calc(100% + 8px);
        flex-direction: column;
        gap: 6px;
        background: white;
        border: 2px solid #dce9d1;
        border-radius: 12px;
        padding: 10px;
        width: min(220px, calc(100vw - 28px));
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
        z-index: 1001;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-6px);
        transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s;
    }

    nav.nav-open .nav-links {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-links a {
        display: block;
        width: 100%;
        font-size: 0.85rem;
        padding: 9px 12px;
        text-align: left;
    }

    .menu-item h4 {
        font-size: 0.96rem;
    }

    .menu-item .price {
        font-size: 0.95rem;
        margin-top: 4px;
    }

    .special-description {
        -webkit-line-clamp: 2;
        line-clamp: 2;
        font-size: 0.82rem;
    }
}

@media (max-width: 920px) {
    nav {
        padding: 12px 14px;
    }

    .logo img {
        height: 84px;
        width: auto;
    }

    .nav-toggle {
        display: inline-flex;
        flex: 0 0 auto;
    }

    .nav-links {
        position: absolute;
        right: 14px;
        top: calc(100% + 8px);
        flex-direction: column;
        gap: 6px;
        background: white;
        border: 2px solid #dce9d1;
        border-radius: 12px;
        padding: 10px;
        width: min(220px, calc(100vw - 28px));
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
        z-index: 1001;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-6px);
        transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s;
    }

    nav.nav-open .nav-links {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-links a {
        display: block;
        width: 100%;
        font-size: 0.85rem;
        padding: 9px 12px;
        text-align: left;
    }
}


/*Admin styling*/

/*Wanted to make the add item button less annoying but can't figure out a good way to do so :/ */
.admin-menu-create-btn {
/*    position: sticky;
    top: 0;
    z-index: 100;*/
}

.admin-table {
    border-collapse: collapse;
    border-spacing: 0;
}

    .admin-table td {
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .admin-table th {
        position: sticky;
        top: 0;
        z-index: 10;
        box-shadow: inset 0 -1px 0 #ccc;
    }

.shrink-to-fit {
    width: 1%;
    white-space: nowrap;
}

.image-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.gallery-item {
    margin: 5px;
    border: 1px solid #ccc;
    width: 180px
}

    .gallery-item:hover {
        border: 1px solid #777;
    }

    .gallery-item img {
        width: 100%;
        height: auto;
    }

    .gallery-item .desc {
        padding: 15px;
        text-align: start;
        overflow-wrap: break-word;
    }