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

:root {
    --gold: #C89A3D;
    --gold-light: #E2BE73;
    --dark: #08111d;
    --white: #ffffff;
    --gray: #d8d8d8;
}

.luxury-hero {
    position: relative;
    min-height: 80vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: #000;
}
.hero-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: heroZoom 30s linear infinite alternate;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgba(5,8,20,.82), rgba(5,8,20,.42), rgba(5,8,20,.05) );
    z-index: 2;
}
.hero-gradient {
    position: absolute;
    right: -200px;
    top: -120px;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: rgba(200,154,61,.18);
    filter: blur(120px);
    z-index: 3;
}
.hero-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(10px);
}
.hero-circle-1 {
    width: 180px;
    height: 180px;
    right: 12%;
    top: 18%;
}
.hero-circle-2 {
    width: 90px;
    height: 90px;
    left: 8%;
    bottom: 20%;
}
.hero-circle-3 {
    width: 60px;
    height: 60px;
    right: 32%;
    bottom: 12%;
}
.hero-container {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: auto;
    padding: 40px;
}
.hero-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    margin-bottom: 80px;
}
.hero-logo {
    font-family: 'Cormorant Garamond',serif;
    font-size: 38px;
    font-weight: 700;
    letter-spacing: 2px;
    color: white;
    text-decoration: none;
}
.hero-menu {
    display: flex;
    gap: 45px;
    list-style: none;
    margin: 0;
    padding: 0;
}
    .hero-menu a {
        text-decoration: none;
        color: white;
        font-family: Inter;
        font-size: 15px;
        transition: .3s;
    }
        .hero-menu a:hover {
            color: var(--gold);
        }
.hero-book-btn {
    background: var(--gold);
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: .35s;
}
    .hero-book-btn:hover {
        background: var(--gold-light);
        transform: translateY(-3px);
        color: white;
    }
/* ==========================================================
   HERO CONTENT
========================================================== */

.hero-content {
    display: grid;
    grid-template-columns: 48% 52%;
    align-items: center;
    gap: 80px;
    min-height: 75vh;
}
.hero-text {
    position: relative;
    z-index: 20;
}
.hero-script {
    display: block;
    font-family: "Great Vibes", cursive;
    font-size: 64px;
    color: var(--gold);
    margin-bottom: 10px;
    text-shadow: 0 10px 30px rgba(200,154,61,.35);
}
.hero-text h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: 92px;
    line-height: .95;
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
}
    .hero-text h1 span {
        display: block;
        color: var(--gold);
    }
.hero-text p {
    width: 520px;
    max-width: 100%;
    font-family: Inter, sans-serif;
    font-size: 18px;
    line-height: 2;
    color: #d8d8d8;
    margin-bottom: 45px;
}
.hero-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 60px;
}
.btn-primary-hero {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 18px 42px;
    border-radius: 50px;
    background: var(--gold);
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: .35s;
    box-shadow: 0 20px 40px rgba(200,154,61,.35);
}
    .btn-primary-hero:hover {
        background: var(--gold-light);
        color: white;
        transform: translateY(-4px);
    }
.btn-secondary-hero {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 18px 42px;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,.7);
    color: white;
    text-decoration: none;
    transition: .35s;
}
    .btn-secondary-hero:hover {
        background: white;
        color: #111;
    }
.hero-stats {
    display: flex;
    gap: 70px;
}
    .hero-stats div {
        position: relative;
    }
    .hero-stats h2 {
        font-family: "Cormorant Garamond", serif;
        font-size: 48px;
        font-weight: 700;
        color: white;
        margin: 0;
    }
    .hero-stats span {
        display: block;
        margin-top: 5px;
        color: #d0d0d0;
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 2px;
    }
    .hero-stats div::before {
        content: "";
        position: absolute;
        left: -35px;
        top: 12px;
        width: 1px;
        height: 45px;
        background: rgba(255,255,255,.15);
    }
    .hero-stats div:first-child::before {
        display: none;
    }
.hero-text {
    animation: heroFloat 6s ease-in-out infinite;
}
@keyframes heroFloat {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0);
    }
}
/* ==========================================================
   RIGHT SIDE
========================================================== */

.hero-slider {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.luxuryHeroSlider {
    width: 100%;
    height: 760px;
    overflow: visible;
}
    .luxuryHeroSlider .swiper-slide {
        width: 460px;
        transition: .45s;
    }
    .luxuryHeroSlider .swiper-slide-active {
        transform: scale(1.08);
        z-index: 20;
    }
    .luxuryHeroSlider .swiper-slide-next,
    .luxuryHeroSlider .swiper-slide-prev {
        transform: scale(.92);
        opacity: .75;
    }
.front-img {
   
    inset: 0;
    width: 100%;
    max-width: 100%;
    height: 45%;
    object-fit: cover;
    object-position: center;
    z-index: 10;
}
.hero-tour-card {
    position: relative;
    overflow: hidden;
    border-radius: 36px;
    height: 100%;
}

.hero-tour-image {
    width: 100%;
    height: 50%;
    display: block;
    object-fit: cover;
    object-position: center center;
}
.hero-tour-card:hover

.hero-tour-image {
    transform: scale(1.08);
}
.front-tour-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 40px;
    background: linear-gradient( transparent, rgba(0,0,0,.88) );
    color: #fff;
}
.hero-tour-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 40px;
    background: linear-gradient( transparent, rgba(0,0,0,.88) );
    color: #fff;
}
    .hero-tour-overlay small {
        display: inline-block;
        margin-bottom: 15px;
        padding: 8px 18px;
        border-radius: 30px;
        background: rgba(200,154,61,.92);
        color: white;
        font-size: 12px;
        letter-spacing: 2px;
    }
    .hero-tour-overlay h2 {
        font-family: "Cormorant Garamond", serif;
        font-size: 44px;
        margin-bottom: 12px;
    }
    .hero-tour-overlay p {
        color: #ececec;
        line-height: 1.8;
        margin-bottom: 25px;
    }
