/* ==========================================================================
   Old Shawnee Pizza - Clean CSS
   Matching original Elementor design
   ========================================================================== */

/* CSS Custom Properties */
:root {
    --color-primary: #ED0E0E;
    --color-primary-dark: #2d0001;
    --color-accent: #f6a623;
    --color-text: #3a3a3a;
    --color-text-light: #595959;
    --color-white: #ffffff;
    --color-black: #000000;
    --color-bg: #ffffff;
    --color-bg-alt: #f7f8f9;
    --color-bg-dark: #1a1a1a;

    --font-heading: 'Fjalla One', sans-serif;
    --font-body: 'Raleway', sans-serif;
    --font-accent: 'PT Sans Narrow', sans-serif;
    --font-roboto: 'Roboto', sans-serif;
    --font-roboto-slab: 'Roboto Slab', serif;
    --font-signika: 'Signika', sans-serif;

    --color-gold: #FFC754;
    --color-maroon: #8A2B2B;
    --color-cream: #F0EBD8;

    --max-width: 1000px;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;

    --transition: 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
}

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

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--color-black);
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    line-height: 1.2;
}

h1 {
    font-family: var(--font-accent);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 50px;
    color: var(--color-black);
}

h2 {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 36px;
}

h3 {
    font-family: var(--font-accent);
    font-weight: 400;
    font-size: 30px;
    color: var(--color-accent);
}

h4 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--color-accent);
    margin-bottom: var(--spacing-sm);
}

p {
    margin: 0 0 var(--spacing-md);
}

/* Utility Classes */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.skip-link {
    position: absolute;
    left: -9999px;
    z-index: 999;
    padding: 1em;
    background: var(--color-primary);
    color: var(--color-white);
}

.skip-link:focus {
    left: 0;
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
    background-color: var(--color-white);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 2px -2px rgba(0, 0, 0, 0.2);
}

.header-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo .logo-image {
    display: block;
    max-height: 60px;
    width: auto;
}

/* Navigation */
.main-navigation {
    display: flex;
    align-items: center;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-icon {
    display: block;
    width: 25px;
    height: 20px;
    position: relative;
}

.menu-icon span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--color-primary);
    position: absolute;
    left: 0;
    transition: var(--transition);
}

.menu-icon span:nth-child(1) { top: 0; }
.menu-icon span:nth-child(2) { top: 8px; }
.menu-icon span:nth-child(3) { top: 16px; }

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

.nav-menu li {
    position: relative;
}

.nav-menu > li > a {
    display: block;
    padding: 15px 25px;
    font-family: var(--font-heading);
    font-size: 28px;
    text-transform: uppercase;
    color: var(--color-black);
    transition: color var(--transition);
}

.nav-menu > li > a:hover,
.nav-menu > li > a.current {
    color: var(--color-primary);
}

/* Order Online CTA */
.nav-order-online {
    display: flex;
    align-items: center;
}

.nav-menu .nav-order-online > a,
.nav-menu .nav-order-online > button {
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: 4px;
    margin-left: 10px;
    padding: 3px 10px 1px;
    font-family: var(--font-heading);
    font-size: 28px;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
}

.nav-menu .nav-order-online > a:hover,
.nav-menu .nav-order-online > button:hover {
    background-color: #c40b0b;
    color: var(--color-white);
}

/* Dropdown Menu */
.has-submenu {
    position: relative;
}

.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-white);
    list-style: none;
    margin: 0;
    padding: 0;
    min-width: 250px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition);
    z-index: 100;
}

.has-submenu:hover .sub-menu,
.has-submenu:focus-within .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-menu li a {
    display: block;
    padding: 12px 25px;
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--color-black);
    border-bottom: 1px solid #eee;
    letter-spacing: 1px;
}

.sub-menu li:last-child a {
    border-bottom: none;
}

.sub-menu li a:hover {
    color: var(--color-primary);
    background: var(--color-bg-alt);
}

/* ==========================================================================
   Main Content
   ========================================================================== */
.menu-page {
    max-width: 100%;
    margin: 0 auto;
}

