/* ======================================== */
/* ROOT VARIABLES */
/* ======================================== */

:root {

    /* COLORS */
    --color-white: #ffffff;
    --color-off-white: #f8f6f2;
    --color-beige: #ece7df;

    --color-black: #111111;
    --color-dark-gray: #444444;
    --color-light-gray: #d9d9d9;
    --color-greenlive: #38D130;

    /* color azulado/verde solicitado */
    --color-accent: #0b3038;

    --color-overlay: rgba(0, 0, 0, 0.32);

    /* TYPOGRAPHY */
    --font-title: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* CONTAINER */
    --container-width: 1400px;

    /* TRANSITIONS */
    --transition-slow: 0.4s ease;
    --transition-medium: 0.3s ease;

}

/* ======================================== */
/* RESET */
/* ======================================== */

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

/* ======================================== */
/* HTML */
/* ======================================== */

html {
    scroll-behavior: smooth;
}

/* ======================================== */
/* BODY */
/* ======================================== */

body {

    font-family: var(--font-body);
    background-color: var(--color-white);
    color: var(--color-black);

    overflow-x: hidden;
}

/* ======================================== */
/* IMAGES */
/* ======================================== */

img {
    width: 100%;
    display: block;
}

/* ======================================== */
/* LINKS */
/* ======================================== */

a {
    text-decoration: none;
    color: inherit;
}

/* ======================================== */
/* LISTS */
/* ======================================== */

ul {
    list-style: none;
}

/* ======================================== */
/* CONTAINER */
/* ======================================== */

.container {

    width: 100%;
    max-width: var(--container-width);

    margin: 0 auto;

    padding-left: 40px;
    padding-right: 40px;

}

/* ======================================== */
/* HEADER */
/* ======================================== */

.main-header {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;
}

/* ======================================== */
/* NAVBAR */
/* ======================================== */

.navbar {

    display: flex;

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

    padding: 28px 60px;

    transition: var(--transition-slow);
}

/* ======================================== */
/* LOGO */
/* ======================================== */

.logo {

    width: 180px;
    object-fit: contain;
}

/* ======================================== */
/* NAV LINKS */
/* ======================================== */

.nav-links {

    display: flex;
    align-items: center;

    gap: 42px;
}

/* NAV LINKS A */

.nav-links a {

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

    color: var(--color-white);

    letter-spacing: 0.5px;

    position: relative;

    transition: var(--transition-medium);
}

/* HOVER EFFECT */

.nav-links a::after {

    content: '';

    position: absolute;

    left: 0;
    bottom: -6px;

    width: 0%;
    height: 1px;

    background-color: var(--color-white);

    transition: var(--transition-medium);
}

.nav-links a:hover::after {
    width: 100%;
}

/* ======================================== */
/* NAV RIGHT */
/* ======================================== */

.nav-right {

    display: flex;
    align-items: center;

    gap: 28px;
}

/* ======================================== */
/* LANGUAGE SWITCH */
/* ======================================== */

.language-switch {

    display: flex;
    align-items: center;

    gap: 8px;

    color: var(--color-white);

    font-size: 0.9rem;
}

/* ACTIVE LANGUAGE */

.active-language {
    font-weight: 600;
}

/* ======================================== */
/* LANGUAGE DROPDOWN */
/* ======================================== */

.language-switch {

    position: relative;
}

.language-button {

    background: transparent;

    border: none;

    cursor: pointer;

    font-family: var(--font-body);

    font-size: 0.9rem;

    color: inherit;
}

.language-dropdown {

    position: absolute;

    top: 35px;

    right: 0;

    min-width: 170px;

    background-color: var(--color-white);

    border: 1px solid rgba(0,0,0,0.08);

    box-shadow: 0 10px 30px rgba(0,0,0,0.08);

    display: none;

    flex-direction: column;

    z-index: 999;

}

.language-dropdown a {

    padding: 12px 18px;

    text-decoration: none;

    color: var(--color-accent);

    transition: 0.3s;
}

.language-dropdown a:hover {

    background-color: var(--color-accent);
    color: var(--color-white);
}

