:root {
    --navy: #112545;
    --navy-dark: #0a1528;
    --navy-deep: #050b16;
    --gold1: #c69d58;
    --gold2: #f8f4ab;
    --gold3: #cba45e;
    --text-light: #f2f2f2;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Playfair Display', serif;
    background: var(--navy-deep);
    color: var(--text-light);
    overflow-x: hidden;
}

/* HEADER */
header {
    background: var(--navy-dark);
    padding: 40px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

header img {
    max-width: 260px;
    filter: drop-shadow(0 0 12px rgba(255,255,255,0.15));
}

/* HERO */
.hero {
    position: relative;
    padding: 180px 20px;
    text-align: center;
    background: linear-gradient(135deg, rgba(0,0,0,0.4), rgba(17,37,69,0.9)),
                url('https://images.pexels.com/photos/3993446/pexels-photo-3993446.jpeg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

/* MASSIVE rotated watermark logo */
.hero-watermark {
    position: absolute;
    right: -180px;
    top: 50%;
    transform: translateY(-50%) rotate(-18deg);
    width: 900px;
    opacity: 0.10;
    pointer-events: none;
    filter: drop-shadow(0 0 20px rgba(0,0,0,0.4));
}

/* MAIN logo inside hero */
.hero-main-logo {
    width: 260px;
    filter: drop-shadow(0 0 12px rgba(0,0,0,0.4));
    z-index: 2;
    position: relative;
}

/* GENERIC SECTION */
.section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.section h2 {
    font-size: 3rem;
    margin-bottom: 10px;
    font-family: 'Cinzel', serif;
    color: var(--gold2);
    letter-spacing: 2px;
}

.section p {
    font-size: 1.2rem;
    color: #d8d8d8;
    max-width: 800px;
    margin: 0 auto;
}

/* ABOUT SECTION */
.about-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}

.about-img {
    width: 380px;
    height: 500px;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid var(--gold1);
    box-shadow: 0 0 25px rgba(0,0,0,0.4);
}

.about-text {
    max-width: 600px;
    text-align: left;
    font-size: 1.2rem;
    line-height: 1.7;
}

@media (max-width: 900px) {
    .about-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 0 20px;
    }

    .about-img {
        width: 90%;
        max-width: 380px;
        margin-bottom: 30px;
    }

    .about-text {
        text-align: center;
    }
}

/* SERVICES */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 30px;
}

.service-card {
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 0 25px rgba(0,0,0,0.4);
    transform: translateY(0);
    transition: transform 0.55s cubic-bezier(.25,.8,.25,1),
                box-shadow 0.55s ease;
}

.service-card:hover {
    transform: translateY(-18px) scale(1.02) !important;
    box-shadow: 0 0 45px rgba(198,157,88,0.35);
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.service-card h3 {
    margin: 20px 0 10px;
    font-size: 1.6rem;
    font-family: 'Cinzel', serif;
    color: var(--gold2);
    letter-spacing: 1px;
}

.service-card p {
    padding: 0 20px 30px;
    font-size: 1rem;
    color: #e0e0e0;
}

/* GALLERY */
#gallery {
    margin-top: 40px;
    margin-bottom: 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-img {
    width: 100%;
    height: 420px;
    border-radius: 12px;
    border: 1px solid var(--gold1);
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-img:hover {
    transform: scale(1.03);
    box-shadow: 0 0 25px rgba(198,157,88,0.4);
}

/* MODAL (supports images + videos) */
#gallery-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    z-index: 9999;
}

#gallery-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-media {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
    border: 2px solid var(--gold1);
    display: none;
    object-fit: contain;
}

#modal-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 3rem;
    color: var(--gold2);
    cursor: pointer;
}

/* CONTACT */
.contact {
    background: var(--navy-dark);
    padding: 100px 20px;
    text-align: center;
}

.contact h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.4rem;
    color: var(--gold2);
    letter-spacing: 2px;
    margin-bottom: 20px;
}

form {
    max-width: 600px;
    margin: auto;
    text-align: left;
}

form input,
form textarea {
    width: 100%;
    padding: 16px;
    margin: 12px 0;
    border-radius: 8px;
    border: 1px solid var(--gold3);
    background: rgba(255,255,255,0.05);
    color: var(--gold2);
}

form button {
    font-family: 'Playfair Display', serif;
    background: linear-gradient(135deg, var(--gold1), var(--gold2), var(--gold3));
    border: none;
    padding: 16px 40px;
    font-size: 1.3rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    color: var(--navy-dark);
    width: 100%;
}

.book-now-btn {
    display: inline-block;
    font-family: 'Playfair Display', serif;
    background: linear-gradient(135deg, var(--gold1), var(--gold2), var(--gold3));
    padding: 16px 40px;
    font-size: 1.3rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    color: var(--navy-dark);
    text-decoration: none;
    border: none;
    text-align: center;
    box-shadow: 0 0 20px rgba(0,0,0,0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* width: 100%;  <-- REMOVE THIS */
}


.book-now-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(198,157,88,0.45);
}

.book-now-image-btn {
    display: block;
    margin: 0 auto;

    /* Responsive sizing */
    width: min(500px, 90%);  /* grows up to 420px but shrinks on mobile */
    aspect-ratio: 3 / 1;     /* keeps proportions */
    background: url('../assets/book-now.png') center/contain no-repeat;

    border: none;
    padding: 0;
    background-color: transparent;

    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 0 20px rgba(0,0,0,0.25));
}

.book-now-image-btn:hover {
    transform: translateY(-6px);
    filter: drop-shadow(0 0 35px rgba(198,157,88,0.55));
}



/* FOOTER */
footer {
    background: var(--navy-deep);
    padding: 50px 20px;
    text-align: center;
    color: var(--gold3);
}

footer img {
    max-width: 120px;
    opacity: 0.8;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-main-logo {
        width: 200px;
    }

    .hero-watermark {
        width: 600px;
        right: -120px;
        opacity: 0.12;
    }

    .section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    /* Force two-column gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        justify-items: center;
    }

    .gallery-img {
        height: 340px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        gap: 12px;
    }

    .gallery-img {
        height: 300px;
    }
    
    .book-now-image-btn {
        margin-left: auto;
        margin-right: auto;
    }
}