/* Menu Hero - Matching Elementor styling exactly */
.menu-hero {
    background-color: var(--color-black);
    position: relative;
    text-align: center;
    min-height: 378px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 20px;
}

.menu-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/osp-pizza.png');
    background-position: bottom center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.5;
    z-index: 1;
}

.menu-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.menu-hero h1 {
    font-family: var(--font-heading);
    font-size: 70px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1px;
    color: var(--color-white);
    margin: 0 0 50px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.btn-primary {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-family: var(--font-roboto);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all var(--transition);
}

.btn-primary:hover {
    background-color: var(--color-accent);
    color: var(--color-white);
    transform: scale(1.05);
}

/* Menu Navigation - Matching WordPress Elementor styling */
.menu-nav {
    background-color: var(--color-black);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 50;
}

.menu-nav ul {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    max-width: var(--max-width);
}

.menu-nav a {
    display: block;
    padding: 20px 25px;
    font-family: var(--font-heading);
    font-size: 23px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1px;
    color: var(--color-white);
    position: relative;
    transition: all var(--transition);
}

.menu-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background-color: transparent;
    transition: all var(--transition);
}

.menu-nav a:hover {
    color: var(--color-primary);
}

.menu-nav a.active {
    color: var(--color-primary);
}

.menu-section.full-width {
    max-width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header img {
    margin: 0 auto 20px;
    max-height: 80px;
}

.section-subtitle {
    font-family: var(--font-roboto-slab);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-black);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-note {
    font-family: var(--font-roboto);
    font-size: 16px;
    color: var(--color-black);
    margin-bottom: 10px;
}

/* Menu Grid - 3 columns */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.menu-item {
    padding: 10px;
}

.menu-item h4 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 10px;
}

.menu-item p {
    font-family: var(--font-roboto);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-text);
    line-height: 1.6;
    margin: 0;
}

/* Toppings Grid - 4 columns */
.toppings-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.topping-category h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: var(--color-black);
}

.topping-category p {
    font-family: var(--font-roboto);
    font-size: 16px;
    color: var(--color-black);
    line-height: 1.8;
}

.crust-options {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #ddd;
}

.crust-options h4 {
    font-family: var(--font-heading);
    font-size: 22px;
    margin-bottom: 10px;
}

.crust-options p {
    font-family: var(--font-roboto);
    font-size: 16px;
    letter-spacing: 1px;
}

/* Pizza Sizes Section - black background */
.pizza-sizes {
    background-color: var(--color-black);
    padding: 60px 20px;
    max-width: 100%;
    position: relative;
}


.pizza-sizes > * {
    position: relative;
    z-index: 1;
}

.pizza-sizes .sizes-grid {
    max-width: var(--max-width);
    margin: 0 auto;
}

.sizes-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: end;
    gap: 40px;
    text-align: center;
}

.sizes-scroll-wrapper {
    position: relative;
}

.sizes-arrow {
    display: none;
}

.size-item img {
    margin: 0 auto 20px;
    max-width: 187px;
}

.size-item svg {
    display: block;
    margin: 0 auto 10px;
    max-width: 100%;
    height: auto;
}

.size-item h4 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--color-white);
    margin-bottom: 10px;
}

.size-item p {
    font-family: var(--font-roboto);
    color: var(--color-white);
    font-size: 16px;
}

/* Menu Section Backgrounds - Matching original Elementor design with brick textures */
.menu-section {
    position: relative;
    max-width: 100%;
    padding: 60px 20px;
}

/* ==========================================================================
   LUNCH SECTION - Brick background with golden overlay (multiply blend)
   ========================================================================== */
#lunch {
    background-image: url('../images/old-brick.png');
    background-position: center center;
    background-repeat: repeat;
    position: relative;
    padding: 30px 20px;
}

#lunch::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-gold);
    opacity: 0.81;
    mix-blend-mode: darken;
    pointer-events: none;
}

#lunch > * {
    position: relative;
    z-index: 1;
}

