/* ----------------------------------------- Global Classes Start */

:root {
    /* Colors */
    --color-terracota: #CC8A6D;
    --color-arena-dark: #C0A48E;
    --color-arena-light: #D9C8B8;
    --color-black: #000;
    --color-white: #ffffff;
    --color-red: #EB1700;
    --color-green: #3FC060;
    /* Backgrounds Opacity */
    /* --background-navbar-dark-25: rgba(22, 22, 23, 0.25); */
    --background-navbar-dark-25: rgba(0, 0, 0, 0.65);
    --background-navbar-dark-90: rgba(19, 21, 21, 0.99);
    --background-dark-banner: rgba(0, 0, 0, 0.5);
    /* Fonts Weight */
    --futura-book: 200;
    --alexandria-light: 300;
    --futura-book: 400;
    --alexandria-medium: 500;
    --alexandria-semibold: 600;
    --futura-heavy: 700;
    --alexandria-extrabold: 800;
    --alexandria-black: 900;
    /* Fonts Size */
    --fonts-xxxl: 4.5em;
    --fonts-xxl: 3.5em;
    --fonts-title: 2.5em;
    --fonts-subtitle: 1.5em;
    --fonts-paragraph: 1em;
    --fonts-small: 0.75em;
}


* {
    margin: 0 0;
    padding: 0 0;
    box-sizing: border-box;
    font-family: "Alexandria", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    /* background-color: var(--color-black); */
    z-index: 1;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--color-black);
}

/* ----------------------------------------- Fonts Size Start */

.font-xxxl {
    font-size: 4.5em;
}

.font-xxl {
    font-size: 3.5em;
}

.font-title {
    font-size: 2.5em;
}

.font-subtitle {
    font-size: 1.5em;
}

.font-m {
    font-size: 1.2em;
}

.font-paragraph {
    font-size: 1em;
}

.font-small {
    font-size: 0.75em;
}

.font-xs {
    font-size: 0.3em;
}

/* ----------------------------------------- Fonts Size End */

/* ----------------------------------------- Fonts Weight Start */

.futura-pt-book {
    font-family: "futura-pt", sans-serif;
    font-weight: var(--futura-book);
    font-style: normal;
}

.futura-pt-book-oblique {
    font-family: "futura-pt", sans-serif;
    font-weight: var(--futura-book);
    font-style: italic;
}

.futura-pt-heavy {
    font-family: "futura-pt", sans-serif;
    font-weight: var(--futura-heavy);
    font-style: normal;
}

.futura-pt-heavy-oblique {
    font-family: "futura-pt", sans-serif;
    font-weight: var(--futura-heavy);
    font-style: italic;
}

.futura-pt-bold {
    font-family: "futura-pt-bold", sans-serif;
    font-weight: var(--futura-heavy);
    font-style: normal;
}

.futura-pt-bold-oblique {
    font-family: "futura-pt-bold", sans-serif;
    font-weight: var(--futura-heavy);
    font-style: italic;
}
/* ----------------------------------------- Fonts Weight End */

/* ----------------------------------------- Colors Start */

.color-black {
    color: var(--color-black);
}

.color-white {
    color: var(--color-white);
}

.color-purple {
    color: var(--color-purple);
}

.color-purple-light {
    color: var(--color-purple-light);
}

.color-red {
    color: var(--color-red);
}

.color-terracota {
    color: var(--color-terracota);
}

.color-arena-dark {
    color: var(--color-arena-dark);
}

.color-arena-light {
    color: var(--color-arena-light);
}
/* ----------------------------------------- Colors End */

/* ----------------------------------------- Expands Start */

.expand-1 {
    transform: scale(1);
    transition: all 0.3s ease-in-out;
}

.expand-1:hover,
.expand-1:focus {
    transform: scale(1.07);
}

.border-primary-1 {
    border: 1px solid;
    border-color: var(--color-primary);
}

.border-primary-2 {
    border: 2px solid;
    border-color: var(--color-primary);
}

.border-primary-3 {
    border: 3px solid;
    border-color: var(--color-primary);
}

.border-primary-4 {
    border: 4px solid;
    border-color: var(--color-primary);
}

.border-primary-5 {
    border: 15px solid;
    border-color: var(--color-primary);
}

.border-secondary-1 {
    border: 1px solid;
    border-color: var(--color-secondary);
}

.border-secondary-2 {
    border: 2px solid;
    border-color: var(--color-secondary);
}

