:root {
    --gold: #d4af37;
    --copper: #b87333;
    --dark: #0e0e0e;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.95)),
                url('hero.jpg') center/cover no-repeat;
    color: #fff;
    overflow-x: hidden;
    animation: fadeInPage 1.8s ease-in-out;
}

/* Layout */
.main-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    padding: 40px;
    gap: 40px;
}

/* Center */
.center-content {
    text-align: center;
    max-width: 600px;
    flex: 1;
}

.logo {
    max-width: 140px;
    margin-bottom: 20px;
}

.coming-soon {
    font-family: 'Playfair Display', serif;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 10px;
    font-size: 14px;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    background: linear-gradient(45deg, var(--gold), var(--copper));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(to right, var(--gold), var(--copper));
    margin: 20px auto;
}

.tagline {
    color: #ccc;
    margin-bottom: 30px;
}

.countdown {
    font-size: 22px;
    margin-bottom: 30px;
    color: var(--gold);
    letter-spacing: 2px;
}

/* Form */
input[type="email"] {
    padding: 12px 18px;
    border-radius: 30px;
    border: 1px solid rgba(212,175,55,0.5);
    background: transparent;
    color: #fff;
    width: 260px;
    outline: none;
}

button {
    padding: 12px 22px;
    border-radius: 30px;
    border: none;
    background: linear-gradient(45deg, var(--gold), var(--copper));
    color: #111;
    font-weight: 600;
    margin-left: 10px;
    cursor: pointer;
    transition: 0.4s ease;
}

button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(212,175,55,0.7);
}

.message {
    margin-top: 15px;
    color: var(--gold);
}

/* Side Images */
.side-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.side-image img {
    width: 100%;
    max-width: 420px;
    border-radius: 12px;
    border: 1px solid rgba(212,175,55,0.4);
    opacity: 0.85;
    transform: scale(1);
    transition: 0.6s ease;
}

.side-image:hover img {
    opacity: 1;
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    width: 100%;
    max-width: 420px;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.2));
    border-radius: 12px;
}

/* Fade in */
@keyframes fadeInPage {
    from {opacity: 0; transform: translateY(20px);}
    to {opacity: 1; transform: translateY(0);}
}

/* Responsive */
@media (max-width: 992px) {

    .main-layout {
        flex-direction: column;
        align-items: center;
    }

    /* Force order on mobile */
    .center-content {
        order: 1;
    }

    .side-image:nth-of-type(1) {
        order: 2;
    }

    .side-image:nth-of-type(2) {
        order: 3;
    }

    .side-image {
        margin-top: 30px;
    }

    .side-image img {
        max-width: 90%;
    }
}


/* Hide mobile carousel on desktop */
.mobile-only {
    display: none;
}

/* Hide desktop images on mobile */
.desktop-only {
    display: flex;
}

/* Mobile Carousel */
.mobile-carousel {
    margin-top: 40px;
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.carousel-track img {
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(212,175,55,0.4);
}

/* Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.carousel-dots span {
    height: 8px;
    width: 8px;
    margin: 0 5px;
    background: rgba(212,175,55,0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.carousel-dots span.active {
    background: linear-gradient(45deg, var(--gold), var(--copper));
}

/* Responsive switch */
@media (max-width: 992px) {

    .main-layout {
        flex-direction: column;
    }

    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: block;
        width: 100%;
    }
}


/* BOOK NOW BUTTON */
.book-button-wrapper {
    margin-top: 30px;
}

.book-now-btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 14px;
    background: linear-gradient(45deg, var(--gold), var(--copper));
    color: #111;
    transition: 0.4s ease;
    box-shadow: 0 0 0 rgba(212,175,55,0.6);
}

.book-now-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(212,175,55,0.7);
}

/* BOOK BUTTON */
.book-button-wrapper {
    margin-top: 30px;
}

.book-now-btn {
    padding: 14px 36px;
    border-radius: 40px;
    border: none;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 14px;
    cursor: pointer;
    background: linear-gradient(45deg, var(--gold), var(--copper));
    color: #111;
    transition: 0.4s ease;
}

.book-now-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(212,175,55,0.7);
}

/* MODAL */
.luxury-modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.4s ease;
}

.modal-content {
    background: #111;
    padding: 50px 40px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(212,175,55,0.4);
    max-width: 420px;
    width: 90%;
    animation: slideUp 0.4s ease;
}

.modal-content h2 {
    font-family: 'Playfair Display', serif;
    background: linear-gradient(45deg, var(--gold), var(--copper));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.modal-content p {
    color: #ccc;
    font-size: 16px;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: var(--gold);
}

/* Animations */
@keyframes slideUp {
    from {transform: translateY(20px); opacity: 0;}
    to {transform: translateY(0); opacity: 1;}
}

/* CONTACT INFO */
.contact-info {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.contact-icon {
    color: var(--gold);
    font-size: 16px;
}

.contact-item a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s ease;
}

.contact-item a:hover {
    color: var(--gold);
}

/* Mobile spacing refinement */
@media (max-width: 768px) {
    .contact-info {
        flex-direction: column;
        gap: 12px;
    }
}