#lunch .section-header {
    margin-bottom: 20px;
}

#lunch .section-subtitle {
    font-family: var(--font-heading);
    font-size: 23px;
    font-weight: bold;
    color: var(--color-black);
    text-transform: uppercase;
    letter-spacing: 0.1px;
    margin-bottom: 0;
}

#lunch .section-note {
    font-family: var(--font-signika);
    font-size: 18px;
    font-weight: 400;
    color: var(--color-black);
    line-height: 27px;
    margin-bottom: 20px;
}

#lunch .menu-grid {
    gap: 20px;
}

#lunch .menu-item {
    padding: 10px;
}

#lunch .menu-item h4 {
    font-family: var(--font-heading);
    font-size: 23px;
    font-weight: 700;
    color: #4A1010;
    text-transform: uppercase;
    letter-spacing: 0.1px;
    line-height: 23px;
    margin-bottom: 8px;
}

#lunch .menu-item p {
    font-family: var(--font-signika);
    font-size: 18px;
    color: var(--color-black);
    line-height: 27px;
    margin: 0;
}

/* ==========================================================================
   STARTERS SECTION - Golden background with brick texture overlay
   ========================================================================== */
#starters {
    background-color: var(--color-gold);
    position: relative;
    padding: 0 20px 30px;
}

#starters::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/brick-wall.png');
    background-position: bottom left;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.08;
    mix-blend-mode: darken;
    pointer-events: none;
}

#starters > * {
    position: relative;
    z-index: 1;
}

/* Brownish header band behind STARTERS title */
#starters .section-header {
    background-color: rgba(179, 107, 58, 0.62);
    max-width: none;
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px;
    padding: 20px;
    margin-bottom: 30px;
    text-align: center;
}

#starters .section-header img {
    margin-bottom: 0;
}

#starters .menu-grid {
    gap: 20px;
}

#starters .menu-item {
    padding: 10px;
}

#starters .menu-item h4 {
    font-family: var(--font-heading);
    font-size: 23px;
    font-weight: 700;
    color: #8A2B2B;
    text-transform: uppercase;
    letter-spacing: 0.1px;
    line-height: 23px;
    margin-bottom: 8px;
}

#starters .menu-item p {
    font-family: var(--font-signika);
    font-size: 18px;
    color: var(--color-black);
    line-height: 27px;
    margin: 0;
}

/* ==========================================================================
   GREENS SECTION - Beige/cream background
   ========================================================================== */
#greens {
    background-color: var(--color-cream);
    position: relative;
}

#greens::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/bricks-btm-left.png');
    background-position: bottom left;
    background-repeat: no-repeat;
    background-size: 100% auto;
    opacity: 0.3;
    pointer-events: none;
}

#greens > * {
    position: relative;
    z-index: 1;
}

#greens .menu-item h4 {
    color: #8E3034;
}

#greens .menu-item p {
    color: var(--color-black);
}

/* ==========================================================================
   BAKED PASTAS SECTION - Dark maroon/burgundy background
   ========================================================================== */
#bakedpastas {
    background-color: var(--color-maroon);
    position: relative;
}

#bakedpastas > * {
    position: relative;
    z-index: 1;
}

#bakedpastas .section-note {
    color: var(--color-white);
}

#bakedpastas .menu-item h4 {
    color: var(--color-white);
}

#bakedpastas .menu-item p {
    color: var(--color-white);
}

/* ==========================================================================
   SANDWICHES SECTION - Beige/cream background with brick texture
   ========================================================================== */
#sandwiches {
    background-color: var(--color-cream);
    position: relative;
}

#sandwiches::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/brick-top-rt.png');
    background-position: top left;
    background-repeat: no-repeat;
    background-size: 100% auto;
    opacity: 0.3;
    pointer-events: none;
}

#sandwiches > * {
    position: relative;
    z-index: 1;
}

#sandwiches .section-note {
    color: var(--color-black);
}

#sandwiches .menu-item h4 {
    color: var(--color-black);
}

#sandwiches .menu-item p {
    color: var(--color-black);
}

