/* =========================
   BOTANA 404
   Main Stylesheet
========================= */


/* ---------- RESET ---------- */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #101010;
    color: #f5f0e6;
    line-height: 1.6;
}


/* ---------- NAVIGATION ---------- */

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.navbar {
    width: 90%;
    max-width: 1200px;
    margin: auto;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 24px 0;
}

.nav-logo {
    color: #f5f0e6;
    text-decoration: none;

    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 32px;

    list-style: none;
}

/* MOBILE MENU BUTTON */

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

.menu-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    margin: 5px 0;
    background-color: #f5f0e6;
    border-radius: 2px;
    transition: 0.3s ease;
}

/* HAMBURGER ANIMATION */

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.nav-links a {
    color: #f5f0e6;
    text-decoration: none;

    font-size: 0.95rem;
    font-weight: 600;

    text-transform: uppercase;
    letter-spacing: 1px;

    transition: 0.2s ease;
}

.nav-links a:hover {
    color: #b71919;
}


/* ---------- HERO ---------- */

.hero {
    min-height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;

    padding: 120px 20px 60px;

    background:
        radial-gradient(
            circle at center,
            #242424 0%,
            #151515 45%,
            #090909 100%
        );
}

.hero-content {
    width: 100%;
    max-width: 800px;
}


/* THIS IS WHAT TAMES THE MONSTER LOGO */

.hero-logo {
    width: 320px;
    max-width: 70vw;

    height: auto;

    display: block;

    margin: 0 auto 25px;
}


/* ---------- HERO TEXT ---------- */

.hero-kicker {
    color: #1f6339;

    font-size: 1rem;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: 4px;

    margin-bottom: 12px;
}

.hero h1 {
    color: #f5f0e6;

    font-size: clamp(2.3rem, 6vw, 4.8rem);

    line-height: 1.05;

    text-transform: uppercase;

    margin-bottom: 20px;
}

.hero-description {
    max-width: 600px;

    margin: 0 auto 32px;

    color: #cbc5ba;

    font-size: 1.1rem;
}


/* ---------- BUTTONS ---------- */

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;

    flex-wrap: wrap;
}

.button {
    display: inline-block;

    padding: 14px 28px;

    text-decoration: none;

    text-transform: uppercase;

    font-size: 0.9rem;
    font-weight: 800;

    letter-spacing: 1px;

    border-radius: 4px;

    transition: all 0.2s ease;
}

.button-primary {
    background-color: #a81515;
    color: white;

    border: 2px solid #a81515;
}

.button-primary:hover {
    background-color: #c41c1c;
    border-color: #c41c1c;

    transform: translateY(-2px);
}

.button-secondary {
    background-color: transparent;

    color: #f5f0e6;

    border: 2px solid #f5f0e6;
}

.button-secondary:hover {
    background-color: #f5f0e6;

    color: #101010;

    transform: translateY(-2px);
}


/* ---------- MOBILE ---------- */

@media (max-width: 700px) {

    .navbar {
        position: relative;
        padding: 18px 0;
    }

    .nav-logo {
        font-size: 1rem;
    }

    .menu-toggle {
        display: block;
        position: relative;
        z-index: 200;
    }

    .nav-links {
        position: absolute;
        top: 64px;
        right: 0;
        width: 220px;
        padding: 20px;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        background-color: #111111;
        border: 1px solid #2a2a2a;
        border-radius: 8px;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        display: block;
        width: 100%;
        font-size: 0.82rem;
    }

    .hero-logo {
        width: 240px;
    }

    .hero-description {
        font-size: 1rem;
    }
}
/* =========================
   MENU SECTION
========================= */

.menu-section {
    padding: 100px 20px;
    background-color: #0c0c0c;
}

.section-heading {
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
}

.section-kicker {
    color: #1f6339;

    font-size: 0.9rem;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: 4px;

    margin-bottom: 8px;
}

.section-heading h2 {
    color: #f5f0e6;

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

    text-transform: uppercase;

    margin-bottom: 12px;
}

.section-description {
    color: #aaa49a;
    font-size: 1rem;
}


/* MENU GRID */

.menu-categories {
    width: 90%;
    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 25px;
}


/* INDIVIDUAL CATEGORY */

.menu-category {
    position: relative;

    background:
        linear-gradient(
            145deg,
            #181818,
            #101010
        );

    border: 1px solid #292929;

    padding: 35px;

    border-radius: 8px;

    overflow: hidden;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease;
}

.menu-category:hover {
    transform: translateY(-5px);
    border-color: #8f1717;
}

