/* Root Variables - Based on Brand Colors */
:root {
    --brick-red: #BB3E3E;
    --brick-red-dark: #8B2828;
    --smoke: #EEEEEE;
    --charcoal: #111111;
    --kraft: #A68866;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --brand-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Oswald', sans-serif;
    background-color: var(--charcoal);
    color: var(--smoke);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header and Navigation */
header {
    background-color: var(--darker-bg);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--brick-red);
}

.navbar {
    display: flex;
    align-items: center;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

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

.flame-icon {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flame-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-name {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-main {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--smoke);
    text-shadow: var(--brand-shadow);
}

.brand-bbq {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    color: var(--brick-red);
    letter-spacing: 4px;
    text-shadow: var(--brand-shadow);
}

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

.nav-links li {
    position: relative;
}

.nav-links li:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1rem;
    top: 50%;
    transform: translateY(-50%);
    height: 20px;
    width: 1px;
    background-color: var(--kraft);
    opacity: 0.5;
}

.nav-links a {
    color: var(--smoke);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--brick-red);
}

/* Hero Section */
.hero {
    background: 
        radial-gradient(ellipse 800px 600px at 30% 40%, rgba(187, 62, 62, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse 600px 500px at 70% 60%, rgba(241, 104, 33, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse 500px 400px at 50% 20%, rgba(80, 80, 80, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse 700px 500px at 40% 80%, rgba(40, 40, 40, 0.4) 0%, transparent 50%),
        linear-gradient(180deg, #0a0a0a 0%, #1a1510 25%, #151515 50%, #0f0a08 75%, #050505 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 70px;
    position: relative;
}

.hero-content {
    padding: 2rem;
}

.hero-est-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 1rem;
}

.est {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 3px;
    color: var(--brick-red-dark);
    align-self: flex-end;
    margin-bottom: 18px;
    text-shadow: var(--brand-shadow);
}

.est-left {
    text-align: right;
}

.est-right {
    text-align: left;
}

.flame-hero {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flame-hero img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 10px rgba(187, 62, 62, 0.5));
}

.hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: 6rem;
    font-weight: 700;
    letter-spacing: 8px;
    line-height: 1;
    color: var(--kraft);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin-bottom: 0.5rem;
}

.bbq-text {
    font-family: 'Bebas Neue', cursive;
    color: var(--brick-red-dark);
    font-size: 5rem;
    letter-spacing: 12px;
}

.tagline {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 4px;
    color: var(--smoke);
    margin: 2rem 0;
}

.hero-subtitle {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 3px;
    color: var(--kraft);
    margin-bottom: 2rem;
}

.hero-subtitle p {
    margin: 0.3rem 0;
}

.cta-button {
    display: inline-block;
    background-color: var(--brick-red-dark);
    color: var(--smoke);
    padding: 1rem 3rem;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-decoration: none;
    text-transform: uppercase;
    border: 2px solid var(--brick-red-dark);
    transition: all 0.3s ease;
    margin-top: 2rem;
}

.cta-button:hover {
    background-color: transparent;
    color: var(--brick-red-dark);
}

/* About Section */
.about {
    padding: 6rem 0;
    background-color: var(--dark-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.5rem;
    letter-spacing: 4px;
    color: var(--brick-red);
    margin-bottom: 1.5rem;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--smoke);
    letter-spacing: 1px;
}

.badge {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.badge-circle {
    width: 250px;
    height: 250px;
    border: 3px solid var(--brick-red);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    background-color: var(--charcoal);
}

.flame-badge {
    width: 50px;
    height: 50px;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flame-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.badge-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.badge-low {
    font-size: 0.7rem;
    letter-spacing: 2px;
}

.badge-brand {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: var(--smoke);
    line-height: 1.1;
}

.badge-est {
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--brick-red);
}

.badge-real {
    font-size: 0.8rem;
    letter-spacing: 2px;
}

/* Menu Section */
.menu {
    padding: 6rem 0;
    background-color: var(--charcoal);
}

.menu-board {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--kraft);
    padding: 3rem 4rem;
    border: 3px solid var(--brick-red);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--brick-red-dark);
}

.menu-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 3rem;
    letter-spacing: 3px;
    color: var(--brick-red-dark);
    line-height: 1;
    text-align: left;
}

.flame-menu {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flame-menu img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.menu-section-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;
    letter-spacing: 3px;
    color: var(--brick-red-dark);
    text-align: center;
    margin: 2rem 0 1rem 0;
    padding-top: 1.5rem;
    border-top: 2px solid var(--brick-red-dark);
}

.menu-section-title:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.menu-item {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(139, 40, 40, 0.3);
}