/* ==========================================================================
   KC CRACKER CRUST HEADER SECTION - Golden (#FFC754)
   ========================================================================== */
/* ==========================================================================
   KC CRACKER CRUST SECTION - Golden (#FFC754)
   ========================================================================== */
.kccracker-toppings {
    background-color: var(--color-gold);
    position: relative;
}

#kccracker .section-note {
    color: var(--color-black);
}

.kccracker-toppings::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/bricks-btm-left.png');
    background-position: bottom left;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.08;
    mix-blend-mode: darken;
    pointer-events: none;
}

.kccracker-toppings > * {
    position: relative;
    z-index: 1;
}

.kccracker-toppings .topping-category h4 {
    color: var(--color-black);
}

.kccracker-toppings .topping-category p {
    color: var(--color-black);
}

.kccracker-toppings .crust-options h4 {
    color: var(--color-black);
}

.kccracker-toppings .crust-options p {
    color: var(--color-black);
}

/* ==========================================================================
   SPECIALTY PIZZAS SECTION - Beige/cream background
   ========================================================================== */
#specialtypizzas {
    background-color: var(--color-cream);
    position: relative;
}

#specialtypizzas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/brick-bottom-lt.png');
    background-position: bottom left;
    background-repeat: no-repeat;
    background-size: 50% auto;
    opacity: 0.3;
    pointer-events: none;
}

#specialtypizzas > * {
    position: relative;
    z-index: 1;
}

#specialtypizzas .menu-item h4 {
    color: var(--color-black);
}

#specialtypizzas .menu-item p {
    color: var(--color-black);
}

/* ==========================================================================
   DESSERTS SECTION - Dark red (#8A2B2B)
   ========================================================================== */
#desserts {
    background-color: var(--color-maroon);
    position: relative;
}

#desserts > * {
    position: relative;
    z-index: 1;
}

#desserts .menu-item h4 {
    color: var(--color-white);
}

#desserts .menu-item p {
    color: var(--color-cream);
}

/* Content containers */
.menu-section .section-header,
.menu-section .menu-grid,
.menu-section .toppings-grid,
.menu-section .crust-options {
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background-color: var(--color-white);
    padding: 20px;
    text-align: center;
    border-top: 1px solid #eee;
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.site-footer p {
    margin: 0;
    color: var(--color-black);
    font-size: 16px;
}

/* Back to Top Button */

/* ==========================================================================
   Home Page Styles
   ========================================================================== */

/* Home Hero */
.home-hero {
    position: relative;
    min-height: 378px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-black);
    overflow: hidden;
}

.home-hero-overlay {
    position: absolute;
    inset: 0;
    background-image: url('../images/cross-roads.jpeg');
    background-position: bottom center;
    background-size: cover;
    opacity: 0.5;
}

.home-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 40px 20px;
}

.home-hero-content h1 {
    font-family: var(--font-heading);
    font-size: 70px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1px;
    color: var(--color-white);
    margin: 0;
}

/* Home Info Section */
.home-info {
    background-color: var(--color-white);
    padding: 30px 0 50px;
}

.home-info-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 30px;
}

.home-info-title {
    font-family: var(--font-heading);
    font-size: 43px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1px;
    color: var(--color-black);
    text-align: center;
    padding: 30px 20px 10px;
    margin: 0;
}

.home-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 20px 40px 40px;
    max-width: 700px;
    margin: 0 auto;
}

.home-info-details {
    font-family: var(--font-signika);
    font-size: 18px;
    color: var(--color-black);
    text-align: center;
}

.home-location-name {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-primary);
    margin: 0 0 4px;
}

.home-address {
    margin-bottom: 0;
}

.home-address a {
    color: inherit;
    text-decoration: none;
}

.home-address a:hover {
    color: var(--color-primary);
}

.home-hours {
    margin-bottom: 1.5em;
}

.home-phone a {
    font-family: var(--font-signika);
    font-size: 20px;
    color: var(--color-black);
    text-decoration: none;
    font-weight: 500;
}