.border-secondary-3 {
    border: 3px solid;
    border-color: var(--color-secondary);
}

.border-secondary-4 {
    border: 4px solid;
    border-color: var(--color-secondary);
}

.border-secondary-5 {
    border: 15px solid;
    border-color: var(--color-secondary);
}

.border-radius-15 {
    border-radius: 15px;
}

/* ----------------------------------------- Expands End */

/* ----------------------------------------- Height Start */

.height-auto {
    height: auto !important;
}

.height-25 {
    height: 25vh !important;
}

.height-50 {
    height: 50vh !important;
}

.height-75 {
    height: 75vh !important;
}

.height-100 {
    height: 100vh !important;
}

/* ----------------------------------------- Height End */

/* ----------------------------------------- Padding Start */

.padding-25 {
    padding: 25vh !important;
}

.padding-50 {
    padding: 50vh !important;
}

.padding-75 {
    padding: 75vh !important;
}

.padding-100 {
    padding: 100vh !important;
}


.padding-y-25 {
    padding: 25px 0 !important;
}

.padding-y-50 {
    padding: 50px 0 !important;
}

.padding-y-75 {
    padding: 75px 0 !important;
}

.padding-y-100 {
    padding: 100px 0 !important;
}

/* ----------------------------------------- Padding End */

/* ----------------------------------------- SVG Start */

.svg-black {
    fill: var(--color-black);
    transform: scale(1);
}

.svg-white {
    fill: var(--color-white);
    transform: scale(1);
}

.svg-white:hover,
.svg-white:focus {
    fill: var(--color-primary);
    transform: scale(1.15);
    transition: all 0.3s ease-in-out;
}

.svg-primary {
    fill: var(--color-primary);
    transform: scale(1);
}

.svg-secondary {
    fill: var(--color-secondary);
    transform: scale(1);
}

/* ----------------------------------------- SVG End */

/* ----------------------------------------- Images Start */

.hover-logo {
    transform: scale(1);
    transition: all 0.3s ease-in-out;
}

.hover-logo:hover,
.hover-logo:focus {
    transform: scale(1.1);
}

.hover-black-primary {
    color: var(--color-black);
    transform: scale(1);
}

.hover-black-primary:hover,
.hover-black-primary:focus {
    color: var(--color-primary);
    transform: scale(1.2);
    transition: all .3s ease-in-out;
}

.hover-black-secondary {
    color: var(--color-black);
    transform: scale(1);
}

.hover-black-secondary:hover,
.hover-black-secondary:focus {
    color: var(--color-secondary);
    transform: scale(1.2);
    transition: all .3s ease-in-out;
}

/* ----------------------------------------- Images End */

/* ----------------------------------------- Background Start */

