﻿/*=========================================================
    HERO SLIDER
=========================================================*/

.hero-slider {
    position: relative;
    width: 100%;
    padding-top: 100px;
    min-height: 100vh;
    overflow: visible;
    margin-top: 0;
    background: #6b0f1a;
}

.heroSwiper {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

    .heroSwiper .swiper-slide {
        position: relative;
        width: 100%;
        height: 100vh;
        overflow: hidden;
    }

        /*=========================================================
    HERO IMAGE
=========================================================*/

        .heroSwiper .swiper-slide img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            background: #6b0f1a;
        }

/*=========================================================
    OVERLAY
=========================================================*/

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgba(0,0,0,.75) 0%, rgba(0,0,0,.45) 40%, rgba(0,0,0,.15) 70%, rgba(0,0,0,.10) 100% );
    z-index: 1;
}

/*=========================================================
    CONTENT
=========================================================*/

.hero-content {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    max-width: 700px;
    z-index: 5;
    color: #fff;
}

/*=========================================================
    SUBTITLE
=========================================================*/

.hero-subtitle {
    display: inline-block;
    color: #D4AF37;
    font-size: 18px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 18px;
    font-weight: 600;
}

/*=========================================================
    TITLE
=========================================================*/

.hero-content h1 {
    font-family: 'Cormorant Garamond',serif;
    font-size: 72px;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff;
}

/*=========================================================
    DESCRIPTION
=========================================================*/

.hero-content p {
    font-size: 20px;
    line-height: 1.9;
    max-width: 620px;
    color: rgba(255,255,255,.90);
    margin-bottom: 40px;
}

/*=========================================================
    BUTTON GROUP
=========================================================*/

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/*=========================================================
    PRIMARY BUTTON
=========================================================*/

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 42px;
    border-radius: 50px;
    background: #D4AF37;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: .35s;
}

    .btn-primary:hover {
        background: #fff;
        color: #6B0F1A;
        transform: translateY(-5px);
    }

/*=========================================================
    SECONDARY BUTTON
=========================================================*/

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 42px;
    border-radius: 50px;
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: .35s;
}

    .btn-secondary:hover {
        background: #fff;
        color: #6B0F1A;
        transform: translateY(-5px);
    }

/*=========================================================
    SWIPER NAVIGATION
=========================================================*/

.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(10px);
    transition: .35s;
    color: #fff;
}

    .hero-slider .swiper-button-next:hover,
    .hero-slider .swiper-button-prev:hover {
        background: #D4AF37;
        color: #fff;
    }

    .hero-slider .swiper-button-next::after,
    .hero-slider .swiper-button-prev::after {
        font-size: 22px;
        font-weight: 700;
    }

/*=========================================================
    PAGINATION
=========================================================*/

.hero-slider .swiper-pagination {
    bottom: 35px !important;
}

.hero-slider .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    background: #fff;
    opacity: .45;
    transition: .35s;
}

.hero-slider .swiper-pagination-bullet-active {
    background: #D4AF37;
    opacity: 1;
    transform: scale(1.35);
}

/*=========================================================
    RESPONSIVE
=========================================================*/

@media(max-width:1200px) {

    .hero-content h1 {
        font-size: 60px;
    }
}

@media(max-width:992px) {

    .hero-content {
        left: 6%;
        max-width: 90%;
    }

        .hero-content h1 {
            font-size: 52px;
        }

        .hero-content p {
            font-size: 18px;
        }
}

@media(max-width:768px) {

    .hero-slider,
    .heroSwiper,
    .heroSwiper .swiper-slide {
        min-height: 100vh;
        height: auto;
    }

    .hero-content {
        left: 30px;
        right: 30px;
        max-width: 100%;
    }

        .hero-content h1 {
            font-size: 42px;
        }

        .hero-content p {
            font-size: 16px;
            line-height: 1.8;
        }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn-primary,
    .btn-secondary {
        width: 220px;
    }

    .hero-slider .swiper-button-next,
    .hero-slider .swiper-button-prev {
        display: none;
    }
}

@media(max-width:576px) {

    .hero-content {
        top: 55%;
    }

    .hero-subtitle {
        font-size: 14px;
        letter-spacing: 3px;
    }

    .hero-content h1 {
        font-size: 34px;
    }
}
/*=========================================================
    HERO ANIMATIONS
=========================================================*/