/* Green hover border for green-accent cards */
.menu-category:nth-child(even):hover {
    border-color: #1f6339;
}


/* RED ACCENT */

.menu-category::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background-color: #a81515;
}


/* CATEGORY TITLE */

.menu-category h3 {
    color: #f5f0e6;

    font-size: 1.6rem;

    text-transform: uppercase;

    letter-spacing: 1px;

    margin-bottom: 20px;
}


/* MENU ITEMS */

.menu-category ul {
    list-style: none;
}

.menu-category li {
    color: #c9c4bb;

    padding: 10px 0;

    border-bottom: 1px solid #282828;

    font-size: 1rem;

    transition:
        color 0.2s ease,
        padding-left 0.2s ease;
}

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

.menu-category li:hover {
    color: #f5f0e6;

    padding-left: 7px;
}


/* GREEN ACCENT ON ALTERNATING CARDS */

.menu-category:nth-child(even)::before {
    background-color: #1f6339;
}


/* =========================
   MENU RESPONSIVE
========================= */

@media (max-width: 800px) {

    .menu-section {
        padding: 80px 16px;
    }

    .menu-categories {
        width: 100%;

        grid-template-columns: 1fr;
    }

    .menu-category {
        padding: 28px 24px;
    }

}
/* =========================
   FEATURED FAVORITES
========================= */

.featured-section {
    padding: 110px 20px;
    background:
        linear-gradient(
            180deg,
            #0c0c0c 0%,
            #121212 100%
        );
}


/* FEATURED GRID */

.featured-grid {
    width: 90%;
    max-width: 1200px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}


/* FEATURED CARD */