.background-santafe-mexican {
    background-image: url(/assets/img/2x/Color-12-background-luchador.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.background-agave-primary {
    background-image: url(/assets/img/backgrounds/Background-Primary-SFMG.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.background-agave-secondary {
    background-image: url(/assets/img/backgrounds/Background-Secondary-SFMG.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.background-nav-dark-25 {
    background-color: var(--background-navbar-dark-25);
}

.background-nav-dark-50 {
    background-color: var(--background-navbar-dark-50);
}

.background-nav-dark-90 {
    background-color: var(--background-navbar-dark-90);
}

.background-light {
    background-color: var(--color-white);
}

.background-dark {
    background-color: var(--color-black);
}

.background-dark-banner {
    width: 100%;
    height: 100%;
    background-color: var(--background-dark-banner)
}

.background-primary {
    background-color: var(--color-primary);
}

.background-primary:hover,
.background-primary:focus {
    background-color: var(--color-secondary);
    transition: all 0.3s ease;
}

.background-secondary {
    background-color: var(--color-secondary);
}

/* .background-secondary:hover,
.background-secondary:focus {
    background-color: var(--color-primary);
    transition: all 0.3s ease;
} */

/* ----------------------------------------- Background End */

/* ----------------------------------------- Button Start */

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 15px 20px;
    border-radius: 10px;
}

.btn-secondary {
    background-color: var(--color-secondary);
    color: var(--color-white);
    padding: 15px 20px;
    border-radius: 10px;
}

.btn-menu {
    background-color: transparent !important;
    color: gray;
}

.btn-menu-active {
    padding: 15px 20px;
    border-radius: 10px;
    background-color: var(--color-secondary);
    color: var(--color-white);
    
}

.btn-black {
    background-color: var(--color-black);
    color: var(--color-white);
    border-radius: 10px 10px 0 0;
}

.btn-uber {
    width: 100%;
    background-color: var(--color-green);
    color: var(--color-black);
    border-radius: 10px;
    transform: scale(1);
}

.btn-doordash {
    background-color: var(--color-red);
    color: var(--color-white);
    border-radius: 10px;
    transform: scale(1);
}

.btn-arena-dark {
    background-color: var(--color-arena-dark);
    color: var(--color-white);
    border-radius: 10px;
    transform: scale(1);
}

.btn-uber:hover, .btn-uber:focus,
.btn-doordash:hover, .btn-doordash:focus,
.btn-arena-dark:hover, .btn-arena-dark:focus {
    transform: scale(1.05);
    transition: transform 0.3s ease-in-out;
}

.button-black {
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 10px 15px;
    transform: scale(1);
}

.button-black:hover,
.button-black:focus {
    background-color: var(--color-yellow);
    color: var(--color-black);
    transform: scale(1.1);
    transition: all 0.3s ease-in-out;
}

.button-outline-primary {
    padding: 1em 1.5em;
    border: solid 1px var(--color-primary);
    border-radius: 10px;
    color: var(--color-primary);
}

.button-outline-primary:hover,
.button-outline-primary:focus {
    border: solid 1px var(--color-primary);
    border-radius: 10px;
    background-color: var(--color-primary);
    color: var(--color-white);
    transition: all 0.3s ease-in-out;
}

.button-outline-secondary {
    padding: 1em 1.5em;
    border: solid 1px var(--color-secondary);
    border-radius: 10px;
    color: var(--color-secondary);
}

.button-outline-secondary:hover,
.button-outline-secondary:focus {
    border: solid 1px var(--color-secondary);
    border-radius: 10px;
    background-color: var(--color-secondary);
    color: var(--color-white);
    transition: all 0.3s ease-in-out;
}

.button-categories {
    width: 100%;
    padding: 0.5em 0.75em;
    color: var(--color--black);
    transform: scale(1);
}

.button-categories:hover,
.button-categories:focus,
.active-categories {
    width: 100%;
    background-color: #000;
    padding-left: 1.5em;
    color: var(--color-yellow);
    transform: scale(1.1);
    transition: all 0.3s ease-in-out;
}

/* ----------------------------------------- Button End */

/* ----------------------------------------- Global Classes End */

/* ----------------------------------------- Spinner Start */

#spinner-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-terracota);
    z-index: 9999; /* Asegura que esté al frente */
}

/* ----------------------------------------- Spinner End */

/* ----------------------------------------- Navbar Start */

nav {
    position: fixed;
    z-index: 999;
    width: 100%;
    background-color: var(--background-navbar-dark-25);
    transition: box-shadow 0.5s ease;
}

header .nav-dark {
    position: sticky;
    z-index: 999;
    width: 100%;
    background-color: var(--color-black);
    transition: box-shadow 0.5s ease;
}

nav.shadow {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 1);
}

.nav-item-hover {
    text-decoration: none;
    transform: scale(1);
    transition: all 0.3s ease-in-out;
}

.nav-item-hover:hover, nav .nav-item-hover:focus {
    text-decoration: none;
    color: #000;
    transform: scale(1.2);
}

.nav-item-hover-primary {
    text-decoration: none;
    color: var(--color-white);
    transform: scale(1);
}

.nav-item-hover-primary:hover, .nav-item-hover-primary:focus {
    text-decoration: none;
    color: var(--color-primary);
    transform: scale(1.25);
    transition: all 0.3s ease-in-out;
}

.nav-item-hover-secondary {
    text-decoration: none;
    color: var(--color-white);
    transform: scale(1);
}

.nav-item-hover-secondary:hover, .nav-item-hover-secondary:focus {
    text-decoration: none;
    color: var(--color-secondary);
    transform: scale(1.25);
    transition: all 0.3s ease-in-out;
}

.nav-active-primary {
    color: var(--color-primary);
}

.nav-active-secondary {
    color: var(--color-secondary);
}

.padding-inline-top {
    padding-top: 20px;
}

.padding-inline-bottom {
    padding-bottom: 84px;
}

.padding-inline-end {
    padding-inline-end: 84px;
}

.padding-inline-small {
    padding-inline-end: 44px;
}

/* ----------------------------------------- Navbar End */

/* ----------------------------------------- Carousels Start */

.carousel-principality {
    overflow: hidden;
    width: 100%;
    height: 50vh;
    margin: 15px 0;
}


.carousel-principality img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.owl-carousel-principality {
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
}
  
.owl-carousel-principality .principality-item img {
    width: 100%;
    height: 70vh;
    object-fit: cover;
    border-radius: 10px;
}

.owl-carousel-principality .owl-stage {
    display: flex;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}
 
.owl-carousel-principality .owl-item {
    max-width: 100%; 
    flex: 0 0 auto;
}
  
.owl-carousel-principality .owl-nav > div {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-white);
}

.owl-carousel-principality .owl-nav .owl-prev {
    left: 25px;
}

.owl-carousel-principality .owl-nav .owl-next {
    right: 25px;
}

.owl-carousel-principality .owl-nav i {
    font-size: 32px;
    cursor: pointer;
}

/* ----------------------------------------- Carousels End */


/* Locations Carousel Start */
#locations {
    width: 100%;
    height: auto;
    background-image: url(/assets/img/backgrounds/locations-example.webp);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* .locations-sections img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 10px;
} */

.locations-sections .imagotipo-sc {
    width: 50%;
    height: auto;
}

.owl-locations-carousel .owl-stage {
    display: flex; /* Asegura que los elementos del carrusel estén alineados */
    justify-content: center; /* Centra el contenido en su contenedor */
    transition: all 0.3s ease-in-out; /* Suaviza las transiciones */
}
 
.owl-locations-carousel .owl-item {
    max-width: 100%; /* Evita que los elementos individuales se desborden */
    flex: 0 0 auto; /* Evita que los elementos colapsen */
}
  
.owl-locations-carousel .owl-nav > div {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-white); /* Ajusta el color al diseño deseado */
}