.home-phone a:hover {
    color: var(--color-primary);
}

.btn-dark {
    display: inline-block;
    background-color: var(--color-black);
    color: var(--color-white);
    font-family: var(--font-roboto);
    font-weight: 500;
    font-size: 18px;
    padding: 15px 30px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background-color var(--transition);
}

.btn-dark:hover {
    background-color: #333;
    color: var(--color-white);
}

.home-info-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-info-logo img {
    max-width: 78%;
    height: auto;
}

/* Home About Section */
.home-about {
    position: relative;
    padding: 30px 0;
    color: var(--color-white);
    overflow: hidden;
}

.home-about-overlay {
    position: absolute;
    inset: 0;
    background-image: url('../images/osp-sign.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.97;
}

.home-about-content {
    position: relative;
    z-index: 1;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 30px;
}

.home-about-content h1 {
    font-family: var(--font-heading);
    font-size: 43px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1px;
    color: var(--color-white);
    text-align: center;
    margin-top: 0;
}

.home-about-content p {
    font-family: var(--font-roboto);
    font-size: 20px;
    font-weight: 400;
    color: var(--color-white);
    line-height: 1.6;
}

/* ==========================================================================
   Contact Page Styles
   ========================================================================== */

/* Contact Hero */
.contact-hero {
    position: relative;
    min-height: 378px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-black);
    overflow: hidden;
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background-image: url('../images/shawnee-location.png');
    background-position: center center;
    background-size: cover;
    opacity: 0.5;
}

.catering-hero .contact-hero-overlay {
    background-image: url('../images/catering.png');
    background-position: center center;
    background-size: cover;
    opacity: 0.5;
}

.contact-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 40px 20px;
}

.contact-hero-content h1 {
    font-family: var(--font-heading);
    font-size: 70px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1px;
    color: var(--color-white);
    margin: 0;
}

/* Contact Section */
.contact-section {
    background-color: var(--color-cream);
    padding: 30px 0 110px;
    position: relative;
}

.contact-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 30px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 20px 0;
}

.contact-locations {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-top: 20px;
}

.contact-location {
    font-family: var(--font-signika);
    font-size: 23px;
    color: var(--color-black);
}

.contact-location h3 {
    font-family: var(--font-heading);
    color: var(--color-black);
    margin: 0 0 5px;
}

.contact-location p {
    margin: 0 0 5px;
}

.contact-phone a {
    color: var(--color-black);
    text-decoration: none;
    font-weight: 500;
}

.contact-phone a:hover {
    color: var(--color-primary);
}

/* Catering Section */
.catering-section {
    background-color: var(--color-cream);
    padding: 30px 0 110px;
    position: relative;
}

.catering-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 20px 30px 0;
}

.catering-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 20px;
    color: #333;
    line-height: 1.8;
    font-size: 16px;
}

