:root {
    --bg-dark: #121214;
    --accent-gold: #c5a059;
    --text-gray: #808080;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-color: #fff;
}

section {
    font-family: "Poppins", sans-serif;
}

/* Hero Section */
.mainImgHolder {
    width: 100vw;
    height: 80vh;
    position: relative;
    overflow: visible;
}

.mainImgHolder img:first-child {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mainImgHolder img:last-child {
    position: absolute;
    top: 60%;
    right: 5%;
    width: 350px;
    height: 450px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: -15px 15px 30px rgba(0, 0, 0, 0.3);
    z-index: 10;
    border: 5px solid white;
}

/* About Section */
.eventAbout {
    width: 60vw;
    padding: 80px 50px;
    text-align: left;
}

.eventAbout .mainText {
    font-family: "Unbounded";
    font-size: 3rem;
    margin: 0;
    background: linear-gradient(135deg, #444, #000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    cursor: default;
}

.eventOptions {
    display: flex;
    gap: 25px;
    margin-block: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
}

.eventOptions h3 {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--accent-gold);
    cursor: pointer;
}

.eventAbout .about {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1.1rem;
    max-width: 800px;
}

/* Parallax Divider */
.passIMG {
    width: 100vw;
    height: 60vh;
    background-image: url('./assets/jewarFront (3).avif');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Dark Info Section */
.resortInfo {
    background: var(--bg-dark);
    color: white;
    padding: 100px 10%;
}

.resortAbout h2 {
    font-family: "Unbounded";
    color: var(--accent-gold);
    font-size: 2rem;
    margin-bottom: 30px;
}

.resortOverview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.resortOverview p {
    line-height: 1.6;
    margin: 0;
}

.resortOverview p span {
    display: block;
    font-family: "Unbounded";
    font-size: 0.9rem;
    color: var(--accent-gold);
    margin-bottom: 10px;
    text-transform: uppercase;
    text-decoration: underline;
}

/* Testimonial */
.resortMotto {
    margin-top: 80px;
    padding: 40px;
    border-left: 2px solid var(--accent-gold);
    background: rgba(255, 255, 255, 0.05);
}

.resortMotto h3 {
    font-weight: 300;
    font-size: 1.4rem;
    line-height: 1.6;
}

/* Image Slider */
.imgScrollHolder {
    width: 100vw;
    padding-block: 100px;
    background: var(--bg-dark);
    position: relative;
}

.slider-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.slider-nav img {
    width: 40px;
    cursor: pointer;
    filter: invert(1);
    transition: 0.3s;
}

.slider-nav img:hover {
    transform: scale(1.2);
}

.imgSlider {
    display: flex;
    overflow-x: scroll;
    scroll-behavior: smooth;
    gap: 20px;
    padding-inline: 50px;
}

.imgSlider::-webkit-scrollbar {
    display: none;
}

.imgSlider img {
    height: 400px;
    border-radius: 15px;
    flex-shrink: 0;
}

/* CTA Button */
.getTouch {
    display: flex;
    justify-content: center;
    padding-block: 100px;
    background: white;
}

.getTouch a {
    text-decoration: none;
}

.getTouch h3 {
    font-family: "Unbounded";
    color: black;
    border: 2px solid black;
    padding: 25px 60px;
    transition: 0.4s;
    position: relative;
    z-index: 1;
}

.getTouch h3:hover {
    color: white;
    background: black;
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
    .mainImgHolder img:last-child {
        display: none;
    }

    .eventAbout {
        width: 90vw;
        padding: 40px 20px;
    }

    .eventAbout .mainText {
        font-size: 2rem;
    }

    .mainImgHolder {
        height: 50vh;
    }
}

@media (max-width: 480px) {
    .resortOverview {
        grid-template-columns: 1fr;
    }

    .imgSlider img {
        height: 250px;
    }
}