.owl-locations-carousel .owl-nav .owl-prev {
    left: -10px; /* Ajusta el espacio izquierdo de la flecha */
}

.owl-locations-carousel .owl-nav .owl-next {
    right: -10px; /* Ajusta el espacio derecho de la flecha */
}

.owl-locations-carousel .owl-nav i {
    font-size: 32px; /* Ajusta el tamaño de las flechas */
    cursor: pointer; /* Agrega un cursor pointer para indicar que son clicables */
}

.item-locations {
    width: 100%;
    height: auto;
    overflow: hidden;
}
  
/* Locations Carousel End */

/* ----------------------------------------- Card Top Start */

/* Adjust the items */

.item {
    text-align: start;
    padding: 20px;
}
  
.img-container {
    display: flex;
    align-items: center;
  /*   height: 244px; */
    background-color: #fff;
    position: relative;
    
    img {
      width: 100%;
      height: auto;
    }
    
    .cta-banner {
      position: absolute;
      top: 0;
      right: 0;
      max-width: 50%;
      background-color: var(--color-black);
      padding: 15px 10px;
      border-bottom-left-radius: 25px;
      font-size: 1.5rem;
      color: var(--color-yellow);
    }
}

.card-top-products {
    width: 100%;
    height: auto;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transform: scale(1);
    transition: transform 0.3s ease-in-out;
}

.card-top-products:hover,
.card-top-products:focus {
    transform: scale(1.03);
}

.card-overlay {
    position: relative;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.card-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85); /* Ajusta opacidad aquí */
    z-index: 1;
}

.card-overlay > * {
    position: relative;
    z-index: 2;
}

.card-top-products img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.owl-carousel .owl-dots {
    text-align: center;
    margin-top: 20px;  /* Ajusta el espacio entre las cards y los dots */
}

.owl-carousel .owl-dots .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    background-color: #ccc;  /* Color por defecto de los dots */
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.owl-carousel .owl-dots .owl-dot.active {
    background-color: var(--color-secondary);  /* Color de los dots activos */
}

.owl-carousel .owl-dots .owl-dot:hover {
    background-color: var(--color-secondary);  /* Color al pasar el mouse por encima */
}

/* ----------------------------------------- Card Top End */

/* ----------------------------------------- We Are Hiring Start */