.catering-intro h2 {
    font-family: var(--font-heading);
    font-size: 34px;
    color: var(--color-primary);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.catering-intro p {
    margin: 0;
    font-size: 18px;
}

.catering-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Form (shared) */
.contact-form-wrapper {
    padding-top: 20px;
}

.contact-form .form-group {
    margin-bottom: 10px;
}

.contact-form label {
    display: block;
    font-family: var(--font-roboto);
    font-size: 15px;
    font-weight: 600;
    color: #444;
    margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 10px 12px;
    font-family: var(--font-roboto);
    font-size: 16px;
    color: #666;
    background-color: var(--color-white);
    border: 1px solid #ccc;
    border-radius: 3px;
    transition: border-color var(--transition);
}

.contact-form button[type="submit"] {
    width: 100%;
    padding: 12px;
    font-size: 18px;
    cursor: pointer;
    border: none;
    border-radius: 4px;
}

/* Contact Pizza Images */
.contact-pizzas {
    background-color: var(--color-black);
    padding: 10px 0;
}

.contact-pizzas-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 20px;
    padding: 20px;
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */
@media (max-width: 1024px) {
    .toppings-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .menu-hero h1 {
        font-size: 50px;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    h1 {
        font-size: 36px;
    }

    /* Mobile Navigation */
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-white);
        flex-direction: column;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--transition);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        max-height: 500px;
        padding-bottom: 15px;
    }

    .nav-menu > li > a {
        padding: 15px 20px;
        font-size: 22px;
        border-bottom: 1px solid #eee;
    }

    .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--color-bg-alt);
        max-height: 0;
        overflow: hidden;
    }

    .has-submenu.open .sub-menu {
        max-height: 300px;
    }

    .sub-menu li a {
        font-size: 22px;
        padding: 15px 25px;
    }

    /* Order Online button on mobile */
    .nav-order-online {
        display: block;
        padding: 10px 20px;
    }

    .nav-menu .nav-order-online > a,
    .nav-menu .nav-order-online > button {
        display: block;
        margin-left: 0;
        padding: 12px 20px;
        text-align: center;
        border-bottom: none;
        width: 100%;
    }

    /* Home Hero */
    .home-hero {
        min-height: 220px;
    }

    .home-hero-content {
        padding: 20px 12px;
    }

    /* Home locations grid: stack on mobile */
    .home-info-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Menu Hero */
    .menu-hero {
        min-height: 220px;
        padding: 20px 20px;
    }

    .contact-hero {
        min-height: 220px;
    }

    .menu-hero h1 {
        font-size: 48px;
        margin-bottom: 30px;
    }

    .menu-hero-content {
        padding: 0 10px;
    }

    /* Menu Navigation */
    .menu-nav {
        padding: 0;
    }

    .menu-nav ul {
        gap: 0;
        flex-wrap: wrap;
        justify-content: center;
    }

    .menu-nav li {
        width: 33.33%;
        text-align: center;
    }

    .menu-nav a {
        padding: 14px 18px;
        font-size: 18px;
    }


    .menu-nav a:hover,
    .menu-nav a.active {
        color: #FFFFFF;
    }

    .menu-nav a::after {
        bottom: 8px;
    }

    .menu-nav a:hover::after,
    .menu-nav a.active::after {
        background-color: #F50004;
    }

    /* Section header images */
    .section-header img {
        max-height: 50px;
    }

    /* Menu Grid */
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .toppings-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .sizes-grid {
        display: flex;
        overflow-x: auto;
        gap: 20px;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
    }

    .sizes-grid .size-item {
        flex: 0 0 auto;
        min-width: 100px;
    }

    .sizes-grid::-webkit-scrollbar {
        display: none;
    }

    .sizes-grid {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .sizes-arrow {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 2;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: none;
        background: rgba(255, 255, 255, 0.85);
        color: #000;
        font-size: 24px;
        line-height: 1;
        cursor: pointer;
        box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    }

    .sizes-arrow-left {
        left: 5px;
    }

    .sizes-arrow-right {
        right: 5px;
    }

    /* Section Padding */
    .menu-section {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 10px 15px;
    }

    .site-logo .logo-image {
        max-height: 65px;
    }

    .menu-nav a {
        padding: 12px 15px;
        font-size: 16px;
    }

    .section-header img {
        max-height: 40px;
    }

    .btn-primary {
        padding: 12px 25px;
        font-size: 16px;
    }

    .menu-hero h1 {
        font-size: 32px;
    }

    .menu-item h4 {
        font-size: 18px;
    }

    .home-hero-content h1 {
        font-size: 36px;
    }

    .home-info-grid {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 40px;
    }

    .home-info-title {
        font-size: 30px;
    }

    .home-about {
        padding: 11px;
    }

    .home-about-content h1 {
        font-size: 30px;
    }

    .home-about-content p {
        font-size: 16px;
    }

    .contact-hero-content h1 {
        font-size: 36px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-section,
    .catering-section {
        padding: 30px 0 60px;
    }

}

/* ==========================================================================
   Form Enhancements
   ========================================================================== */
.required {
    color: var(--color-primary);
    font-weight: 700;
}

.contact-note {
    font-style: italic;
    color: var(--color-text-light);
    margin: 0;
}

.form-status {
    margin-top: 10px;
    font-family: var(--font-roboto);
    font-size: 16px;
    min-height: 1.5em;
}

.form-status.success {
    color: #2e7d32;
}

.form-status.error {
    color: var(--color-primary);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: 2px solid var(--color-accent);
    outline-offset: 1px;
    border-color: var(--color-accent);
}

/* ==========================================================================
   404 Error Page
   ========================================================================== */
.error-page {
    text-align: center;
    padding: 80px 20px 120px;
}

.error-page-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    margin-bottom: 0.25em;
}