.hero-subtitle,
.hero-content h1,
.hero-content p,
.hero-buttons {
    opacity: 0;
}

.animate-subtitle {
    animation: fadeUp .8s ease forwards;
}

.animate-title {
    animation: fadeUp .8s .25s ease forwards;
}

.animate-text {
    animation: fadeUp .8s .5s ease forwards;
}

.animate-buttons {
    animation: fadeUp .8s .75s ease forwards;
}

/*=========================================================
    KEN BURNS EFFECT
=========================================================*/

.heroSwiper .swiper-slide img {
    transform: scale(1);
    transition: transform 8s ease;
}

.heroSwiper .swiper-slide-active img {
    transform: scale(1.12);
}

/*=========================================================
    FADE UP
=========================================================*/

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/*=========================================================
    HERO ANIMATIONS
=========================================================*/

.hero-subtitle,
.hero-content h1,
.hero-content p,
.hero-buttons {
    opacity: 0;
}

.animate-subtitle {
    animation: fadeUp .8s ease forwards;
}

.animate-title {
    animation: fadeUp .8s .25s ease forwards;
}

.animate-text {
    animation: fadeUp .8s .5s ease forwards;
}

.animate-buttons {
    animation: fadeUp .8s .75s ease forwards;
}

/*=========================================================
    KEN BURNS EFFECT
=========================================================*/

.heroSwiper .swiper-slide img {
    transform: scale(1);
    transition: transform 8s ease;
}

.heroSwiper .swiper-slide-active img {
    transform: scale(1.12);
}

/*=========================================================
    FADE UP
=========================================================*/

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/*=========================================================
    FLOATING BOOKING BAR
=========================================================*/

.booking-bar {
    position: absolute;
    left: 50%;
    bottom: 40px;
    transform: translateX(-50%);
    width: min(1280px,92%);
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(15px);
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0,0,0,.18);
    z-index: 50;
    padding: 25px 30px;
}

    .booking-bar form {
        display: grid;
        grid-template-columns: 2fr 1.2fr 1.2fr 1fr auto;
        gap: 20px;
        align-items: end;
    }

.booking-item {
    display: flex;
    flex-direction: column;
}

    .booking-item label {
        margin-bottom: 10px;
        color: #6B0F1A;
        font-size: 13px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .booking-item input,
    .booking-item select {
        height: 55px;
        border: 1px solid #dddddd;
        border-radius: 10px;
        padding: 0 18px;
        font-size: 15px;
        background: #fff;
        outline: none;
        transition: .35s;
    }

        .booking-item input:focus,
        .booking-item select:focus {
            border-color: #D4AF37;
            box-shadow: 0 0 0 4px rgba(212,175,55,.15);
        }

.booking-btn {
    height: 55px;
    padding: 0 35px;
    border: none;
    border-radius: 10px;
    background: #6B0F1A;
    color: #fff;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: .35s;
}

    .booking-btn:hover {
        background: #D4AF37;
        transform: translateY(-3px);
    }

/*=========================================================
    SCROLL INDICATOR
=========================================================*/

.scroll-indicator {
    position: absolute;
    left: 50%;
    bottom: 170px;
    transform: translateX(-50%);
    z-index: 60;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #ffffff;
}

    .scroll-indicator span {
        font-size: 12px;
        letter-spacing: 3px;
        text-transform: uppercase;
        margin-bottom: 12px;
    }

.mouse {
    width: 28px;
    height: 46px;
    border: 2px solid rgba(255,255,255,.8);
    border-radius: 30px;
    display: flex;
    justify-content: center;
}

.wheel {
    width: 4px;
    height: 8px;
    border-radius: 20px;
    background: #fff;
    margin-top: 8px;
    animation: scrollWheel 1.6s infinite;
}

@keyframes scrollWheel {

    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(18px);
        opacity: 0;
    }
}

/*=========================================================
    RESPONSIVE
=========================================================*/

@media(max-width:1200px) {

    .booking-bar form {
        grid-template-columns: repeat(2,1fr);
    }

    .booking-btn {
        width: 100%;
    }
}

@media(max-width:768px) {

    .booking-bar {
        position: relative;
        left: auto;
        bottom: auto;
        transform: none;
        width: 92%;
        margin: -50px auto 40px;
    }

        .booking-bar form {
            grid-template-columns: 1fr;
        }

    .scroll-indicator {
        display: none;
    }
}