.featured-card {
    position: relative;

    min-height: 260px;

    padding: 32px 28px;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    background:
        linear-gradient(
            160deg,
            #1a1a1a,
            #111111
        );

    border: 1px solid #2b2b2b;

    border-radius: 8px;

    overflow: hidden;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.featured-card:hover {
    transform: translateY(-7px);

    border-color: #a81515;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.35);
}


/* ALTERNATING GREEN HOVER */

.featured-card:nth-child(even):hover {
    border-color: #1f6339;
}


/* LARGE NUMBER */

.featured-number {
    position: absolute;

    top: 20px;
    right: 25px;

    font-size: 4.5rem;
    font-weight: 900;

    color: rgba(255, 255, 255, 0.05);

    line-height: 1;
}


/* CARD TITLE */

.featured-card h3 {
    position: relative;

    color: #f5f0e6;

    font-size: 1.55rem;

    text-transform: uppercase;

    margin-bottom: 10px;

    z-index: 2;
}


/* CARD DESCRIPTION */

.featured-card p {
    position: relative;

    color: #a9a39a;

    font-size: 0.95rem;

    z-index: 2;
}


/* RED / GREEN BOTTOM ACCENTS */

.featured-card::after {
    content: "";

    position: absolute;

    bottom: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background-color: #a81515;
}

.featured-card:nth-child(even)::after {
    background-color: #1f6339;
}


/* =========================
   FEATURED RESPONSIVE
========================= */

@media (max-width: 1000px) {

    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 600px) {

    .featured-section {
        padding: 80px 16px;
    }

    .featured-grid {
        width: 100%;

        grid-template-columns: 1fr;
    }

    .featured-card {
        min-height: 220px;
    }

}
/* =========================
   ABOUT SECTION
========================= */

.about-section {
    padding: 120px 20px;
    background:
        linear-gradient(
            180deg,
            #121212 0%,
            #0b0b0b 100%
        );
}

.about-container {
    width: 90%;
    max-width: 1200px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.2fr 0.8fr;

    gap: 80px;

    align-items: center;
}


/* ABOUT TEXT */

.about-content h2 {
    color: #f5f0e6;

    font-size: clamp(2.4rem, 5vw, 4rem);

    line-height: 1.05;

    text-transform: uppercase;

    margin-bottom: 28px;
}

.about-content p {
    max-width: 650px;

    color: #aaa49a;

    font-size: 1.05rem;

    line-height: 1.8;

    margin-bottom: 20px;
}

.about-content .button {
    margin-top: 15px;
}


/* ABOUT BADGE */

.about-badge {
    min-height: 420px;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    text-align: center;

    background:
        radial-gradient(
            circle,
            #202020 0%,
            #111111 70%
        );

    border: 1px solid #2a2a2a;

    border-radius: 50%;

    aspect-ratio: 1 / 1;

    max-width: 420px;

    margin: 0 auto;

    position: relative;

    overflow: hidden;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease;
}

.about-badge:hover {
    transform: scale(1.03);

    border-color: #a81515;
}


/* INNER CIRCLE */

.about-badge::before {
    content: "";

    position: absolute;

    width: 82%;
    height: 82%;

    border: 2px solid #1f6339;

    border-radius: 50%;

    opacity: 0.5;
}


/* 404 NUMBER */

.about-badge strong {
    position: relative;

    color: #a81515;

    font-size: clamp(5rem, 10vw, 8rem);

    line-height: 1;

    font-weight: 900;

    z-index: 2;
}


/* BADGE TEXT */

.about-badge span {
    position: relative;

    color: #f5f0e6;

    text-transform: uppercase;

    letter-spacing: 3px;

    font-size: 0.85rem;

    font-weight: 700;

    z-index: 2;
}

.about-badge .about-small {
    color: #1f6339;

    margin-bottom: 10px;
}


/* =========================
   ABOUT RESPONSIVE
========================= */

@media (max-width: 900px) {

    .about-container {
        grid-template-columns: 1fr;

        gap: 60px;
    }

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

    .about-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .about-badge {
        width: 320px;
        min-height: 320px;
    }

}

@media (max-width: 500px) {

    .about-section {
        padding: 80px 16px;
    }

    .about-container {
        width: 100%;
    }

    .about-badge {
        width: 260px;
        min-height: 260px;
    }

}
/* =========================
   EVENTS SECTION
========================= */

.events-section {
    padding: 120px 20px;

    background:
        linear-gradient(
            180deg,
            #0b0b0b 0%,
            #121212 100%
        );
}

.events-container {
    width: 90%;
    max-width: 1200px;

    margin: 0 auto;
}


/* EVENTS INTRO */

.events-content {
    max-width: 800px;

    margin-bottom: 60px;
}

.events-content h2 {
    color: #f5f0e6;

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

    line-height: 1.05;

    text-transform: uppercase;

    margin-bottom: 25px;
}

.events-content p {
    color: #aaa49a;

    font-size: 1.05rem;

    line-height: 1.8;

    margin-bottom: 15px;
}


/* EVENT CARDS */

.event-options {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;

    margin-bottom: 50px;
}

.event-option {
    position: relative;

    min-height: 240px;

    padding: 32px;

    display: flex;
    flex-direction: column;

    justify-content: flex-end;

    background:
        linear-gradient(
            145deg,
            #191919,
            #101010
        );

    border: 1px solid #2a2a2a;

    border-radius: 8px;

    overflow: hidden;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease;
}

.event-option:hover {
    transform: translateY(-6px);

    border-color: #a81515;
}

.event-option:nth-child(2):hover {
    border-color: #1f6339;
}


/* EVENT NUMBER */

.event-option span {
    position: absolute;

    top: 18px;
    right: 25px;

    color: rgba(255, 255, 255, 0.06);

    font-size: 4rem;
    font-weight: 900;

    line-height: 1;
}


/* EVENT TITLES */

.event-option h3 {
    color: #f5f0e6;

    font-size: 1.5rem;

    text-transform: uppercase;

    margin-bottom: 10px;
}

.event-option p {
    color: #aaa49a;

    line-height: 1.6;
}


/* RED / GREEN ACCENT */

.event-option::after {
    content: "";

    position: absolute;

    bottom: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background-color: #a81515;
}

.event-option:nth-child(2)::after {
    background-color: #1f6339;
}


/* EVENT CTA */

.event-cta {
    display: flex;

    justify-content: space-between;
    align-items: center;

    gap: 30px;

    padding: 30px 35px;

    background-color: #171717;

    border: 1px solid #2a2a2a;

    border-radius: 8px;
}

.event-cta p {
    color: #f5f0e6;

    font-size: 1.3rem;
    font-weight: 700;
}


/* =========================
   EVENTS RESPONSIVE
========================= */

@media (max-width: 900px) {

    .event-options {
        grid-template-columns: 1fr;
    }

    .event-option {
        min-height: 200px;
    }

}

@media (max-width: 650px) {

    .events-section {
        padding: 80px 16px;
    }

    .events-container {
        width: 100%;
    }

    .event-cta {
        flex-direction: column;

        align-items: flex-start;
    }

}
/* =========================
   CONTACT / BOOKING SECTION
========================= */

.contact-section {
    padding: 120px 20px;

    background:
        linear-gradient(
            180deg,
            #121212 0%,
            #090909 100%
        );
}

.contact-container {
    width: 90%;
    max-width: 1200px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.8fr 1.2fr;

    gap: 80px;

    align-items: start;
}


/* CONTACT TEXT */

.contact-content h2 {
    color: #f5f0e6;

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

    line-height: 1.05;

    text-transform: uppercase;

    margin-bottom: 25px;
}

.contact-content > p {
    color: #aaa49a;

    font-size: 1.05rem;
    line-height: 1.8;

    margin-bottom: 40px;
}


/* CONTACT DETAILS */

.contact-details {
    display: flex;
    flex-direction: column;

    gap: 25px;
}

.contact-detail {
    padding-bottom: 20px;

    border-bottom: 1px solid #2a2a2a;
}

.contact-detail span {
    display: block;

    color: #1f6339;

    font-size: 0.75rem;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: 2px;

    margin-bottom: 5px;
}

.contact-detail strong {
    color: #f5f0e6;

    font-size: 1rem;
}

.contact-link {
    color: #f5f0e6;
    text-decoration: none;

    font-size: 1rem;
    font-weight: 700;

    transition: color 0.2s ease;
}

.contact-link:hover {
    color: #1f6339;
}

/* =========================
   BOOKING FORM
========================= */

.booking-form {
    padding: 40px;

    background:
        linear-gradient(
            145deg,
            #191919,
            #101010
        );

    border: 1px solid #2a2a2a;

    border-radius: 8px;
}


/* TWO-COLUMN FORM ROW */

.form-row {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 20px;
}


/* FORM FIELD */

.form-group {
    display: flex;
    flex-direction: column;

    margin-bottom: 22px;
}

.form-group label {
    color: #f5f0e6;

    font-size: 0.8rem;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: 1px;

    margin-bottom: 8px;
}


/* INPUTS */

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding: 14px 15px;

    background-color: #0d0d0d;

    color: #f5f0e6;

    border: 1px solid #333333;

    border-radius: 4px;

    font-family: inherit;
    font-size: 1rem;

    outline: none;

    transition:
        border-color 0.2s ease,
        background-color 0.2s ease;
}