.error-page-message {
    font-family: var(--font-body);
    font-size: 1.25rem;
    margin-bottom: 2em;
}

/* ==========================================================================
   Focus Indicators
   ========================================================================== */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

.nav-menu > li > a:focus-visible {
    color: var(--color-primary);
}

.sub-menu li a:focus-visible {
    color: var(--color-primary);
    background: var(--color-bg-alt);
}

/* ==========================================================================
   Print Stylesheet
   ========================================================================== */
@media print {
    .site-header,
    .menu-toggle,
    .menu-nav,
    .nav-order-online,
    .contact-pizzas,
    .btn-primary,
    .btn-dark {
        display: none !important;
    }

    body {
        font-size: 12pt;
        color: #000;
        background: #fff;
    }

    a {
        color: #000;
        text-decoration: underline;
    }

    .home-hero,
    .menu-hero,
    .contact-hero {
        min-height: auto;
        background: none;
        padding: 20px;
    }

    .home-hero-overlay,
    .home-about-overlay,
    .contact-hero-overlay,
    .menu-hero::before {
        display: none;
    }

    .home-hero-content h1,
    .menu-hero h1,
    .contact-hero-content h1 {
        color: #000;
        text-shadow: none;
    }

    .menu-section {
        background: none !important;
        padding: 20px 0;
    }

    .menu-section::before {
        display: none !important;
    }

    .menu-item h4 {
        color: #000 !important;
    }

    .menu-item p {
        color: #333 !important;
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .site-footer {
        border-top: 1px solid #ccc;
    }
}

/* =============================================
   Sticky Order Now Button + Fullscreen Overlay
   ============================================= */

/* Hidden on desktop */
.order-now-sticky,
.order-overlay {
    display: none;
}

@media (max-width: 768px) {
    body {
        padding-bottom: 58px;
    }

    /* Sticky bottom button */
    .order-now-sticky {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 16px 0;
        background-color: var(--color-primary);
        color: var(--color-white);
        font-family: var(--font-heading);
        font-size: 24px;
        text-transform: uppercase;
        letter-spacing: 1px;
        border: none;
        cursor: pointer;
        z-index: 1000;
        text-align: center;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    }

    .order-now-sticky:active {
        background-color: #c40b0b;
    }

    /* Fullscreen overlay */
    .order-overlay {
        display: flex;
        position: fixed;
        inset: 0;
        background-color: rgba(45, 0, 1, 0.95);
        z-index: 1001;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .order-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .order-overlay-close {
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        color: var(--color-white);
        font-size: 36px;
        cursor: pointer;
        padding: 5px 10px;
        line-height: 1;
    }

    .order-overlay h2 {
        font-family: var(--font-heading);
        font-size: 36px;
        color: var(--color-white);
        text-transform: uppercase;
        margin: 0 0 20px;
    }

    .order-overlay-links {
        display: flex;
        flex-direction: column;
        gap: 16px;
        width: 80%;
        max-width: 320px;
    }

    .order-overlay-links a {
        display: block;
        padding: 18px 20px;
        background-color: var(--color-primary);
        color: var(--color-white);
        font-family: var(--font-heading);
        font-size: 22px;
        text-transform: uppercase;
        text-align: center;
        border-radius: 4px;
        letter-spacing: 1px;
        transition: background-color 0.3s ease;
    }

    .order-overlay-links a:active {
        background-color: var(--color-accent);
    }

    body.overlay-open {
        overflow: hidden;
    }
}
