/* ===== LUXURY COLOR VARIABLES ===== */
:root {
    --gold: #d4af37;
    --dark: #000;
    --soft-dark: #0b0b0b;
    --text-soft: #ccc;
}

/* ===== SPLIT HERO ===== */
.hero-split {
    display: flex;
    align-items: stretch;
    /* 👈 important */
    min-height: 85vh;
    background: linear-gradient(90deg, #000 55%, #0b0b0b 100%);
    overflow: hidden;
}

.btn {
    width: fit-content;
}

/* LEFT SIDE */
.hero-content {
    width: 50%;
    padding: 0 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content h2 {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.2;
    background: linear-gradient(90deg, #d4af37, #ffd700, #ffcc00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    margin: 25px 0 40px;
    font-size: 17px;
    color: #ccc;
    max-width: 520px;
}

/* RIGHT SIDE IMAGE */
.hero-image {
    width: 50%;
    height: auto;
    /* inherits height from parent */
    background-image: url("images/decorated-banquet-hall-with-flowers.jpg");
    background-size: cover;
    background-position: center;
    position: relative;
}

/* DARK GRADIENT OVER IMAGE */
.hero-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0.85),
            rgba(0, 0, 0, 0.15));
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-content,
    .hero-image {
        width: 100%;
    }

    .hero-content {
        padding: 80px 25px;
        text-align: center;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-image {
        height: 300px;
        /* 👈 fixed height on mobile */
    }
}

@media (max-width: 600px) {
    .hero-content h2 {
        font-size: 30px;
    }
}


/* ===== HIGHLIGHTS ===== */
.lux-highlights {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 60px 20px;
    background: #050505;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

.lux-box {
    background: linear-gradient(180deg, #111, #000);
    padding: 30px 25px;
    width: 260px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.8);
    transition: all 0.4s ease;
}

.lux-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.35);
}

.lux-box h3 {
    color: var(--gold);
    font-size: 32px;
    margin-bottom: 8px;
}

.lux-box p {
    font-size: 14px;
    color: var(--text-soft);
}

/* ===== EVENT SLIDER TITLE ===== */
.home-slider {
    padding: 80px 0;
    text-align: center;
    background: #000;
}

.home-slider h2 {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(90deg, var(--gold), #ffd700, #ffcc00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.35);
    margin-bottom: 50px;
    position: relative;
}

.home-slider h2::after {
    content: "";
    width: 140px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), transparent);
    display: block;
    margin: 14px auto 0;
    border-radius: 4px;
}

/* ===== SLIDER ===== */
.bg-slider {
    width: 100%;
    overflow: hidden;
}

.bg-track {
    display: flex;
    width: max-content;
    gap: 2rem;
    animation: seamlessScroll 35s linear infinite;
}

.bg-slide {
    width: 25vw;
    height: 320px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.bg-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.45);
}

.img1 {
    background-image: url("images/decorated-banquet-hall-with-flowers.jpg");
}

.img2 {
    background-image: url("images/download.jpg");
}

.img3 {
    background-image: url("images/24987.jpg");
}

.img4 {
    background-image: url("images/empty-black-window-curtains-with-birthday-decoration-with-love-balloon-background-product-display_675204-1155.avif");
}

@keyframes seamlessScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ===== WHY US ===== */
.home-why {
    padding: 90px 20px;
    background: linear-gradient(180deg, #0b0b0b, #000);
    text-align: center;
}

.home-why h2 {
    color: var(--gold);
    font-size: 36px;
    margin-bottom: 50px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.why-card {
    background: #111;
    padding: 30px;
    border-radius: 18px;
    border: 1px solid #222;
    transition: all 0.4s ease;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 35px rgba(212, 175, 55, 0.25);
    border-color: var(--gold);
}

.why-card h4 {
    color: var(--gold);
    margin-bottom: 12px;
}

.why-card p {
    font-size: 14px;
    color: var(--text-soft);
}


/* ===== CTA ===== */
.cta {
    padding: 90px 20px;
    text-align: center;
    background: radial-gradient(circle, #111, #000);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .lux-highlights {
        flex-direction: column;
        align-items: center;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bg-slide {
        width: 40vw;
    }

    .btn {
        width: fit-content;
        margin: auto;
    }
}

@media (max-width: 600px) {
    .hero h2 {
        font-size: 30px;
    }

    .home-slider h2 {
        font-size: 26px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .bg-slide {
        width: 80vw;
        height: 220px;
    }

    .footer-line{
        width: 80%;
    }
}