.language-switch.active .language-dropdown {

    display: flex;
}

/* ======================================== */
/* RESERVE BUTTON */
/* ======================================== */

.reserve-button {

    border: 1px solid rgba(255, 255, 255, 0.6);

    padding: 12px 26px;

    color: var(--color-white);

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

    transition: var(--transition-medium);
}

/* HOVER */

.reserve-button:hover {

    background-color: var(--color-white);
    color: var(--color-black);
}


/* ======================================== */
/* HERO SECTION */
/* ======================================== */

.hero-section {

    position: relative;

    width: 100%;
    height: 100vh;

    overflow: hidden;
}

/* ======================================== */
/* HERO IMAGE */
/* ======================================== */

.hero-image {

    width: 100%;
    height: 100%;

    object-fit: cover;

    will-change: transform;
}

/* ======================================== */
/* HERO OVERLAY */
/* ======================================== */

.hero-overlay {

    position: absolute;

    inset: 0;

    background-color: var(--color-overlay);

    z-index: 1;
}

/* ======================================== */
/* HERO CONTENT */
/* ======================================== */

.hero-content {

    position: absolute;

    inset: 0;

    z-index: 2;

    display: flex;

    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;

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

/* ======================================== */
/* HERO TITLE */
/* ======================================== */

.hero-title {

    font-family: var(--font-title);

    font-size: 5rem;
    font-weight: 500;

    letter-spacing: 2px;

    margin-bottom: 32px;
}

/* ======================================== */
/* HERO DESCRIPTION */
/* ======================================== */

.hero-description {

    max-width: 720px;

    margin-bottom: 40px;

    padding-left: 20px;
    padding-right: 20px;

    font-size: 1.05rem;

    line-height: 1.9;

    font-weight: 300;

    color: rgba(255,255,255,0.92);
}

/* ======================================== */
/* HERO BUTTON */
/* ======================================== */

.hero-button {

    border: 1px solid rgba(255, 255, 255, 0.7);

    padding: 14px 34px;

    font-size: 0.95rem;
    letter-spacing: 1px;

    transition: var(--transition-medium);
}

/* HOVER */

.hero-button:hover {

    background-color: var(--color-white);
    color: var(--color-black);
    border: 2.5px solid var(--color-accent);
}

/* ======================================== */
/* EXPERIENCE INTRO */
/* ======================================== */

.experience-intro {

    padding-top: 140px;
    padding-bottom: 140px;

    background-color: var(--color-white);
}
.experience-intro .container {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}

/* ======================================== */
/* EXPERIENCE TEXT */
/* ======================================== */

.experience-text {

    width: 30%;

    padding-right: 30px;
}

/* INTRO TEXT */

.intro-text {

    font-size: 0.9rem;

    color: #777777;

    margin-bottom: 18px;

    letter-spacing: 1px;

    text-transform: uppercase;
}

/* EXPERIENCE TITLE */

.experience-title {

    font-family: var(--font-title);

    font-size: 3rem;
    font-weight: 400;

    line-height: 1.25;

    color: var(--color-accent);
}

/* ======================================== */
/* EXPERIENCE IMAGES */
/* ======================================== */

.experience-images {

    position: relative;

    width: 70%;

    min-height: 520px;
}

/* VERTICAL */

.image-vertical {

    position: absolute;

    top: 260px;

    left: 40px;

    width: 260px;

    z-index: 2;
}

.image-vertical img {

    width: 100%;

    height: auto;

    object-fit: cover;
}

/* HORIZONTAL */

.image-horizontal {

    position: absolute;

    top: 0;

    right: 0;

    width: 650px;

    z-index: 1;
}

.image-horizontal img {

    width: 100%;

    height: auto;

    object-fit: cover;
}

.image-vertical img,
.image-horizontal img {

    box-shadow:
        0 25px 60px rgba(0,0,0,0.12);

    transition: 0.4s ease;
}
.image-vertical:hover img,
.image-horizontal:hover img {

    transform: scale(1.02);
}

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

.main-footer {

    padding-top: 80px;
    padding-bottom: 80px;


    background-color: var(--color-white);
}
/* ===== FOOTER TEXTURE ===== */

.footer-texture {

    width: 100%;

    height: 60px;

    background-image: url('../img/branding/texturafooter.webp');

    background-repeat: repeat-x;

    background-position: center;

    background-size: auto 100%;

}

/* FOOTER CONTAINER */

.footer-container {

    display: flex;

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

    gap: 40px;
}

/* ======================================== */
/* FOOTER LOGO */
/* ======================================== */

.footer-logo {

    width: 200px;
    object-fit: cover;
}

/* ======================================== */
/* FOOTER LINKS */
/* ======================================== */

.footer-links,
.footer-contact {

    display: flex;
    align-items: center;

    gap: 24px;
    
}

/* FOOTER LINKS A */

.footer-links a,
.footer-contact a {

    font-size: 0.95rem;

    color: var(--color-dark-gray);

    transition: var(--transition-medium);
}

/* HOVER */



.footer-links a, h4:hover,
.footer-contact a ,h4 :hover {

    color: var(--color-accent);
}



/* ======================================== */
/* FOOTER V2 */
/* ======================================== */

.footer-container {

    display: flex;

    justify-content: space-between;

    align-items: flex-start;

    gap: 60px;
}

.footer-brand {

    flex-shrink: 0;
}

.footer-contact,
.footer-socials,
.footer-address {

    display: flex;

    flex-direction: column;

    gap: 14px;

    color: var(--color-accent);
}

.footer-contact h4,
.footer-socials h4,
.footer-address h4 {

    font-family: var(--font-title);

    font-size: 1.1rem;

    font-weight: 500;

    margin-bottom: 12px;

    color: var(--color-accent);
}

.footer-contact-button {

    display: inline-flex;

    justify-content: center;

    align-items: center;

    width: fit-content;

    margin-top: 10px;

    padding: 12px 24px;

    border: 1px solid var(--color-black);

    transition: var(--transition-medium);
}


.footer-contact-button:hover {

    background-color: var(--color-accent);

    color: var(--color-white);

}


.footer-address p {

    line-height: 1.8;
}

/* ======================================== */
/* NAVBAR SCROLLED */
/* ======================================== */

.navbar-scrolled {

    background-color: rgba(255, 255, 255, 0.96);

    backdrop-filter: blur(10px);

    padding-top: 18px;
    padding-bottom: 18px;

    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

/* NAV LINKS */

.navbar-scrolled .nav-links a {

    color: var(--color-accent);
}

/* NAV HOVER */

.navbar-scrolled .nav-links a::after {

    background-color: var(--color-accent);
}

/* LANGUAGE */

.navbar-scrolled .language-switch {

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

/* RESERVE BUTTON */

.navbar-scrolled .reserve-button {

    border: 1px solid rgba(0, 0, 0, 0.2);

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

/* RESERVE BUTTON HOVER */

.navbar-scrolled .reserve-button:hover {

    background-color: var(--color-accent);

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

/* ======================================== */
/* WHATSAPP FLOATING BUTTON */
/* ======================================== */

.whatsapp-float {

    position: fixed;

    right: 28px;
    bottom: 28px;

    width: 64px;
    height: 64px;

    border-radius: 50%;

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

    background-color: var(--color-accent);

    color: #ffffff;

    z-index: 9999;

    box-shadow: 0 8px 25px rgba(0,0,0,0.18);

    transition: 0.3s ease;
}

/* HOVER */

.whatsapp-float:hover {

    transform: translateY(-4px);

    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}



/*           */
/* ======================================== */
/* ROOMS HERO */
/* ======================================== */

.rooms-hero {

    position: relative;

    width: 100%;
    height: 70vh;

    overflow: hidden;
}

.rooms-hero-image {

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.rooms-hero-content {

    position: absolute;

    inset: 0;

    z-index: 2;

    display: flex;

    flex-direction: column;

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

    text-align: center;

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

.rooms-hero-title {

    font-family: var(--font-title);

    font-size: 4.5rem;

    font-weight: 500;

    margin-bottom: 20px;
}

.rooms-hero-description {

    max-width: 700px;

    padding: 0 20px;

    font-size: 1.05rem;

    line-height: 1.8;

    margin-bottom: 36px;
}

/* ======================================== */
/* ROOMS SLIDER SECTION */
/* ======================================== */

.rooms-slider-section {

    padding-top: 140px;
    padding-bottom: 140px;

    background-color: var(--color-white);
}

/* ======================================== */
/* ROOMS LAYOUT */
/* ======================================== */

.rooms-slider-layout {

    position: relative;

    width: 100%;

    min-height: 900px;
}

/* ======================================== */
/* ROOM INFO */
/* ======================================== */

.room-info {

    position: absolute;

    left: 220px;

    top: 220px;

    width: 340px;

    background-color: var(--color-white);

    padding: 50px;

    z-index: 3;
}

.room-label {

    font-size: 0.9rem;

    letter-spacing: 2px;

    color: var(--color-accent);

    margin-bottom: 20px;
}

.room-title {

    font-family: var(--font-title);

    font-size: 3.2rem;

    font-weight: 400;

    line-height: 1.2;

    margin-bottom: 30px;

    color: var(--color-accent);
}

.room-description {

    font-size: 1rem;

    line-height: 1.9;

    color: var(--color-dark-gray);

    margin-bottom: 35px;

    color: var(--color-accent);
}

.room-availability {

    display: inline-block;

    font-size: 0.95rem;

    text-decoration: underline;

    text-underline-offset: 6px;

    color: var(--color-accent);

    transition: var(--transition-medium);
}

.room-availability:hover {

    opacity: 0.7;
}

.intro-moreInfo {

    display: inline-block;

    font-size: 0.75rem;

    text-decoration: underline;

    text-underline-offset: 6px;

    transition: var(--transition-medium);

    color: var(--color-accent);
}

.intro-moreInfo:hover {

    opacity: 0.7;
}




/* ======================================== */
/* ROOM VISUAL */
/* ======================================== */

.room-visual {

    position: relative;

    width: 100%;

    min-height: 800px;
}
/* ======================================== */
/* TEXTURE IMAGE */
/* ======================================== */

.room-texture {

    position: absolute;

    left: 110px;

    top: 260px;

    width: 320px;

    height: 520px;

    z-index: 2;
}

.room-texture img {

    width: 100%;
    height: 100%;

    object-fit: cover;
}
/* ======================================== */
/* MAIN ROOM IMAGE */
/* ======================================== */

.room-image {

    position: absolute;

    right: 30px;

    top: 180px;

    width: 70%;

    z-index: 1;

    overflow: hidden;

    transition: all .5s ease;
}

.room-image:hover {
    z-index: 10;
}

.room-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: transform .8s ease;
}

.room-image:hover img{
    transform: scale(1.20);
}



/* ======================================== */
/* ROOM NAVIGATION */
/* ======================================== */

.room-navigation {

    position: absolute;

    inset: 0;

    pointer-events: none;

    z-index: 5;
}

.room-prev {

    left: -80px;
}
.room-next {

    right: -80px;
}

.room-prev,

.room-next {

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 64px;
    height: 64px;

    border-radius: 50%;

    border: 1px solid var(--color-black);

    background-color: var(--color-white);

    cursor: pointer;

    pointer-events: auto;

    transition: 0.3s ease;
}



.room-prev:hover,
.room-next:hover {

    background-color: var(--color-accent);

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


/* Puntitos ...........*/
.room-indicators {

    position: absolute;

    bottom: 60px;

    left: 50%;

    transform: translateX(-50%);

    display: flex;

    gap: 14px;

    z-index: 5;
}
.room-dot {

    width: 10px;
    height: 10px;

    border: 1px solid var(--color-black);

    transform: rotate(45deg);

    cursor: pointer;

    transition: 0.3s ease;
}
.room-dot.active {

    background-color: var(--color-accent);
}

/* ======================================== */
/* ROOM FADE */
/* ======================================== */

.room-fade {

    opacity: 0;

    transform: translateY(12px);

    transition:
        opacity 0.35s ease,
        transform 0.35s ease;
}


/* ======================================== */
/* GALLERY SECTION */
/* ======================================== */

.gallery-section {

    padding-top: 140px;
    padding-bottom: 140px;

    background-color: var(--color-white);

    overflow: hidden;

}

/* ======================================== */
/* GALLERY HEADER */
/* ======================================== */

.gallery-header {

    max-width: 800px;

    margin: 0 auto 80px auto;

    text-align: center;
}

/* LABEL */

.gallery-label {

    font-size: 3rem;

    letter-spacing: 3px;

    color: var(--color-accent);

    margin-bottom: 20px;
}

/* TITLE */

.gallery-title {

    font-family: var(--font-title);

    font-size: 0.9rem;

    font-weight: 400;

    line-height: 1.4;

    color: var(--color-accent);
}

/* ======================================== */
/* MARQUEE */
/* ======================================== */

.gallery-marquee {

    width: 100%;

    overflow: hidden;
}

/* TRACK */

.gallery-track {

  /*  max-width: 100%;*/

    display: flex;

    align-items: center;

    gap: 24px;

    width: max-content;

    animation: galleryScroll 30s linear infinite;
}

/* ======================================== */
/* IMAGES */
/* ======================================== */

.gallery-track img {

    height: 700px;

    width: auto;

    flex-shrink: 0;

    object-fit: cover;

    transition: transform 0.5s ease;
}

/* HOVER */

.gallery-track img:hover {

    transform: scale(1.03);
}

/* ======================================== */
/* PAUSE ON HOVER */
/* ======================================== */

.gallery-marquee:hover .gallery-track {

    animation-play-state: paused;
}





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

.contact-section {

    padding: 140px 0;
}

.contact-layout {

    display: flex;

    justify-content: space-between;

    gap: 120px;
}

.contact-details {

    max-width: 520px;

    color: var(--color-accent);
}

.contact-label {

    letter-spacing: 2px;

    margin-bottom: 18px;

}

.contact-title {

    font-family: var(--font-title);

    font-size: 3rem;

    font-weight: 400;

    margin-bottom: 40px;
}

.contact-list {

    display: flex;

    flex-direction: column;

    gap: 18px;

    margin-bottom: 40px;
}

.contact-list a {

    font-size: 1.05rem;
}

.contact-address {

    line-height: 1.8;
}

.contact-actions {

    display: flex;

    flex-direction: column;

    gap: 24px;

    min-width: 260px;

    color: var(--color-accent);
}

.contact-card {

    border: 1px solid var(--color-light-gray);

    padding: 26px;

    transition: var(--transition-medium);
}

.contact-card:hover {

    border-color: var(--color-black);

    color: var(--color-white);

    background-color: var(--color-accent);

    transform: translateY(-4px);
}


/* ======================================== */
/* LOCATION */
/* ======================================== */

.location-section {

    padding-bottom: 140px;
}

.location-header {

    text-align: center;

    margin-bottom: 80px;
}

.location-label {

    letter-spacing: 2px;

    margin-bottom: 18px;

    color: var(--color-accent);
}

.location-title {

    font-family: var(--font-title);

    font-size: 3rem;

    font-weight: 400;

    color: var(--color-accent);
}

.location-content {

    display: flex;

    align-items: center;

    gap: 80px;
}

.location-text {

    flex: 1;

    font-size: 1.05rem;

    line-height: 1.9;

    color: var(--color-accent);
}

.location-map {

    flex: 1.4;
}

.location-map iframe {

    width: 100%;

    height: 500px;

    border: 0;
}



/* ======boton location============= */
.footer-location-link {

    margin-top: 14px;

    display: inline-block;

    border-bottom: 2px solid var(--color-accent);

    transition: var(--transition-medium);
}

.footer-location-link:hover {

    opacity: 0.7;
}

/* ======================================== */
.footer-icon {

    width: 18px;

    height: 18px;

    object-fit: contain;
}

.footer-contact a,
.footer-location-link {

    display: flex;

    align-items: center;

    gap: 10px;
}

/* =========================
   HAMBURGER
========================= */

    .hamburger {

        display: none;

        flex-direction: column;

        gap: 6px;

        cursor: pointer;

        z-index: 1001;
    }

    .hamburger span {

        width: 28px;

        height: 2px;

        background-color: var(--color-white);

        transition: 0.3s;
    }
    /* =========================
    MENU OVERLAY
    ========================= */

    .menu-overlay {

        position: fixed;

        inset: 0;

        background: rgba(0, 0, 0, 0.45);

        opacity: 0;

        visibility: hidden;

        transition: 0.3s;

        z-index: 999;
    }

    .menu-overlay.active {

        opacity: 1;

        visibility: visible;
    }




/* ==================EXPERIENCE====================== */
/* ======================================== */
/* EXPERIENCE SPACES */
/* ======================================== */

.experience-spaces {

    padding: 120px 0;
}

.section-heading {

    text-align: center;

    max-width: 760px;

    margin: 0 auto 80px;
}

.section-subtitle {

    display: block;

    margin-bottom: 18px;

    letter-spacing: 3px;

    text-transform: uppercase;

    color: var(--color-accent);
}

.section-title {

    font-family: var(--font-title);

    font-size: 3rem;

    font-weight: 500;

    margin-bottom: 24px;

    color: var(--color-accent);
}

.section-description {

    line-height: 1.9;

    color: var(--color-accent);
}

.spaces-gallery {

    display: grid;

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

    gap: 24px;
}

.space-image-large {

    grid-column: 1 / -1;

    height: 650px;

    overflow: hidden;
}

.space-image-small {

    height: 420px;

    overflow: hidden;
}

.space-image-wide {

    grid-column: 1 / -1;

    height: 520px;

    overflow: hidden;
}

.space-image-large img,
.space-image-small img,
.space-image-wide img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform 0.8s ease;
}

.space-image-large:hover img,
.space-image-small:hover img,
.space-image-wide:hover img {

    transform: scale(1.05);
}

/* ======================================== */
/* EXPERIENCE SERVICES */
/* ======================================== */

.experience-services {

    padding: 120px 0;

    background-color: #faf8f4;
}

.services-grid {

    display: grid;

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

    gap: 30px;

    margin-top: 60px;
}

.service-card {

    background: var(--color-white);

    padding: 40px 30px;

    text-align: center;

    transition: 0.3s ease;

    border: 1px solid rgba(0,0,0,0.05);
}

.service-card:hover {

    transform: translateY(-6px);
}

.service-card img {

    width: 64px;

    height: 64px;

    margin-bottom: 24px;
}

.service-card h3 {

    font-family: var(--font-title);

    font-size: 1.3rem;

    font-weight: 500;

    margin-bottom: 16px;

    color: var(--color-accent);
}

.service-card p {

    line-height: 1.8;

    color: var(--color-accent);
}


/* ======================================== */
/* EXPERIENCE CTA */
/* ======================================== */

.experience-cta {

    padding: 120px 0;

    text-align: center;
}

.cta-gallery-top,
.cta-gallery-bottom {

    display: grid;

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

    gap: 20px;

    max-width: 1400px;

    margin: 0 auto;
}

.cta-gallery-top {

    margin-bottom: 70px;
}

.cta-gallery-bottom {

    margin-top: 70px;
}

.cta-gallery-top img,
.cta-gallery-bottom img {

    width: 100%;

    height: 220px;

    object-fit: cover;

    display: block;

    transition: transform 0.6s ease;
}

.cta-gallery-top img:hover,
.cta-gallery-bottom img:hover {

    transform: scale(1.04);
}

.cta-content {

    max-width: 700px;

    margin: 0 auto;
}

.cta-content h2 {

    font-family: var(--font-title);

    font-size: 3rem;

    font-weight: 500;

    margin-bottom: 24px;

    color: var(--color-accent);
}

.cta-content p {

    line-height: 1.9;

    margin-bottom: 40px;

    color: var(--color-accent);
}

.experience-cta .hero-button {

    color: var(--color-black);

    border-color: var(--color-black);
}

.experience-cta .hero-button:hover {

    background-color: var(--color-accent);

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



.hero-video {

    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: 1;
}


