:root {
    --col-bg-dark: #0f1115;
    --col-bg-card: #181b21;
    --col-bg-lighter: #232730;

    --col-primary: #ff4d00;
    /* Vibrant Orange */
    --col-primary-hover: #ff6a00;
    --col-accent: #ffca00;
    /* Yellow/Gold for lottery/stars */

    --col-text-main: #ffffff;
    --col-text-muted: #9ca3af;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-full: 9999px;

    --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px rgba(255, 77, 0, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--col-bg-dark);
    color: var(--col-text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
.logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.highlight {
    color: var(--col-primary);
}

.text-gradient {
    background: linear-gradient(to right, #ff4d00, #ffca00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: var(--radius-full);
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: transform 0.2s, box-shadow 0.2s;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--col-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 77, 0, 0.4);
}

.btn-primary:hover {
    background-color: var(--col-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 77, 0, 0.5);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    margin-left: 1rem;
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1.5rem 0;
    transition: background 0.3s, padding 0.3s;
}

.header.scrolled {
    background-color: rgba(15, 17, 21, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-mascot {
    height: 70px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
}

.logo-img {
    height: 50px;
    /* Slightly smaller to balance with mascot */
    width: auto;
    object-fit: contain;
}

.nav-list {
    display: flex;
    gap: 2rem;
}

.nav-list a {
    font-weight: 500;
    opacity: 0.8;
}

.nav-list a:hover {
    opacity: 1;
    color: var(--col-primary);
}

/* Hero */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(15, 17, 21, 0.95) 0%, rgba(15, 17, 21, 0.6) 50%, rgba(15, 17, 21, 0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    margin-left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Centered since mascot is gone */
    text-align: center;
}

.hero-text-wrapper {
    max-width: 800px;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.brand-partner {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.marathon-text {
    color: #DA291C;
    /* Marathon Red */
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--col-text-muted);
    margin-bottom: 2.5rem;
    max-width: 480px;
}

/* Sections Global */
section {
    padding: var(--spacing-xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--col-text-muted);
    font-size: 1.1rem;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--col-bg-card);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-card);
    border-color: rgba(255, 77, 0, 0.2);
}

.service-card .icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.highlight-card {
    background: linear-gradient(145deg, var(--col-bg-card), #2a2220);
    border: 1px solid var(--col-primary);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--col-text-muted);
}

/* Food Menu */
.food-menu {
    background-color: var(--col-bg-lighter);
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 2rem;
}

.large-item {
    grid-column: 1 / -1;
    display: flex;
    background-color: var(--col-bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    min-height: 400px;
}

.large-item .menu-img {
    flex: 1;
}

.large-item .menu-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.large-item .menu-info {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.menu-item:not(.large-item) {
    background-color: var(--col-bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.menu-item:not(.large-item) .menu-img {
    height: 250px;
}

.menu-item:not(.large-item) .menu-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-info {
    padding: 2rem;
}

.menu-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--col-primary);
}

.tag {
    display: inline-block;
    background-color: var(--col-accent);
    color: #000;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-top: 1rem;
    align-self: flex-start;
}

.deli-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.1rem;
}

.deli-list li:last-child {
    border-bottom: none;
}

/* Snacks - Jerky */
.snacks-section {
    padding: var(--spacing-xl) 0;
}

.split-layout {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.split-layout .text-content {
    flex: 1;
}

.split-layout .image-content {
    flex: 1;
}

.split-layout .image-content img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
}

.lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.feature-list li {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

/* Location & Map */
.location-section {
    background-color: var(--col-bg-dark);
}

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

.address-box {
    margin: 2rem 0;
    font-size: 1.2rem;
    color: var(--col-text-muted);
}

.map-container {
    margin-top: 2rem;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-container iframe {
    display: block;
    width: 100%;
    filter: invert(90%) hue-rotate(180deg);
    /* Dark mode map effect (optional/experimental) */
}

/* Footer */
.footer {
    padding: 2rem 0;
    background-color: black;
    text-align: center;
    color: var(--col-text-muted);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background-color: white;
    border-radius: 2px;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-title {
        font-size: 3rem;
    }

    .large-item {
        flex-direction: column;
    }

    .large-item .menu-img {
        height: 250px;
    }

    .split-layout {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--col-bg-dark);
        padding: 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
    }

    .mobile-menu-btn {
        display: flex;
    }

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

    .hero-content {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1rem;
    }

    .hero-text-wrapper {
        margin: 0 auto;
        margin-bottom: 2rem;
    }

    .mascot-hero {
        margin-right: 0;
        max-height: 300px;
    }

    .hero-subtitle {
        margin: 0 auto 2.5rem auto;
    }
}

/* Forms & Inputs */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--col-text-main);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    background-color: var(--col-bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: white;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--col-primary);
    box-shadow: 0 0 0 3px rgba(255, 77, 0, 0.2);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Page Header (for subpages) */
.page-header {
    padding: 120px 0 60px;
    background-color: var(--col-bg-dark);
    text-align: center;
    background-image: linear-gradient(rgba(15, 17, 21, 0.9), rgba(15, 17, 21, 0.9)), url('assets/hero_pump.jpg');
    background-size: cover;
    background-position: center;
}

.page-header.contact-header-bg {
    background-image: linear-gradient(rgba(15, 17, 21, 0.5), rgba(15, 17, 21, 0.7)), url('assets/station_night.jpg') !important;
}

.page-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--col-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Page form container */
.form-container {
    background-color: var(--col-bg-card);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-card);
    max-width: 100%;
    margin: 0 auto;
}

/* File Upload styling */
.file-upload-wrapper {
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.file-upload-label {
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    display: inline-block;
    transition: background 0.3s;
}

/* Menu Layout */
.menu-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    background-color: var(--col-bg-card);
    padding: 2rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.menu-hero {
    grid-column: 1 / -1;
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: 1rem;
    height: 300px;
}

.menu-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-category {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: var(--radius-sm);
}

.menu-category.full-width {
    grid-column: 1 / -1;
}

.category-header {
    background-color: #DA291C;
    /* Broaster Red like */
    color: white;
    padding: 1rem;
    margin: -1.5rem -1.5rem 1.5rem -1.5rem;
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    text-align: center;
}

.category-header h3 {
    text-transform: uppercase;
    font-weight: 800;
    margin: 0;
    font-size: 1.4rem;
}

.category-note {
    display: block;
    font-size: 0.8rem;
    opacity: 0.9;
    margin-top: 5px;
}

/* Menu List with Dots */
.menu-list li {
    display: flex;
    align-items: flex-end;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.menu-list .item-name {
    padding-right: 10px;
}

.menu-list .dots {
    flex: 1;
    border-bottom: 2px dotted rgba(255, 255, 255, 0.2);
    margin-bottom: 5px;
}

.menu-list .item-price {
    padding-left: 10px;
    font-weight: 700;
    color: var(--col-primary);
}

/* Buckets Grid */
.bucket-grid {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.bucket-col {
    flex: 1;
}

.bucket-item {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.promo-text {
    text-align: center;
    color: var(--col-accent);
    font-weight: 600;
    margin-top: 1rem;
    font-style: italic;
}

/* Piece Grid */
.piece-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.piece-item {
    display: flex;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.2);
    padding: 10px;
    border-radius: 4px;
}

.piece-item .price {
    font-weight: 700;
    color: var(--col-primary);
}

/* Sides Table */
.sides-table {
    width: 100%;
}

.sides-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sides-row.header-row {
    font-weight: 800;
    color: var(--col-accent);
    text-transform: uppercase;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.sides-row span:not(:first-child) {
    text-align: right;
}

/* Pizza Specific Styles */
.pizza-pricing-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
}

.price-box {
    text-align: center;
    display: flex;
    flex-direction: column;
}

.price-large {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    font-family: var(--font-heading);
    color: var(--col-text-main);
}

.price-label {
    color: #DA291C;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.price-sub {
    font-size: 0.8rem;
    color: var(--col-text-muted);
    margin-top: 5px;
}

.price-separator {
    width: 2px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.1);
}

.pizza-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.pizza-list li {
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.toppings-section h4 {
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.toppings-list {
    font-size: 0.9rem;
    color: var(--col-text-muted);
    line-height: 1.6;
}