.hero-tour-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
    .hero-tour-footer h3 {
        font-family: "Cormorant Garamond", serif;
        font-size: 42px;
        color: var(--gold);
        margin: 0;
    }
.hero-tour-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 16px 30px;
    border-radius: 50px;
    background: var(--gold);
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: .35s;
}
    .hero-tour-btn:hover {
        background: var(--gold-light);
        transform: translateY(-3px);
        color: white;
    }
.swiper-pagination {
    bottom: 0 !important;
}
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: white;
    opacity: .4;
}
.swiper-pagination-bullet-active {
    width: 34px;
    border-radius: 30px;
    background: var(--gold);
    opacity: 1;
}
.hero-tour-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 36px;
    box-shadow: inset 0 -180px 180px rgba(0,0,0,.25);
}
.hero-tour-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient( 90deg, transparent, rgba(255,255,255,.18), transparent );
    transform: skewX(-20deg);
    transition: 1s;
    z-index: 5;
}
.hero-tour-card:hover::before {
    left: 160%;
}
.hero-slider {
    animation: sliderFloat 8s ease-in-out infinite;
}
@keyframes sliderFloat {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }
}
/* ==========================================================
   SOCIAL
========================================================== */
.hero-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    width: 100%;
}

    .hero-social a {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: rgba(255,255,255,.15);
        color: #fff;
        font-size: 24px;
        text-decoration: none;
        transition: .3s ease;
    }

        .hero-social a:hover {
            background: #1877F2;
            transform: translateY(-3px);
        }

        .hero-social a:last-child:hover {
            background: #000;
        }
.hero-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.social-logo {
    width: 40px;
    height: 40px;
    background: transparent;
    object-fit: contain;
}
/* ==========================================================
   SCROLL
========================================================== */

.hero-scroll {
    position: absolute;
    right: 45px;
    bottom: 60px;
    z-index: 30;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
}

    .hero-scroll span {
        font-size: 12px;
        letter-spacing: 4px;
        text-transform: uppercase;
        margin-bottom: 18px;
    }
.hero-scroll-line {
    width: 2px;
    height: 80px;
    background: rgba(255,255,255,.18);
    overflow: hidden;
    position: relative;
    display: none;
}
    .hero-scroll-line span {
        position: absolute;
        top: -40px;
        left: 0;
        width: 100%;
        height: 40px;
        background: var(--gold);
        animation: scrollLine 2s linear infinite;
    }
@keyframes scrollLine {

    0% {
        top: -40px;
    }

    100% {
        top: 80px;
    }
}
.hero-tour-overlay {
    backdrop-filter: blur(10px);
}
.hero-tour-card {
    transition: .45s;
}

    .hero-tour-card:hover {
        transform: translateY(-10px);
    }
.hero-gradient {
    animation: glow 8s ease-in-out infinite;
}
@keyframes glow {

    0% {
        opacity: .35;
        transform: scale(1);
    }

    50% {
        opacity: .65;
        transform: scale(1.15);
    }

    100% {
        opacity: .35;
        transform: scale(1);
    }
}
/* ==========================================================
   TABLET
========================================================== */

@media(max-width:1200px) {

    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .hero-text p {
        margin: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-slider {
        max-width: 550px;
        margin: auto;
    }

    .hero-social {
        display: none;
    }

    .hero-scroll {
        display: none;
    }
}
/* ==========================================================
   MOBILE
========================================================== */

@media(max-width:768px) {

    .hero-container {
        padding: 25px;
    }

    .hero-navbar {
        flex-direction: column;
        gap: 25px;
    }

    .hero-menu {
        display: none;
    }

    .hero-script {
        font-size: 42px;
    }

    .hero-text h1 {
        font-size: 58px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary-hero,
    .btn-secondary-hero {
        width: 100%;
    }

    .hero-stats {
        gap: 25px;
        flex-wrap: wrap;
    }

        .hero-stats h2 {
            font-size: 34px;
        }

    .luxuryHeroSlider {
        height: 560px;
    }

    .hero-tour-card {
        height: 520px;
    }

    .hero-tour-overlay {
        padding: 25px;
    }

        .hero-tour-overlay h2 {
            font-size: 32px;
        }

    .hero-tour-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}
@media(max-width:480px) {

    .hero-text h1 {
        font-size: 44px;
    }

    .hero-script {
        font-size: 34px;
    }

    .hero-book-btn {
        display: none;
    }

    .hero-tour-card {
        height: 450px;
    }
}
html {
    scroll-behavior: smooth;
}


.hero-navbar {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    padding: 25px 60px;
    z-index: 999;
    transition: .35s;
}

.hero-navbar-scrolled {
    background: rgba(8,17,29,.75);
    backdrop-filter: blur(16px);
    box-shadow: 0 8px 25px rgba(0,0,0,.25);
}

