/* ------ Media Queries ------ */
@media (max-width: 1199px) {
    /* --- Global Styles --- */
    .container {
        padding: 100px 50px;
    }

    .section_container {
        padding: 100px 50px;
    }

    .subtitle_content {
        font-size: var(--font-subtitle-m);
    }



    /* --- Header --- */
    .header .header_cont {
        padding: 0 50px;
    }

    .header .logo img {
        height: 60px;
    }



    /* --- Section Home --- */
    /* Home Hero */
    .home-hero .slide-content {
        box-sizing: border-box;
        padding: 60px 50px !important;
    }

    .home-hero .slide-description p {
        font-size: var(--font-subtitle-m);
    }

    .home-hero .slider-controls .slider-btn {
        display: none;
    }

    /* Home About */
    .home-about .home-about_content {
        gap: 50px;
    }

    /* Home Services */
    .home-services .home-services_content {
        gap: 25px 0;
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        grid-template-areas:
            "hotdogs . cocktails"
            ". tacos .";
        height: auto;
    }

    .home-services .home-services_content .hotdogs {
        grid-area: hotdogs;
    }

    .home-services .home-services_content .tacos {
        grid-area: tacos;
    }

    .home-services .home-services_content .cocktails {
        grid-area: cocktails;
    }

    .home-services .tacos .home-services_description {
        order: 2;
    }

    .home-services .tacos .home-services_image {
        order: 1;
    }



    /* --- Section About --- */
    .section-about .about_title,
    .section-services .services_title,
    .section-menu .menu_title,
    .section-contact .contact_title {
        height: 50dvh;
        margin: 100px 50px 0 50px;
    }

    .section-about .about_gallery .section_container,
    .section-services .services_content-2 .section_container,
    .section-menu .menu_content-2 .container {
        padding: 0 50px 100px 50px;
    }



    /* --- Contact Section --- */
    .section-contact .contact_data {
        margin-top: -100px;
    }

    .section-contact .contact_data .container {
        padding: 0 50px;
    }

    .section-contact .contact_data .contact_form {
        width: 85%;
    }

    .section-contact .contact_data .contact-data_info {
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 25px;
        justify-content: space-around;
        text-align: center;
    }

    .section-contact .contact_data .contact-data_info .contact-data_mail {
        order: 1;
    }

    .section-contact .contact_data .contact-data_info .contact-data_location {
        order: 3;
    }

    .section-contact .contact_data .contact-data_info .contact-data_phone {
        order: 2;
    }



    /* --- Footer --- */
    .footer .footer-container {
        padding: 100px 50px 25px;
    }

    .footer .footer_logo img {
        height: 65px;
    }
}