/* PLACEHOLDER */

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #66615c;
}


/* FIELD FOCUS */

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #a81515;

    background-color: #111111;
}


/* TEXTAREA */

.form-group textarea {
    resize: vertical;

    min-height: 150px;
}


/* SELECT */

.form-group select {
    cursor: pointer;
}


/* SUBMIT BUTTON */

.booking-form button {
    width: 100%;

    margin-top: 5px;

    cursor: pointer;

    border: none;
}


/* =========================
   CONTACT RESPONSIVE
========================= */

@media (max-width: 900px) {

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

        gap: 60px;
    }

}

@media (max-width: 650px) {

    .contact-section {
        padding: 80px 16px;
    }

    .contact-container {
        width: 100%;
    }

    .booking-form {
        padding: 25px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

}
/* =========================
   FOOTER
========================= */

.site-footer {
    padding: 70px 20px 30px;

    background-color: #070707;

    border-top: 1px solid #202020;
}

.footer-container {
    width: 90%;
    max-width: 1200px;

    margin: 0 auto 50px;

    display: flex;

    justify-content: space-between;
    align-items: center;

    gap: 40px;
}

.footer-brand h3 {
    color: #f5f0e6;

    font-size: 1.5rem;

    text-transform: uppercase;

    margin-bottom: 5px;
}

.footer-brand p {
    color: #77716a;

    font-size: 0.9rem;
}

.footer-links {
    display: flex;

    gap: 25px;
}

.footer-links a,
.footer-social a {
    color: #aaa49a;

    text-decoration: none;

    text-transform: uppercase;

    font-size: 0.8rem;
    font-weight: 700;

    letter-spacing: 1px;

    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #a81515;
}

.footer-social a:hover {
    color: #1f6339;
}

.footer-bottom {
    width: 90%;
    max-width: 1200px;

    margin: 0 auto;

    padding-top: 25px;

    border-top: 1px solid #202020;

    display: flex;

    justify-content: space-between;

    gap: 20px;
}

.footer-bottom p {
    color: #66615c;

    font-size: 0.8rem;
}


/* FOOTER MOBILE */

@media (max-width: 700px) {

    .footer-container {
        flex-direction: column;

        align-items: flex-start;
    }

    .footer-links {
        flex-wrap: wrap;
    }

    .footer-bottom {
        flex-direction: column;
    }

}
/* FORM STATUS */

.form-status {
    margin-top: 18px;

    text-align: center;

    font-size: 0.95rem;
    font-weight: 700;
}

.form-status.success {
    color: #3f9b62;
}

.form-status.error {
    color: #d94a4a;
}

.booking-form button:disabled {
    opacity: 0.6;

    cursor: not-allowed;
}