.menu-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.menu-section-title + .menu-item:has(+ .menu-section-title),
.menu-item:has(+ .menu-section-title) {
    border-bottom: none;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.5rem;
}

.menu-item h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--charcoal);
    text-transform: uppercase;
}

.premium-badge {
    font-family: 'Bebas Neue', cursive;
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: var(--smoke);
    background-color: var(--brick-red-dark);
    padding: 0.2rem 0.6rem;
    border-radius: 3px;
    margin-left: 0.5rem;
    vertical-align: middle;
}

.chefs-favorite-badge {
    font-family: 'Bebas Neue', cursive;
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: var(--smoke);
    background-color: var(--charcoal);
    padding: 0.2rem 0.6rem;
    border-radius: 3px;
    margin-left: 0.5rem;
    vertical-align: middle;
}

.menu-item .price {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    letter-spacing: 2px;
    color: var(--charcoal);
    font-weight: 700;
}

.menu-item p {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--charcoal);
    opacity: 0.85;
    letter-spacing: 0.5px;
}

.menu-item p em {
    font-style: normal;
    color: var(--brick-red-dark);
    font-size: 0.9rem;
    letter-spacing: 1px;
    opacity: 1;
}

.wood-badge {
    display: inline-block;
    font-family: 'Bebas Neue', cursive;
    font-size: 0.8rem;
    font-style: normal;
    letter-spacing: 2px;
    padding: 0.15rem 0.5rem;
    border-radius: 3px;
    margin-right: 0.3rem;
    font-weight: 600;
}

.wood-maple {
    background-color: rgba(139, 40, 40, 0.15);
    color: var(--charcoal);
    border: 1px solid var(--brick-red-dark);
}

.wood-apple {
    background-color: rgba(139, 40, 40, 0.15);
    color: var(--charcoal);
    border: 1px solid var(--brick-red-dark);
}

.wood-hickory {
    background-color: rgba(139, 40, 40, 0.15);
    color: var(--charcoal);
    border: 1px solid var(--brick-red-dark);
}

.wood-cedar {
    background-color: rgba(139, 40, 40, 0.15);
    color: var(--charcoal);
    border: 1px solid var(--brick-red-dark);
}

/* Wood Legend */
.wood-legend {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--brick-red-dark);
}

.legend-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    letter-spacing: 3px;
    color: var(--brick-red-dark);
    text-align: center;
    margin-bottom: 1rem;
}

.legend-items {
    display: grid;
    grid-template-columns: auto auto;
    gap: 0.8rem 1rem;
    width: fit-content;
    margin: 0 auto;
    align-items: center;
}

.legend-item {
    font-family: 'Oswald', sans-serif;
    font-size: 0.95rem;
    color: var(--charcoal);
    opacity: 0.85;
    letter-spacing: 0.5px;
    display: contents;
}

.legend-item .wood-badge {
    justify-self: end;
}

.legend-item strong {
    color: var(--brick-red-dark);
    font-weight: 600;
    letter-spacing: 1.5px;
}

/* Order Section */
.order {
    padding: 6rem 0;
    background-color: var(--dark-bg);
}

.order .section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.order-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--kraft);
    margin-bottom: 3rem;
}

.order-form {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--charcoal);
    padding: 3rem;
    border: 2px solid var(--brick-red);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.form-group label {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.3rem;
    letter-spacing: 2px;
    color: var(--brick-red);
    margin-bottom: 0.5rem;
}

.form-label-main {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.3rem;
    letter-spacing: 2px;
    color: var(--brick-red);
    margin-bottom: 1rem;
    display: block;
}

.order-info-message {
    background-color: var(--dark-bg);
    border-left: 3px solid var(--brick-red);
    padding: 1.2rem 1.5rem;
    margin: 1rem 0;
}

.order-info-message p {
    font-family: 'Oswald', sans-serif;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--smoke);
    letter-spacing: 0.5px;
    margin: 0;
}

.order-info-message p + p {
    margin-top: 0.6rem;
}

.order-info-message strong {
    color: var(--brick-red);
    font-weight: 600;
}

.meal-selection {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background-color: var(--dark-bg);
    border: 1px solid var(--kraft);
}

.meal-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.quantity-input {
    width: 80px;
    padding: 0.5rem;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    background-color: var(--smoke);
    color: var(--charcoal);
    border: 1px solid var(--kraft);
    text-align: center;
}

.total-price {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background-color: var(--charcoal);
    border: 2px solid var(--brick-red);
}

.total-label {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;
    letter-spacing: 3px;
    color: var(--smoke);
}