@media (max-width: 1023px) {
    .section_container {
        padding: 50px;
    }


    /* --- Header --- */
    .header {
        height: 100px;
    }

    .header .navbar {
        background: #181818;
        box-shadow: none;
        height: 100vh;
        width: 100vw;
        overflow-y: auto;
        padding: 40px;
        position: fixed;
        left: 0;
        top: 0;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(.77,0,.18,1);
        z-index: 2000;

        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header .navbar.show {
        transform: translateX(0);
    }

    .header .header-wraper .navbar.show + .menu-icon {
        opacity: 0;
        pointer-events: none;
    }

    .header .navbar .navbar_menu {
        max-width: 400px;
        width: 100%;

        display: flex;
        align-items: center;
        flex-direction: column;
        gap: 50px;
        justify-content: center;
    }

    .header .navbar .navbar_menu a {
        color: var(--color-whitesmoke);
        opacity: 0;
        padding: 15px 25px 12px 25px;
        text-align: center;
        transform: translateY(30px) scale(0.8);
        transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        width: auto;
    }

    .header .navbar.show .navbar_menu a {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    .header .navbar.show .navbar_menu a:nth-child(1) {
        transition-delay: 0.1s;
    }

    .header .navbar.show .navbar_menu a:nth-child(2) {
        transition-delay: 0.2s;
    }

    .header .navbar.show .navbar_menu a:nth-child(3) {
        transition-delay: 0.3s;
    }

    .header .navbar.show .navbar_menu a:nth-child(4) {
        transition-delay: 0.4s;
    }

    .header .navbar.show .navbar_menu a:nth-child(5) {
        transition-delay: 0.5s;
    }

    .header .navbar .navbar_menu a.active {
        color: var(--color-primary1);
    }

    .header .navbar .navbar_menu a.active::after {
        width: 0;
    }

    .header .close-icon {
        background: rgba(255, 255, 255, 0.1);
        border: none;
        cursor: pointer;
        opacity: 0;
        padding: 12px;
        pointer-events: auto;
        position: absolute;
        right: 50px !important;
        top: 28px !important;
        user-select: none;
        transform: rotate(-90deg) scale(0.5);
        transition: opacity 0.4s ease 0.2s, transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.2s;
        z-index: 2101;

        display: flex !important;
        align-items: center;
        justify-content: center;
    }

    .header .navbar.show .close-icon {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }

    .header .menu-icon {
        display: block;
        transition: opacity 0.3s;
        z-index: 1500;
    }



    /* --- Main Container --- */
    .main-content {
        min-height: calc(100vh - 100px);
        padding-top: 100px;
    }

    /* --- Section Home --- */
    /* Home Hero */
    .section-home {
        min-height: calc(100dvh - 100px);
    }

    .home-hero {
        min-height: calc(100dvh - 100px);
    }

    .home-hero .slide-1 .slide-image img {
        height: clamp(200px, 45vw, 500px);
    }

    /* Home About */
    .home-about .home-about_content {
        gap: 25px;
    }

    /* Home Services */
    .home-services .home-services_content {
        display: grid;
        gap: 50px;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 1fr);
        grid-template-areas:
            "hotdogs"
            "tacos"
            "cocktails";
    }

    .home-services .home-services_description {
        aspect-ratio: auto;
    }

    .home-services .home-services_content img {
        aspect-ratio: 16 / 9;
    }

    /* Home Opinion */
    .home-opinion .reviewer .avatar {
        font-size: 1.25rem;
        height: 55px;
        width: 55px;
    }



    /* --- About Section --- */
    .section-about .about_content .section_container {
        gap: 25px;
    }



    /* --- Services Section --- */
    .section-services .services_content .section_container {
        gap: 25px;
        grid-template-columns: 1fr 1fr;
    }

    .section-services .services_content .catering .section_container {
        grid-template-columns: 1fr 1fr;
    }



    /* --- Menu Section --- */
    .section-menu .menu_content .menu_hotdogs .container,
    .section-menu .menu_content .menu_snacks .container {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    .section-menu .menu_content .menu_tacos .container,
    .section-menu .menu_content .menu_drinks .container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    .section-menu .menu_hotdogs .menu_image,
    .section-menu .menu_tacos .menu_image,
    .section-menu .menu_snacks .menu_image,
    .section-menu .menu_drinks .menu_image {
        justify-content: center;
        align-items: flex-start;
    }



    /* --- Contact Section --- */
    .section-contact .contact_data .contact-data_info .contact-data_mail {
        order: 1;
    }

    .section-contact .contact_data .contact-data_info .contact-data_location {
        order: 2;
    }

    .section-contact .contact_data .contact-data_info .contact-data_phone {
        order: 3;
    }



    /* --- Footer --- */
    .footer .footer_logo {
        margin-bottom: 50px;
    }

    .footer .footer_content {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 50px;
    }

    .footer .description {
        grid-row: 1;
        grid-column: 1 / span 2; /* Ocupa columna 1 y 2 */
    }

    .footer .footer_row {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 25px;
        grid-row: 2;
        grid-column: 1 / span 3;
    }

    .footer .footer_block-1 {
        grid-column: 1;
    }
    .footer .footer_block-2 {
        grid-column: 2;
    }
    .footer .footer-menu {
        grid-column: 3;
    }
}



@media (max-width: 767px) {
    /* --- Global Styles --- */
    .container {
        padding: 50px 25px;
    }

    .section_container {
        padding: 50px 25px;
    }

    .subtitle_content {
        font-size: var(--font-subtitle-s) !important;
    }

    .text_content {
        font-size: var(--font-text-s) !important;
    }



    /* --- Boutton Order --- */
    .order {
        padding: 10px;
    }
    .order span {
        display: none;
    }

    .order svg {
        height: 30px;
        width: 30px;
    }



    /* --- Header --- */
    .header {
        height: 90px;
    }

    .header .header_cont {
        padding: 0 25px;
    }

    .header .logo img {
        height: 50px;
    }

    .header .navbar .close-icon {
        right: 25px !important;
        top: 25px !important;
    }

    .header .navbar .close-icon svg {
        height: 20px;
        width: 20px;
    }

    .header .navbar .navbar_menu a {
        font-size: var(--font-menu-s);
    }

    .header .menu-icon svg {
        height: 20px;
        width: 20px;
    }



    /* --- Main Container --- */
    .main-content {
        min-height: calc(100vh - 90px);
        padding-top: 90px;
    }

    /* --- Section Home --- */
    /* Home Hero */
    .section-home {
        min-height: calc(100dvh - 90px);
    }

    .home-hero {
        height: auto;
        min-height: calc(100dvh - 90px);
    }

    .home-hero .slider {
        height: auto;
        min-height: calc(100dvh - 90px);
    }

    .home-hero .slide-active {
        opacity: 1;
        transform: none;
        position: relative;
    }

    .home-hero .slide .slide-content {
        height: auto;
        min-height: calc(100dvh - 90px);
        padding: 50px 25px !important;

        display: flex;
        align-items: center;
        flex-direction: column;
        gap: 50px;
        justify-content: center;
    }

    .home-hero .slide-description p {
        font-size: var(--font-subtitle-s);
    }

    .home-hero .cta-button {
        font-size: 1rem;
        padding: 10px 25px;
    }

    .home-hero .slide .slide-image {
        align-items: flex-start;
    }

    .home-hero .slide-1 .slide-image img {
        height: clamp(200px, 55vw, 500px);
    }

    .home-hero .slide-3 .slide-image img {
        width: clamp(200px, 55vw, 450px);
    }

    /* Home About */
    .home-about .home-about_content {
        gap: 20px;
        grid-template-columns: 1fr;
    }

    .home-about .home-about_description {
        gap: 20px;
    }

    .home-about .home-about_image {
        justify-content: flex-end;
    }

    .home-about .home-about_image img {
        width: clamp(200px, 45vw, 450px);
    }

    /* Home Services */
    .home-services .home-services_content {
        margin-bottom: 50px;
    }

    .home-services .home-services_description {
        aspect-ratio: auto;
        padding: 25px;
    }

    .home-services .home-services_gallery {
        gap: 20px;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 250px;
        grid-template-areas:
            "img1 img3"
            "img2 img2";
        height: auto;
    }

    .home-services .home-services_gallery .home-gallery_image-1 {
        grid-area: img1;
    }
    .home-services .home-services_gallery .home-gallery_image-2 {
        grid-area: img2;
    }
    .home-services .home-services_gallery .home-gallery_image-3 {
        grid-area: img3;
    }

    /* Home Opinion */
    .home-opinion .carousel .home-opinion_icon svg {
        height: 40px;
        width: auto;
    }
    .home-opinion .carousel .stars {
        font-size: 1.6rem;
    }

    .home-opinion .reviewer .avatar.text_content {
        font-size: 1.15rem !important;
    }



    /* --- About Section --- */
    .section-about .about_title,
    .section-services .services_title,
    .section-menu .menu_title,
    .section-contact .contact_title {
        margin: 50px 25px 0 25px;
        padding:0 25px;
        text-align: center;
    }

    .section-about .about_content .section_container {
        grid-template-columns: 1fr;
    }

    .section-about .about_image img {
        height: auto;
        width: 65%;
    }

    .section-about .about_gallery .section_container {
        height: auto;
        padding: 0 25px 50px 25px;

        gap: 20px;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 225px 325px;
        grid-template-areas:
            "img2 img2"
            "img1 img3";
    }

    .section-about .about_gallery .about_gallery_image-1 {
        grid-area: img1;
    }
    .section-about .about_gallery .about_gallery_image-2 {
        grid-area: img2;
    }
    .section-about .about_gallery .about_gallery_image-3 {
        grid-area: img3;
    }



    /* --- Services Section --- */
    .section-services .services_content .section_container {
        grid-template-columns: 1fr;
    }

    .section-services .services_content img {
        aspect-ratio: 16 / 9;
        margin: 0 auto;
        width: 65%;
    }

    .section-services .services_content .catering .section_container {
        grid-template-columns: 1fr;
    }

    .section-services .services_content .catering .services_image {
        order: 1;
    }

    .section-services .services_content .catering .services_description {
        order: 2;
    }

    .section-services .services_content-2 .section_container {
        padding: 0 25px 50px 25px;
    }



    /* --- Contact Section --- */
    .section-contact .contact_data .container {
        padding: 0 25px;
    }

    .section-contact .contact_data .contact_form {
        padding: 50px 25px;
        width: 90%;
    }

    .section-contact .contact_location iframe {
        height: 40dvh;
    }



    /* --- Footer --- */
    .footer {
        font-size: 0.75rem;
    }

    .footer .footer-container {
        padding: 50px 20px 25px;
    }

    .footer .footer_logo {
        margin-bottom: 25px;

        display: flex;
        justify-content: center;
    }

    .footer .footer_content {
        margin-bottom: 25px;

        display: flex;
        align-items: center;
        flex-direction: column;
        gap: 25px;
        justify-content: center;
        text-align: center;
    }

    .footer .description {
        width: 100%;
    }

    .footer .footer_row {
        order: 2;
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    .footer .footer_block-1,
    .footer .footer_block-2,
    .footer .footer-menu {
        width: 100%;
    }

    .footer .social-media {
        justify-content: center;
    }
}



@media (max-width: 479px) {
    /* --- Header --- */
    .header .logo img {
        height: 45px;
    }

    .header .navbar .navbar_menu {
        gap: 30px;
    }



    /* --- Section Home --- */
    /* Home Hero */
    .home-hero .slide-2 .slide-description .buttons {
        flex-direction: column;
        gap: 20px;
    }

    /* Home Services */
    .home-services .home-services_gallery {
        grid-template-rows: 225px 175px;
    }

    /* Home Opinion */
    .home-opinion .carousel .review-card {
        padding: 25px 20px;
    }



    /*  --- About Section --- */
    .section-about .about_title,
    .section-services .services_title,
    .section-menu .menu_title,
    .section-contact .contact_title {
        height: 40dvh;
    }

    .section-about .about_image img {
        aspect-ratio: 8 / 5;
        height: auto;
        width: 100%;
        object-fit: cover;
    }

    .section-about .about_gallery .section_container {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 175px 250px;
        grid-template-areas:
            "img2 img2"
            "img1 img3";
    }



    /* --- Services Section --- */
    .section-services .services_content img {
        width: 100%;
    }



    /* --- About Section --- */
    .section-menu .menu_content .menu_hotdogs .container,
    .section-menu .menu_content .menu_snacks .container {
        grid-template-columns: 1fr;
    }

    .section-menu .menu_content .menu_tacos .container,
    .section-menu .menu_content .menu_drinks .container {
        grid-template-columns: 1fr;
    }

    .section-menu .menu_hotdogs .menu_image,
    .section-menu .menu_tacos .menu_image,
    .section-menu .menu_snacks .menu_image,
    .section-menu .menu_drinks .menu_image {
        height: auto;
        width: 65%;
        margin: 0 auto;
    }

    .section-menu .menu_content .menu_hotdogs .menu_image,
    .section-menu .menu_content .menu_snacks .menu_image {
        order: 2;
    }

    .section-menu .menu_content .menu_hotdogs .menu_description,
    .section-menu .menu_content .menu_snacks .menu_description {
        order: 1;
    }



    /*  --- Contact Section --- */
    .section-contact .contact_data .contact_form {
        width: 100%;
    }



    /* --- Footer --- */
    .footer {
        font-size: 0.75rem;
    }

    .footer .footer-container {
        padding: 100px 20px 25px;
    }

    .footer .footer_logo {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .footer .footer_logo img {
        height: 50px;
    }

    .footer .footer_content {
        gap: 25px;
        grid-template-columns: 1fr;
    }

    .footer .footer_content .social-media {
        justify-content: center;
    }

    .footer .footer_content .description p,
    .footer .footer_content .footer_title,
    .footer .footer_content .footer_text,
    .footer .footer_content .menu a {
        text-align: center;
    }

    .footer .footer_content .description,
    .footer .footer_block-2 .phone {
        margin-bottom: 25px;
    }
}



@media (max-width: 991px) and (orientation: landscape) {
    /* --- Global Styles --- */
    .container {
        padding: 50px;
    }

    .subtitle_content {
        font-size: var(--font-subtitle-s);
    }

    .text_content {
        font-size: var(--font-text-s);
    }


    /* --- Header --- */
    .header {
        height: 90px;
    }

    .header .header-cont {
        padding: 0 20px ;
    }

    .header .logo img {
        height: 50px;
    }

    .header .navbar .close-icon {
        right: 20px !important;
        top: 20px !important;
    }

    .header .navbar .close-icon svg {
        height: 20px;
        width: 20px;
    }

    .header .navbar {
        box-sizing: border-box;
        padding: 40px !important;
    }

    .header .navbar .navbar_menu {
        gap: 15px;
    }

    .header .navbar .navbar_menu a {
        font-size: var(--font-menu-s);
        padding: 10px 20px 8px 20px;
    }

    .header .navbar .close-icon {
        right: 20px !important;
        top: 20px !important;
    }

    .header .navbar .close-icon svg {
        height: 20px;
        width: 20px;
    }

    .header .menu-icon svg {
        height: 20px;
        width: 20px;
    }



    /* --- Main Container --- */
    .main-content {
        min-height: calc(100vh - 90px);
        padding-top: 90px;
    }

    /* --- Section Home --- */
    /* Home Hero */
    .section-home {
        min-height: calc(100dvh - 90px);
    }

    .home-hero {
        height: auto;
        min-height: calc(100dvh - 90px);
    }

    .home-hero .slider {
        height: auto;
        min-height: calc(100dvh - 90px);
    }

    .home-hero .slide-active {
        opacity: 1;
        transform: none;
        position: relative;
    }

    .home-hero .slide .slide-content {
        height: auto;
        min-height: calc(100dvh - 90px);
        padding: 75px 25px !important;
    }

    .home-hero .slide-description p {
        font-size: var(--font-subtitle-s);
    }

    .home-hero .cta-button {
        font-size: 1rem;
        padding: 10px 25px;
    }

    .home-hero .slide .slide-image {
        display: flex;
        align-items: flex-start;
    }

    .home-hero .slide-1 .slide-description h1 {
        font-size: clamp(2.75rem, 4vw + 1rem, 4.75rem);
    }

    .home-hero .slide-1 .slide-image img {
        height: clamp(200px, 34vw, 420px);
    }

    .home-hero .slide-3 .slide-image img {
        width: clamp(200px, 45vw, 450px);
    }

    /* Home About */
    .home-about .home-about_content {
        gap: 20px;
        grid-template-columns: 1fr;
    }

    .home-about .home-about_description {
        gap: 20px;
    }

    .home-about .home-about_image {
        justify-content: flex-end;
    }

    .home-about .home-about_image img {
        width: clamp(200px, 37vw, 450px);
    }

    /* Home Services */
    .home-services .home-services_gallery {
        grid-template-rows: 450px 250px;
    }



    /* --- About Section --- */
    .section-about .about_title {
        background-position: center 50%;
        height: 70dvh;
    }



    .section-services .services_title {
        background-position: center 85%;
        height: 70dvh;
    }



    /* --- Footer --- */
    .footer {
        font-size: 0.75rem;
    }
}