/* ===================== INNER HERO ===================== */
.inner-hero {
    position: relative;
    background-image: url('../img/stuffed-cheese-burger-lake-charles-68-edited.jpg');
    background-size: cover;
    background-position: center;
    padding: 70px 0;
    text-align: center;
    color: #fff;
}

.inner-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
}

.inner-hero .hero-content {
    position: relative;
    z-index: 2;
    font-family: "Oswald", Sans-serif;

    &[data-align="left"] {
        text-align: left;
    }

    p {
        font-size: 18px;
        font-weight: bold;
        text-transform: uppercase;
    }
}

.inner-hero .page-title {
    font-size: 80px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.2;
}

@media(max-width: 768px) {
    .inner-hero .page-title {
        font-size: 50px;
    }
}

.inner-hero .hero-desc {
    font-size: 2em;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 1.2em;
    letter-spacing: 0px;
    color: #FBFBFB;
}

/* ===================== ABOUT CARDS ===================== */
.cards.inner-cards {
    position: relative;
    z-index: 10;
    margin-bottom: 60px;
}

/* ===================== WHO WE ARE SECTION ===================== */
.who-we-are-section {
    padding: 80px 0;
}

.who-we-are-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

@media (min-width: 992px) {
    .who-we-are-grid {
        grid-template-columns: 1.1fr 0.9fr;
        align-items: flex-start;
    }
}

.who-we-are-left {
    padding-right: 20px;
}

.section-title-dark {
    font-family: 'Oswald', sans-serif;
    color: #232323;
    font-size: 45px;
    text-transform: uppercase;
    margin-bottom: 5px;
    font-weight: 800;
    line-height: 1.2;
}

.section-subtitle-red {
    font-family: 'Open Sans', sans-serif;
    color: #ed1c24;
    font-size: 15px;
    text-transform: uppercase;
    margin-bottom: 25px;
    font-weight: 800;
    letter-spacing: 0px;
}

.who-we-are-left p {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.who-we-are-left p a {
    color: #555;
    text-decoration: underline;
}

.who-we-are-left strong {
    color: #333;
    font-weight: 700;
}

.who-we-are-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dream-image {
    position: relative;
    margin-top: 20px;
}

.dream-image img {
    width: 100%;
}

.badge-locally-owned {
    position: absolute;
    top: -40px;
    left: 45px;
    background-color: #f71822;
    /* matching the image red circled badge */
    color: white;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.2;
    z-index: 10;
}

.dream-text p {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    color: #777;
    line-height: 1.6;
    margin-top: 10px;
}

/* ===================== SAAY PATEL MURAL ===================== */
.saay-mural {
    background-image: url('../img/Maplewood-Burgers-Lake-Charles-Wall-Mural.jpg');
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    position: relative;
}

.container-mural {
    display: flex;
    justify-content: flex-start;
    padding-left: 10%;
}

@media (max-width: 992px) {
    .container-mural {
        padding-left: 0;
        justify-content: center;
    }
}

.mural-box {
    background: #fff;
    border: 5px solid #EAA322;
    /* orange border */
    padding: 35px 35px;
    max-width: 480px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.mural-box p {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #222;
    line-height: 1.8;
}

.mural-box strong {
    font-weight: 700;
}

/* ===================== NEWS / AWARD SECTION ===================== */
.news-award {
    padding: 80px 0 100px;
    background: #fff;
}

.news-header {
    margin-bottom: 50px;
}

.text-center {
    text-align: center;
}

.news-title {
    font-family: 'Oswald', sans-serif;
    font-size: 34px;
    color: #111;
    line-height: 1.3;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 800;
}

.news-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: #ed1c24;
    margin-bottom: 20px;
    font-weight: 800;
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 992px) {
    .news-grid {
        grid-template-columns: 1fr 1fr;
        align-items: flex-start;
    }
}

.news-article-title {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    color: #1b1b1b;
    line-height: 1.2;
    margin-bottom: 15px;
    text-transform: capitalize;
    font-weight: 800;
}

.news-text p {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.news-btn {
    background-color: #f7941e !important;
    color: #fff !important;
    margin-top: 10px;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 800;
    border-radius: 30px;
    letter-spacing: 0.5px;
}

.news-btn:hover {
    background-color: #df8215 !important;
}

.news-image img {
    width: 100%;
}

/* ===================== BLOGS GRID ===================== */
.blogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 350px));
    gap: 30px;
    padding: 60px 0;
}

.blog-card {
    background: #fff;
    border: 1px solid rgba(237, 28, 36, 0.1);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;


    &:hover {
        transform: translateY(-5px);
        box-shadow: 0px 0px 10px 0px rgba(198.85751037597657, 64.41254140439241, 64.41254140439241, 0.5);
    }

    .blog-image {
        width: 100%;
        height: 250px;
        overflow: hidden;
    }

    .blog-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .blog-content {
        padding: 15px;


        .blog-title a {
            color: #2d2d2d;
            font-family: "Roboto", Sans-serif;
            font-size: 20px;
            font-weight: 600;
        }

        .blog-date {
            color: #7a7a7a;
            font-size: 12px;
            line-height: 1.3em;
            margin-bottom: 15px;
        }

        .blog-excerpt {
            color: #777;
            font-size: 14px;
            line-height: 1.5em;
            margin: 0;
        }

        .read-more {
            font-family: "Roboto", Sans-serif;
            font-size: 14px;
            font-weight: 500;
            color: #aa1e2d;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .read-more:hover {
            color: #ed1c24;
        }
    }
}

/* ===================== APPLICATION SECTION ===================== */
.application-section {
    background: #fdfdfd;
}

.application-wrapper {
    background: #fff;
    padding: 60px;
    border-radius: 40px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
    transform: translate(0, -90px);
}

.application-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 80px;
}

@media (min-width: 992px) {
    .application-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.application-info .section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 34px;
    font-weight: 800;
    color: #111;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.application-info p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 20px;
}

.application-form-container .form-title {
    font-family: 'Oswald', sans-serif;
    font-size: 30px;
    font-weight: 800;
    color: #222;
    text-align: center;
    margin-bottom: 40px;
}

.application-form .form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

@media (min-width: 576px) {
    .application-form .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    margin-bottom: 25px;
}

.form-group label {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #222;
    margin-bottom: 8px;
}

.form-group label span {
    color: #ed1c24;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group textarea {
    padding: 12px 20px;
    border: 1.5px solid #ed1c24;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    outline: none;
    transition: box-shadow 0.3s ease;
}

.form-group textarea {
    border-radius: 20px;
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
    box-shadow: 0 0 10px rgba(237, 28, 36, 0.2);
}

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 5px;
}

.checkbox-group.vertical {
    flex-direction: column;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
}

.checkbox-label input {
    width: 16px;
    height: 16px;
    accent-color: #ed1c24;
}

.file-upload-wrapper {
    border: 1.5px solid #ed1c24;
    border-radius: 30px;
    padding: 5px 15px;
}

.file-upload-wrapper input[type="file"] {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #555;
    width: 100%;
}

.submit-btn {
    width: 100%;
    background-color: #f2902b;
    color: #fff;
    padding: 15px;
    border: none;
    border-radius: 40px;
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease;
    text-transform: uppercase;
    margin-top: 20px;
}

.submit-btn:hover {
    background-color: #df7f1e;
}