.total-amount {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.5rem;
    letter-spacing: 2px;
    color: var(--brick-red);
    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    background-color: var(--smoke);
    color: var(--charcoal);
    border: 1px solid var(--kraft);
    outline: none;
    transition: border-color 0.3s ease;
}

.quantity-input {
    background-color: var(--smoke) !important;
    color: var(--charcoal) !important;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--brick-red);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    font-size: 1rem;
    color: var(--smoke);
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.form-helper-text {
    margin-top: 0.25rem;
    margin-left: 2.25rem;
    font-size: 0.95rem;
    color: var(--kraft);
    line-height: 1.5;
}

.submit-button {
    width: 100%;
    padding: 1.2rem;
    background-color: var(--brick-red);
    color: var(--smoke);
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;
    letter-spacing: 4px;
    border: 2px solid var(--brick-red);
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.submit-button:hover {
    background-color: transparent;
    color: var(--brick-red);
}

.success-message {
    max-width: 800px;
    margin: 2rem auto 0;
    padding: 2rem;
    background-color: var(--charcoal);
    border: 2px solid var(--brick-red);
    text-align: center;
}

.success-message p {
    font-size: 1.3rem;
    color: var(--smoke);
    letter-spacing: 2px;
}

/* Footer */
footer {
    background-color: var(--darker-bg);
    padding: 3rem 0;
    border-top: 2px solid var(--brick-red);
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.flame-small {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flame-small img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;
    letter-spacing: 3px;
    color: var(--smoke);
}

.footer-tagline {
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: var(--kraft);
}

.footer-info {
    text-align: right;
}

.footer-info p {
    font-size: 0.9rem;
    color: var(--smoke);
    opacity: 0.7;
    margin: 0.3rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .brand-name {
        display: none;
    }

    .logo {
        gap: 0;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .nav-links li:not(:last-child)::after {
        right: -0.5rem;
        height: 14px;
    }
    
    .hero {
        padding: 1rem;
        margin-top: 60px;
        min-height: 80vh;
    }

    .hero-est-row {
        gap: 0.75rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .bbq-text {
        font-size: 3rem;
    }
    
    .about {
        padding: 2rem 0;
    }
    
    .menu {
        padding: 2rem 0;
    }

    .menu .section-title,
    .order .section-title {
        font-size: 2rem;
    }
    
    .menu-board {
        padding: 2rem;
    }
    
    .menu-title {
        font-size: 2rem;
    }
    
    .flame-menu {
        width: 60px;
        height: 60px;
    }
    
    .order {
        padding: 2rem 0;
    }

    .order-form {
        padding: 1.5rem;
    }
    
    footer {
        padding: 2rem 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-group {
        margin-bottom: 1.2rem;
    }
    
    .meal-selection {
        padding: 1rem;
        gap: 0.8rem;
    }
    
    .meal-option {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0.5rem;
        padding: 0.5rem;
        background-color: rgba(10, 10, 10, 0.3);
        border-radius: 4px;
    }
    
    .checkbox-label {
        flex: 1;
        font-size: 0.95rem;
    }
    
    .checkbox-label span {
        word-break: break-word;
    }
    
    .quantity-input {
        width: 70px !important;
        flex-shrink: 0;
        padding: 0.4rem;
        font-size: 1rem;
    }
    
    .total-price {
        flex-direction: row;
        justify-content: space-between;
        padding: 1rem;
    }
    
    .total-label {
        font-size: 1.5rem;
    }
    
    .total-amount {
        font-size: 2rem;
    }
    
    .form-label-main {
        font-size: 1.2rem;
    }
    
    .form-group label {
        font-size: 1.2rem;
    }
    
    .submit-button {
        font-size: 1.5rem;
        padding: 1rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

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

@media (max-width: 480px) {
    .flame-icon {
        width: 30px;
        height: 30px;
    }

    .nav-links {
        gap: 0.5rem;
    }

    .nav-links li:not(:last-child)::after {
        right: -0.25rem;
        height: 12px;
    }

    .nav-links a {
        font-size: 0.8rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-est-row {
        gap: 0.5rem;
    }

    .est {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .bbq-text {
        font-size: 2rem;
    }
    
    .order-form {
        padding: 1rem;
    }
    
    .meal-selection {
        padding: 0.8rem;
    }
    
    .meal-option {
        padding: 0.4rem;
    }
    
    .checkbox-label {
        font-size: 0.9rem;
    }
    
    .checkbox-label input[type="checkbox"] {
        width: 18px;
        height: 18px;
    }
    
    .quantity-input {
        width: 60px !important;
        font-size: 0.95rem;
    }
}