.background-hiring {
    height: 60vh;
    background-image: url(/assets/img/foto-job-aplication.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.newsletter-info {
    height: auto;
    background-color: rgba(0, 0, 0, 0.5);
}


/* ----------------------------------------- We Are Hiring End */

/* ----------------------------------------- Footer Start */

.icon-footer {
    padding: 0.5em 0.75em;
    color: var(--color-white);
    transform: scale(1);
}

.icon-footer:hover,
.icon-footer:focus {
    color: var(--color-yellow);
    transform: scale(1.1);
    transition: all 0.3s ease-in-out;
}

.footer-item-hover-primary {
    color: var(--color-white);
    transform: scale(1.1);
    transition: all .3s ease-in-out;
}

.footer-item-hover-primary:hover,
.footer-item-hover-primary:focus {
    color: var(--color-primary);
    transform: scale(1.25);
}

/* ----------------------------------------- Footer End */

/* ----------------------------------------- Banners Start */

#banner-principality {
    width: 100%;
    height: 30vh;
}

/* ----------------------------------------- Banners End */

.text-space-20 {
    letter-spacing: 3px;
}

/* ----------------------------------------- Menu Start */

.card-products-body {
    width: 100%;
    height: auto;
    overflow: visible;
}

.image {
    width: 100%;
    height: 550px;
    object-fit: cover;
}

.image-vertical {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}


/* ----------------------------------------- Menu End */

/* ----------------------------------------- Pages of Products Start */

/* About Page Start */

.banner-text {
	width: 100%;
	height: 100%;
    background-color: var(--color-secondary);
}

.information-about {
	width: 100%;
	height: auto;
}

.information-about img {
	width: 100%;
	height: auto;
	object-fit: cover;
}


#skills-about {
    width: 100%;
    height: auto;
}
  
#skills-about img {
    width: 100%;
	height: 100%;
    object-fit: cover;
}

#skills-about .bg-right-skills {
	width: 100%;
	height: 50vh;
	display: flex;
	flex-direction: column;
	align-items: start;
	justify-content: center;
	padding-left: 200px;
	background-image: url(/assets/svg/Right-Design-BG.svg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

#skills-about .bg-left-skills {
	width: 100%;
	height: 50vh;
	display: flex;
	flex-direction: column;
	align-items: end;
	justify-content: center;
	padding-right: 200px;
	background-image: url(/assets/svg/Left-Design-BG.svg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.background-attachtment {
	width: 100%;
	height: 100%;
	background-image: url(/assets/img/about_us.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	
}

/* About Page End */

/* Contact Page Start */

.contact-banner {
	width: 100%;
	height: 100%;
	background-image: url(/assets/img/about_us.jpg);
	background-position: left top;
	background-repeat: no-repeat;
    background-size: cover;
}

/* Contact Page End */

/* ----------------------------------------- Pages of Products End */

/* ----------------------------------------- Reserve Page Start */

#default-carousel {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

#parties-reserve img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#private-reserve img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* ----------------------------------------- Reserve Page End */

/* ----------------------------------------- Menu Start */

/* .menu-sections {
    background-color: var(--color-primary);
} */

.menu-sections .menu-cards {
    background-color: var(--color-white);
    border-radius: 10px;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.3);
}

.winston-journal img {
    width: 100%;
    object-fit: cover;
}

/* ----------------------------------------- Menu End */

/* ----------------------------------------- 404 Start */

.error-fortyfour img {
    width: 300px;
    height: auto;
    object-fit: cover;
}

.winston-journal img {
    width: 100%;
    object-fit: cover;
}

/* ----------------------------------------- 404 End */


/* ----------------------------------------- Media Querys Start */

/* @media screen and (min-width: 992px) {
    nav img {
        height: 1.5rem;
    }

    #video-principality {
        width: 100%;
        height: 550px;
    }
} */

@media screen and (max-width: 992px) {

    nav {
        position: sticky;
        background-color: #000;
    }

    .font-xxxl {
        font-size: var(--fonts-title);
    }

    .font-xxl {
        font-size: var(--fonts-title);
    }

    .font-title {
        font-size: var(--fonts-subtitle);
    }

    .font-subtitle {
        font-size: var(--fonts-paragraph);
    }

    /* #become {
        background-position: center bottom;
    } */

    .carousel-principality {
        width: 100%;
        height: 30vh;
    }

    .carousel-principality img {
        width: 100%;
        height: 30vh;
        object-fit: cover;
    }

    #owl-locations {
        margin: 1em !important;
    }

    #locations {
        background-position: left center;
    }

    .locations-sections .imagotipo-sc {
        width: 100%;
        height: auto;
    }

    .form-type-celebration {
        display: flex;
        flex-direction: column;
    }

    #default-carousel {
        width: 100%;
        height: 600px;
        object-fit: cover;
    }

    .video-royal {
        width: 100%;
        height: 600px;
        margin-top: 3em !important;
    }
    
}