* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Cinzel, Palatino Linotype, Playfair Display, sans-serif;
    color: #fa0505;
    background-color: #f0e9e6;
    line-height: 1.6;
}

/* Header & Navigation */
header {
    background: #002855;
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 200;
    letter-spacing: 1px;
}

.brand-logo {
    height: 50px;
    /* background-color: rgb(250, 250, 250); */
    width: auto;
    transition: height 0.3s ease;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: #7cc2fcfd;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.3rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #C9A55A;
}

/* ===============
   COMPACT MOBILE MENU
   =============== */

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
    z-index: 1000;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #C9A55A;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Mobile Navigation - Compact Version */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0px;        
        right: 0px;
        width: auto;
        min-width: 200px;
        max-width: 280px;
        height: auto;
        background: #00285565;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        transform: scale(0.9);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }

    .nav-links.active {
        transform: scale(1);
        opacity: 1;
        visibility: visible;
    }

    .nav-links li {
        margin: 8px 0;
        width: 100%;
    }

    .nav-links a {
        font-size: 1.1rem;
        padding: 10px 15px;
        display: block;
        width: 100%;
        border-radius: 4px;
        transition: background 0.3s ease;
    }

    .nav-links a:hover {
        background: rgba(201, 165, 90, 0.2);
    }

    /* Adjust header for mobile */
    header {
        padding: 0.8rem 0;
    }

    nav {
        padding: 0 15px;
    }

    .brand-logo {
        height: 40px;
    }
}

/* Close button for mobile nav */
.close-nav {
    display: none;
    /* We'll hide the close button since we're using click outside */
}


/* Ensure the CTA group sits above that reserved space */
.hero-section .cta-group {
    margin-bottom: calc(1.5rem + 2vh);
    /* minor separation from arrow */
}

.hero-section {
    position: relative;
    overflow: hidden;
    margin-top: 0;

    /* Layout */
    display: grid;
    /* grid makes centering + stacking easy */
    place-items: center;
    /* center content both axes */
    text-align: center;

    /* Responsive height */
    min-height: clamp(420px, 100vh, 800px);
    /* 420px floor → 100% small viewport → 800px ceiling */

    /* Spacing that adapts to screen size */
    padding: inherit;



    /* Reserve space at the bottom for the scroll arrow */
    --hero-footer-space: clamp(48px, 8vh, 88px);
    /* room for arrow + safe area */
    padding-bottom: calc(var(--hero-footer-space) + env(safe-area-inset-bottom));
    position: relative;
}

/* Fallback for browsers that don't support svh/dvh */
@supports not (height: 100vh) {
    .hero-section {
        min-height: clamp(420px, 100vh, 800px);
    }
}

/* Desktop and large tablets: fill the viewport */
@media (min-width: 992px) {
    .hero-section {
        min-height: 100vh;
        /* full dynamic viewport height on desktop */
    }
}

/* Fallback for browsers that don't support svh/dvh */
@supports not (height: 100vh) {
    .hero-section {
        min-height: 100vh;
    }
}

/* If you have a fixed/sticky header, subtract it on desktop */
:root {
    --header-h: 64px;
}

/* set to your actual header height */
@media (min-width: 992px) {
    .has-sticky-header .hero-section {
        min-height: calc(100vh - var(--header-h));
    }
}


/*Chevron / scroll indicator (update the selector to your actual class) */
.hero-section .scroll-down {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: calc(20px + env(safe-area-inset-bottom));    /* sits inside reserved area */
    font-size: 2.25rem; 
    line-height: 1;
    z-index: 1;
    pointer-events: auto;

}


/* Hero Carousel */
.hero-carousel {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 100%;
    min-width: 100%;
}
/* Ken Burns Effect - Different animation for each slide */
.carousel-slide.active:nth-child(1) img {
    animation: zoomIn 8s ease-out forwards;
}

.carousel-slide.active:nth-child(2) img {
    animation: panRight 8s ease-out forwards;
}

.carousel-slide.active:nth-child(3) img {
    animation: zoomOut 8s ease-out forwards;
}

.carousel-slide.active:nth-child(4) img {
    animation: panLeft 8s ease-out forwards;
}



@keyframes zoomIn {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.15);
    }
}

@keyframes zoomOut {
    from {
        transform: scale(1.15);
    }

    to {
        transform: scale(1);
    }
}

@keyframes panRight {
    from {
        transform: scale(1.15) translateX(-5%);
    }

    to {
        transform: scale(1.15) translateX(5%);
    }
}

@keyframes panLeft {
    from {
        transform: scale(1.15) translateX(-5%);
    }

    to {
        transform: scale(1.15) translateX(5%);
    }
}

/* Overlay on images */
.carousel-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

/* Hero Content */
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    width: 90%;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out;
}



.hero-title,
.hero-description {
    background: none;
    color: #fff;
}



.hero-content {
    position: relative;
    z-index: 3;
    color: rgba(240, 230, 230, 0.979);
    text-align: center;
    max-width: 100%;
    /* allow full width */
    width: 100%;
    /* ensures centering within the hero section */
    display: flex;
    /* flex centers horizontally & vertically */
    flex-direction: column;
    align-items: center;
    /* horizontal centering */
    justify-content: center;
    /* vertical centering */
    padding: 1 1px;
    /* remove large padding that pushes it off-center */
}

/* Carousel Controls */
.carousel-controls-hero {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 3;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: white;
    width: 40px;
    border-radius: 10px;
}

/* Arrow Controls */
.arrow {
    position: absolute;
    top: 30%;
    transform: translateY(-50%);
    font-size: 3rem;
    color: white;
    cursor: pointer;
    z-index: 3;
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem 1.5rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    user-select: none;
}

.arrow:hover {
    background: rgba(0, 0, 0, 0.6);
}

.arrow-left {
    left: 20px;
}

.arrow-right {
    right: 20px;
}


/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .nav-menu {
        gap: 1rem;
    }

    .arrow {
        font-size: 2rem;
        padding: 0.5rem 1rem;
    }
}

.hero-title {

    font-family: Cinzel, Palatino Linotype, sans-serif;
    font-size: 4.0rem;
    /* increase as needed */
    white-space: nowrap;
    /* prevents wrapping */
    display: inline-block;
    font-weight: 500;
    letter-spacing: -0.01em;
    border-radius: 4px;
    margin: 0 auto 45px auto;
    /* controlled vertical spacing */
    color: #f3e8d9;
    text-shadow:
        1.5px 1.5px 0 rgba(0, 0, 0, 0.5),
        -1.5px -1.5px 0 rgba(0, 0, 0, 0.5),
        1.5px -1.5px 0 rgba(0, 0, 0, 0.5),
        -1.5px 1.5px 0 rgba(0, 0, 0, 0.5),
        0 2px 10px rgba(0, 0, 0, 0.3);

    background-color: #8588889f;
    padding: 0px 10px;
    /* Add space around the text */

}

.hero-description {
    display: inline-block;

    color: #ecdbb6;
    font-family: 'Playfair Display', serif;
    font-size: 1.70rem;
    letter-spacing: 0.05em;
    line-height: 1.6;
    font-weight: 550;
    padding: 6px 12px;
    /* keeps background proportional */
    border-radius: 4px;
    margin-top: 25px;
    /* creates space from title */
    margin-bottom: 60px;
    /* before buttons */
    text-shadow:
        1.5px 1.5px 0 rgba(0, 0, 0, 0.5),
        -1.5px -1.5px 0 rgba(0, 0, 0, 0.5),
        1.5px -1.5px 0 rgba(0, 0, 0, 0.5),
        -0.5px 1.5px 0 rgba(0, 0, 0, 0.5),
        0 2px 10px rgba(0, 0, 0, 0.3);

    background-color: #8588889f;
    padding: 1px 10px;
    /* Add space around the text */
}

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 45px;
    /* spacing between the buttons */
    margin-top: 50px;
    /* more breathing room below hero description */
    padding: 20px 40px;
    /* adds horizontal + vertical space around button group */

    border-radius: 8px;
    /* keeps it elegant */
}




.custom-hero-btn {
    display: inline-block;
    padding: 12px 15px;
    /* Adjust these values to control height/width */
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    gap: 45px;
    font-size: 1rem;
    /* Slightly smaller font if needed */
    border: 2px solid #faf9f7e3;
    background: #C9A55A;
    color: #002855;
    font-family: Cinzel, Palatino Linotype, sans-serif;
}

.custom-hero-btn:hover {
    background: rgba(44, 67, 88, 0.856);
    border-color: #b8944a;
    color: #f3e8d9;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.custom-hero-btn-secondary {
    background: rgba(44, 67, 88, 0.856);
    color: white;

    border: 2px solid white;
}

.custom-hero-btn-secondary:hover {
    background: #C9A55A !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border: 2px solid white;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    font-size: 1rem;
}

.btn-primary {

    background: #C9A55A;
    color: #002855;
    border: 2px solid #faf9f7e3;
}

.btn-primary:hover {
    background: rgba(44, 67, 88, 0.856);
    border-color: #b8944a;
    color: #f3e8d9;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {

    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: #C9A55A !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.scroll-indicator {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: white;
    font-size: 3rem;
    animation: bounce 2s infinite;
        top: calc(95vh - 40px - 100px); /* 100px = navbar height */
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-20px) translateX(-50%);
    }

    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}


/* Android Chrome fallback */
@supports not (height: 100vh) {
    .hero-section {
        min-height: 100vh;
    }
}


.floating-book-link {
    text-decoration: none;
}

.content-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

h2 {
    font-size: 2.5rem;
    color: #002855;
    margin-bottom: 30px;
    text-align: center;
}

p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header-amenities p {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.gradient-variations {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 50px;
    justify-content: center;
}

.gradient-sample {
    width: 200px;
    height: 150px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gradient-sample img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gradient-sample .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


.gradient-label {
    text-align: center;
    margin-top: 10px;
    font-weight: 600;
    color: #002855;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }
}



/* Floating Book Now Button */
.floating-book-btn {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #002855ec;
    color: rgba(235, 219, 219, 0.938);
    border: 2px solid #f3bb66;
    border-right: none;
    padding: 15px 20px;
    border-radius: 25px 0 0 25px;
    cursor: pointer;
    z-index: 999;
    font-family: Cinzel, Palatino Linotype, sans-serif;
    font-weight: 400;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    display: inline-block;
}

.floating-book-btn:hover {
    background: #C9A55A;
    color: #002855;
    padding-right: 25px;
    transform: translateY(-50%) translateX(-5px);
}

/* Responsive for floating button */
@media (max-width: 768px) {
    .floating-book-btn {
        padding: 12px 15px;
        font-size: 1rem;
        border-radius: 20px 0 0 20px;
    }

    .floating-book-btn:hover {
        padding-right: 20px;
    }
}

@media (max-width: 480px) {
    .floating-book-btn {
        padding: 10px 12px;
        font-size: 0.9rem;
        border-radius: 15px 0 0 15px;
    }
}

/* Anniversary Section - TEXT LEFT, IMAGES RIGHT */
.anniversary-section {

    max-width: 1400px;
    margin: 120px auto;
    padding: 0 20px;
    position: relative;
}

.anniversary-wrapper {
    position: relative;
    min-height: 600px;
}

/* Images Container - Overlapping Layout */
.anniversary-images {
    position: relative;
    height: 600px;
    margin-left: auto;
    width: 85%;
}

.anniversary-images .image-box {
    position: absolute;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.anniversary-images .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.anniversary-images .image-box:hover {
    transform: translateY(-5px);
    z-index: 10;
}

.anniversary-images .image-box:hover img {
    transform: scale(1.05);
}

/* Large Image - Back */
.anniversary-images .image-1 {
    top: 0;
    right: -50px;
    width: 55%;
    height: 380px;
    z-index: 1;
    border: 4px solid rgb(4, 13, 97);
}

/* Small Image Top - Middle Layer */
.anniversary-images .image-2 {
    top: 170px;
    left: 300px;
    width: 40%;
    height: 280px;
    z-index: 2;
    border: 6px solid rgb(97, 80, 4);
}

/* Small Image Bottom - Front Layer */
.anniversary-images .image-3 {
    bottom: 0;
    right: 10px;
    border: 8px solid rgb(4, 13, 97);
    width: 40%;
    height: 300px;
    z-index: 3;
}

/* Text Content Box - Overlapping Images */
.anniversary-text {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: rgba(198, 217, 241, 0.911);
    padding-top: 80px;
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 80px;
    max-width: 540px;
    border-radius: 12px;
    z-index: 4;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.anniversary-text .subtitle {
    color: #a3884e;
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: .250px;
}

.anniversary-text h2 {
    color: #002855;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    line-height: 1.3;
}

.anniversary-text p {
    color: #333232;
    font-family: Playfair Display, serif;
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.anniversary-text .highlight {
    color: #002855;
    font-weight: 600;
}

/* EXPLORE SECTION - TEXT RIGHT, IMAGES LEFT (REVERSED) */
.explore-section {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 20px;
    position: relative;
    background: #F7F7F7;
    padding: 100px 20px;
}

.explore-wrapper {
    position: relative;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Images on LEFT side */
.explore-images {
    position: relative;
    height: 600px;
    margin-right: auto;
    width: 85%;
}

.explore-images .image-box {
    position: absolute;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: transform 0.3s ease, z-index 0.3s ease;
}

.explore-images .image-box:hover {
    transform: translateY(-5px);
    z-index: 10;
}

.explore-images .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.explore-images .image-box:hover img {
    transform: scale(1.05);
}

/* Large Image - Back (on LEFT) */
.explore-images .image-1 {
    top: 0;
    border: 4px solid rgb(4, 13, 97);
    left: -50px;
    width: 55%;
    height: 380px;
    z-index: 1;
}

/* Small Image Top - Middle Layer */
.explore-images .image-2 {
    top: 80px;
    border: 6px solid rgb(20, 62, 97);
    right: 280px;
    width: 40%;
    height: 280px;
    z-index: 2;
}

/* Small Image Bottom - Front Layer */
.explore-images .image-3 {
    bottom: 0;
    left: 175px;
    border: 7px solid rgb(66, 94, 34);
    width: 40%;
    height: 300px;
    z-index: 3;
}

.explore-images .image-4 {
    top: 40px;
    border: 4px solid rgb(97, 33, 4);
    right: 70px;
    width: 35%;
    height: 250px;
    z-index: 2;
}

.explore-images .image-5 {
    bottom: 10px;
    right: 0;
    border: 6px solid rgb(4, 13, 97);
    width: 45%;
    height: 320px;
    z-index: 1;
}

.explore-images .image-6 {
    top: 320px;
    left: 30px;
    width: 30%;
    height: 220px;
    z-index: 2;
    border: 6px solid #C9A55A;
}



/* Explore Images Hover Overlay */


.explore-images .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(109, 126, 146, 0.164);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 5;
    padding: 20px;
}

.explore-images .image-box:hover .image-overlay {
    opacity: 1;
}


/* Caption Text */
.overlay-caption {
    color: rgb(255, 255, 255);
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    text-align: right;
    padding: 8px 12px;
    text-shadow:
        0.5px 0.5px 0 rgba(0, 0, 0, 0.5),
        -0.5px -0.5px 0 rgba(0, 0, 0, 0.5),
        0.5px -0.5px 0 rgba(0, 0, 0, 0.5),
        -0.5px 0.5px 0 rgba(0, 0, 0, 0.5),
        0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Pulse animation for the magnifying glass */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* Ensure the image stays on top of overlay when zooming */
.explore-images .image-box img {
    position: relative;
    z-index: 2;
    transition: transform 0.5s ease;
}

.explore-images .image-box:hover img {
    transform: scale(1.05);
    z-index: 3;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .magnify-icon {
        font-size: 2rem;
    }

    .overlay-caption {
        font-size: 1rem;
    }

    .explore-images .image-overlay {
        background: rgba(0, 40, 85, 0.8);
    }
}


/* Text Box on RIGHT side */
.explore-text {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: rgba(198, 217, 241, 0.911);
    padding: 60px;
    height: 700px;
    max-width: 500px;
    border-radius: 10px;
    z-index: 4;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.explore-text .subtitle {
    color: #C9A55A;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.explore-text h2 {
    color: #002855;
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    line-height: 1.2;
}

.explore-text p {
    color: #555;
    font-size: 1.25rem;
    font-family: Playfair Display, serif;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.explore-text .highlight {
    color: #002855;
    font-weight: 600;
}

.btn-secondary {
    display: inline-block;
    background: #002855;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.btn-secondary:hover {
    background: #C9A55A;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: scale(1);
}

.close-modal {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 1001;
}

.close-modal:hover {
    color: #C9A55A;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .explore-wrapper {
        flex-direction: column;
    }

    .explore-images {
        width: 100%;
        margin-bottom: 40px;
    }

    .explore-text {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .explore-images {
        height: 500px;
    }

    .explore-images .image-box {
        width: 50% !important;
        height: auto !important;
    }

    .explore-text {
        padding: 30px;
    }

    .explore-text h2 {
        font-size: 2rem;
    }

    .explore-text p {
        font-size: 1rem;
    }
}


/* Rooms & Suites Section */

.rooms-section {
    background: #F7F7F7;
    padding: 80px 20px;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.section-header h2 {
    color: #002855;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.section-header-amenities h2 {
    color: #002855;
    font-size: 2.0rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.section-header p {
    font-family: Playfair Display, serif;
    color: #666;
    font-size: 1.25rem;
}

.rooms-grid {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.room-card {
    background: white;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;

}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.room-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.room-info {
    padding: 25px;
    display: flex;
    /* Added */
    flex-direction: column;
    /* Added */
    flex-grow: 1;
    /* Added - fills available space */
}

.room-info h3 {
    color: #002855;
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.room-info .room-size {
    color: #C9A55A;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.room-info p {
    font-family: Playfair Display, serif;
    color: #666;
    margin-bottom: 1rem;
    font-size: 1.15rem;
}

.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.feature-tag {
    background: #E8F4F8;
    color: #002855;
    padding: 5px 12px;
    border-radius: 3px;
    font-size: 0.85rem;
}

.btn-secondary {
    background: #00285586;
    color: #dbe6f3fd;
    border: 2px solid #e3ebf5;
    padding: 10px 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
    margin-top: auto;
    /* Added - pushes button to bottom */
    align-self: flex-start;
    /* Added - prevents button from stretching */
}

.btn-secondary:hover {
    background: #002855;
    color: white;
}

/* Responsive breakpoints for rooms */
@media (max-width: 1400px) {
    .rooms-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1024px) {
    .rooms-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .rooms-grid {
        grid-template-columns: 1fr;
    }
}

/* Amenities Section */

.amenities-section {
    max-width: 1600px;
    /* Increased to accommodate single row */
    margin: 80px auto;
    padding: 0 2px;
}

.section-header-amenities {
    text-align: center;
    margin-bottom: 40px;
}

.section-header-amenities h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #002855;
    margin-bottom: 15px;
}

.section-header-amenities p {
    font-size: 1.4rem;
    color: #666;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    /* Force 6 equal columns */
    gap: 1px;
    /* Adjust gap to fit all items */
}

.amenity-item {
    text-align: center;
    padding: 20px 5px;
    /* background-color: white;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08); */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.amenity-icon {
    font-size: 2.5rem;
    /* Slightly smaller to fit single row */
    color: #C9A55A;
    margin-bottom: 1rem;
}

.amenity-item h3 {
    color: #002855;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    line-height: 1.4;
    min-height: 2.8em;
    /* Ensure consistent height for titles */
}

.amenity-item p {
    font-size: 1.2rem;
    /* Slightly smaller text to fit */
    font-family: 'Playfair Display', serif;
    color: #666;
    line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .amenities-grid {
        grid-template-columns: repeat(3, 1fr);
        /* 3 columns on medium screens */
        gap: 25px;
    }

    .amenity-item h3 {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns on small screens */
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .amenities-grid {
        grid-template-columns: 1fr;
        /* 1 column on mobile */
    }

    .section-header-amenities h2 {
        color: #002855;
        font-size: 2.6rem;
        margin-bottom: 1.5rem;
        font-weight: 400;
        line-height: 1.2;
    }
}

/* About Section */
.about-section {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 20px;
    position: relative;
}

.about-wrapper {
    position: relative;
    min-height: 600px;
}

/* Images Container - Overlapping Layout */
.about-images {
    position: relative;
    height: 600px;
    margin-left: auto;
    width: 85%;
}

.about-images .image-box {
    position: absolute;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease;
}

.about-images .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-images .image-box:hover {
    transform: translateY(-5px);
    z-index: 10;
}

.about-images .image-box:hover img {
    transform: scale(1.05);
}

/* Large Image - Back */
.about-images .image-1 {
    top: 0;
    right: -50px;
    width: 55%;
    height: 380px;
    z-index: 1;
    border: 4px solid rgb(4, 13, 97);
}

/* Small Image Top - Middle Layer */
.about-images .image-2 {
    top: 150px;
    left: 280px;
    width: 40%;
    height: 280px;
    z-index: 2;
    border: 6px solid rgb(206, 142, 47);
}

/* Small Image Bottom - Front Layer */
.about-images .image-3 {
    bottom: 0;
    right: 50px;
    border: 8px solid #1a365d;
    width: 40%;
    height: 300px;
    z-index: 3;
}

/* Text Content Box - Overlapping Images */
.about-text {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    padding: 60px;
    max-width: 520px;
    z-index: 4;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border-radius: 8px;

    /* Smooth scaling transition */
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-origin: left center;
}

.about-text.expanding {
    /* Intermediate state for smoother transition */
    position: fixed;
    transform: scale(1.05) translateY(-50%);
    left: 5%;
    width: 90%;
    z-index: 1000;
}

.about-text.expanded {
    position: fixed;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) scale(1) !important;
    width: 90%;
    max-width: 1000px;
    max-height: 80vh;
    z-index: 1000;
    padding: 50px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
    border-radius: 12px;
    transform-origin: center center;
}

/* Hidden content animation */
.hidden-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.2s;
    /* Delay to match container expansion */
}

.about-text.expanded .hidden-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Overlay with fade animation */
.expand-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.expand-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Images fade animation */
.about-images .image-box {
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-text.expanded~.about-images .image-box {
    opacity: 0.3;
    filter: blur(2px);
    transform: scale(0.95);
}

.about-text .subtitle {
    color: #d4af37;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-text h2 {
    color: #2d3748;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    line-height: 1.3;
}

.about-text p {
    color: #555;
    font-size: 1.25rem;
    font-family: Playfair Display, serif;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.about-text .highlight {
    color: #2d3748;
    font-weight: 600;
}

/* Text Content Structure */
.text-content {
    margin-bottom: 30px;
}

.visible-content {
    margin-bottom: 20px;
}

.hidden-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.hidden-content h4 {
    color: #2d3748;
    margin: 24px 0 12px 0;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Reusable Read More button for <button> and <a> */
.read-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    border: 2px solid #2d3748;
    color: #2d3748;
    padding: 12px 28px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    /* makes <a> look like a button */
    transition: all 0.3s ease;
    margin-bottom: 20px;
    font-family: Cinzel, serif;
}

.read-more-btn:hover {
    background: #2d3748;
    color: white;
    transform: translateY(-2px);
}

.btn-icon {
    transition: transform 0.3s ease;
}

/* Secondary Button */
.btn-secondary {
    display: inline-block;
    background: #2d3748;
    font-family: palatino linotype, serif;
    font-size: 1.3rem;
    color: white;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    margin-left: 15px;
}

.btn-secondary:hover {
    background: #d4af37;
    transform: translateY(-2px);
}


/* Secondary Button */
.btn-secondary-room {
    display: inline-block;
    background: #2d3748;
    font-family: palatino linotype, serif;
    font-size: 1.2rem;
    align-self: center;
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    margin-left: 15px;
    margin-top: auto;
    align-self: center;
}

.btn-secondary-room:hover {
    background: #d4af37;
    transform: translateY(-2px);
}

/* Expanded State - Text box becomes full width */
.about-text.expanded {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1000px;
    max-height: 80vh;
    z-index: 1000;
    padding: 50px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
    border-radius: 12px;
}

.about-text.expanded .hidden-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.about-text.expanded .read-more-btn .btn-icon {
    transform: rotate(180deg);
}

.about-text.expanded .read-more-btn .btn-text {
    content: "Read Less";
}

/* Images fade when text expands */
.about-text.expanded~.about-images .image-box {
    opacity: 0.3;
    filter: blur(2px);
    transform: scale(0.95);
}

/* Overlay */
.expand-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.expand-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .about-text {
        max-width: 480px;
        padding: 40px;
    }

    .about-text h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 968px) {
    .about-wrapper {
        min-height: 500px;
    }

    .about-images {
        height: 500px;
        width: 90%;
    }

    .about-text {
        max-width: 400px;
        padding: 30px;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .about-text p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .about-section {
        margin: 80px auto;
    }

    .about-wrapper {
        min-height: auto;
        display: flex;
        flex-direction: column;
    }

    .about-images {
        position: relative;
        height: 400px;
        width: 100%;
        margin-left: 0;
        order: 2;
    }

    /* Adjust image positions for mobile */
    .about-images .image-1 {
        width: 70%;
        right: 0;
        height: 300px;
    }

    .about-images .image-2 {
        width: 50%;
        left: 0;
        top: 50px;
        height: 220px;
    }

    .about-images .image-3 {
        width: 60%;
        right: 20px;
        bottom: 20px;
        height: 250px;
    }

    .about-text {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        max-width: 100%;
        margin-bottom: 40px;
        order: 1;
    }

    .about-text.expanded {
        width: 95%;
        padding: 30px 20px;
    }

    .btn-secondary {
        margin-left: 0;
        margin-top: 10px;
        display: block;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 0 15px;
        margin: 60px auto;
    }

    .about-text {
        padding: 25px 20px;
    }

    .about-text h2 {
        font-size: 1.8rem;
    }

    .read-more-btn,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* CONTACT SECTION WITH GOOGLE MAP */

.contact-section {
    background: #F7F7F7;
    padding: 80px 20px;
}

.contact-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-top: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-info {
    background: white;
    padding: 50px;
    display: flex;
    flex-direction: column;
    min-height: 600px;
    /* Changed from height to min-height */
    overflow-y: auto;
    /* Added - enables scrolling if needed */
}

.contact-info h3 {
    color: #002855;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    /* Reduced from 2rem */
    font-weight: 400;
}

.contact-item {
    margin-bottom: 1.5rem;
    /* Reduced from 2rem */
}

.contact-item:last-child {
    margin-bottom: 0;
    /* Added - removes bottom margin on last item */
}

.contact-item h4 {
    color: #C9A55A;
    font-size: 1rem;
    /* Reduced from 1.1rem */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #555;
    font-size: 1.3rem;
    font-family: Playfair Display, serif;
    line-height: 1.6;

}

.contact-item a {
    font-family: Playfair Display, serif;
    color: #002855;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #C9A55A;
}

.map-container {
    height: 750px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
    }

    .contact-info {
        min-height: auto;
    }

    .map-container {
        height: 400px;
    }
}

/* Footer */
footer {
    background: #002855;
    color: white;
    padding: 40px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    color: #C9A55A;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section p {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #C9A55A;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
}

.footer-bottom p {
    font-size: 0.95rem;
    color: #af7f18;
    text-decoration: none;
}

.email-font {
    font-family: 'Playfair Display', serif;
    white-space: nowrap;
}


/* Responsive Design */
@media (max-width: 1024px) {

    .anniversary-images,
    .explore-images,
    .about-images {
        width: 70%;
    }

    .anniversary-text,
    .explore-text,
    .about-text {
        max-width: 450px;
        padding: 40px;
    }

    .anniversary-text h2,
    .explore-text h2,
    .about-text h2 {
        font-size: 2.2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .hero-content h1 {
        font-size: 1.45rem;
    }

    /* ===============
   FLEXIBLE IMAGE LAYOUTS - YOU CAN ADJUST THESE VALUES
   =============== */

    /* Anniversary Section - Customizable Layout */
    @media (max-width: 768px) {
        .anniversary-wrapper {
            min-height: auto;
            display: flex;
            flex-direction: column;
        }

        .anniversary-images {
            position: relative;
            height: 350px;
            /* Adjust this height as needed */
            width: 100%;
            margin-left: 0;
            margin-bottom: 30px;
            order: 2;
        }

        .anniversary-images .image-box {
            position: absolute;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease;
        }

        /* ADJUST THESE VALUES TO YOUR PREFERENCE */
        .anniversary-images .image-1 {
            top: 10px;
            right: 40px;
            width: 65% !important;
            height: 200px !important;
            z-index: 1;
        }

        .anniversary-images .image-2 {
            top: 120px;
            left: 10px;
            width: 50% !important;
            height: 180px !important;
            z-index: 2;
        }

        .anniversary-images .image-3 {
            bottom: 20px;
            right: 20%;
            width: 55% !important;
            height: 190px !important;
            z-index: 3;
        }

        .anniversary-text {
            position: relative;
            top: auto;
            left: auto;
            transform: none;
            max-width: 100%;
            margin-bottom: 40px;
            order: 1;
            padding: 25px;
        }
    }

    /* Gallery Section - Customizable Layout */
    @media (max-width: 768px) {
        .explore-wrapper {
            min-height: auto;
            display: flex;
            flex-direction: column;
        }

        .explore-images {
            position: relative;
            height: 400px;
            /* Adjust this height as needed */
            width: 100%;
            margin-right: 0;
            margin-bottom: 30px;
            order: 2;
        }

        .explore-images .image-box {
            position: absolute;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease;
        }

        /* ADJUST THESE VALUES TO YOUR PREFERENCE */
        .explore-images .image-1 {
            border: #192080 4px solid;
            top: 20px;
            left: 10px;
            width: 60% !important;
            height: 180px !important;
            z-index: 1;
        }

        .explore-images .image-2 {
            border: #554f00 6px solid;
            top: 150px;
            left: 130px ! important;
            width: 55% !important;
            height: 160px !important;
            z-index: 2;
        }

        .explore-images .image-3 {
            bottom: 30px;
            left: 15%;
            width: 70% !important;
            height: 170px !important;
            z-index: 3;
        }

        /* Hide extra images on mobile */
        .explore-images .image-4,
        .explore-images .image-5,
        .explore-images .image-6 {
            display: none;
        }

        .explore-text {
            position: relative;
            top: auto;
            right: auto;
            transform: none;
            max-width: 100%;
            order: 1;
            padding: 25px;
            margin-bottom: 40px;
        }
    }

    .anniversary-text,
    .explore-text,
    .about-text {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        transform: none;
        max-width: 100%;
        padding: 30px;
    }

    .anniversary-text h2,
    .explore-text h2,
    .about-text h2 {
        font-size: 1.8rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .rooms-grid {
        grid-template-columns: 1fr;
    }

    .map-container {
        height: 400px;
    }
}

@media (max-width: 480px) {

    .anniversary-images,
    .explore-images,
    .about-images {
        height: 450px;
    }

    .anniversary-images .image-1,
    .explore-images .image-1,
    .about-images .image-1 {
        width: 70% !important;
        ;
        height: 275px;
        border: #554f00 6px solid;
        top: 100px;
        right: 40px;

        height: 160px !important;
        z-index: 2;

    }

    .anniversary-images .image-2,
    .explore-images .image-2,
    .about-images .image-2 {
        width: 50%;
        height: 180px;
        left: 130px;
    }

    .anniversary-images .image-3,
    .explore-images .image-3,
    .about-images .image-3 {
        width: 55%;
        height: 200px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    /* This prevents navbar overlap when scrolling */
}

/* =========
    Scroll to top
      ========= */

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
    padding: 0;
}

.scroll-to-top i {
    font-size: 50px;
    color: #8ea6b696;
    transition: all 0.3s ease;
}

.scroll-to-top:hover i {
    color: #192080;
    transform: translateY(-5px);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

/* Policies Modal */
.policies-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1001;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.policies-modal.active {
    display: flex;
    opacity: 1;
}

.policies-content {
    background: white;
    padding: 40px;
    border-radius: 12px;
    max-width: 800px;
    width: 90%;
    max-height: 70vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.policies-content h3 {
    color: #002855;
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.policies-text {
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.7;
}

.policies-text h4 {
    color: #002855;
    margin: 25px 0 15px 0;
    font-size: 1.3rem;
}

.policies-text p {
    margin-bottom: 15px;
    font-family: Playfair Display, serif;
}

.policies-text ul {
    margin: 15px 0;
    padding-left: 20px;
    font-family: Playfair Display, serif;
}

.policies-text li {
    margin-bottom: 8px;
    font-family: Playfair Display, serif;
}

.close-policies {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    color: #002855;
    cursor: pointer;
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.close-policies:hover {
    background: #f0f0f0;
}

/* Reviews Section */

.reviews-section {
    padding: 5rem 0;
    background-color: #f3f2eace;
    position: relative;
    overflow: hidden;
}

.reviews-header {
    text-align: center;
    margin-bottom: 3rem;
}

.reviews-header h2 {
    color: #002855;
    font-size: 2.6rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    line-height: 1.2;
}



.google-rating {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding: 1rem 2rem;
    background: #f0f0f0;
    border-radius: 12px;
}

.google-logo {
    height: 32px;
    width: auto;
}

.rating-summary {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stars {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rating-number {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
}

.star-icons {
    color: #FBC02D;
}

.review-count {
    margin-top: 0.25rem;
    color: #666;
    font-size: 0.9rem;
}

/* Narrower Carousel Container */
.reviews-carousel-container {
    position: relative;
    max-width: 825px;
    /* Reduced from 1200px to make it narrower */
    margin: 0 auto;
    overflow: hidden;
}

.reviews-carousel {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
    padding: 10px 0;
}

.review-card {
    max-width: 400px;
    background: rgba(255, 255, 255, 0.966);
    border-radius: 12px;
    font-size: 1.3rem;
    padding: 1.3rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    min-width: calc(33.333% - 14px);
    /* Exactly 3 cards per view */
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 1.2rem;
}

.reviewer-details h4 {
    margin: 0;
    color: #333;
    font-size: 1rem;
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.25rem;
}

.star-rating {
    color: #FBC02D;
    font-size: 0.9rem;
}

.review-date {
    color: #666;
    font-size: 0.8rem;
}

.review-text {
    color: #444;
    line-height: 1.6;
    font-size: 1.3rem;
    font-family: Playfair Display, serif;
    flex-grow: 1;
    max-height: 345px;
    /* Limit text height */
    overflow: hidden;
    position: relative;
}

/* Add gradient fade for longer reviews */
.review-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: linear-gradient(transparent, white);
    pointer-events: none;
}

/* Carousel Controls */
.carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 2;
}

.carousel-btn {
    background: #fff;

    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    pointer-events: all;
    color: #002855;
}

.carousel-btn:hover {
    background: #002855;
    color: white;
    transform: scale(1.1);
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.carousel-btn:disabled:hover {
    background: #fff;
    color: #002855;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .reviews-carousel-container {
        max-width: 800px;
        /* Adjust for tablet */
    }

    .review-card {
        min-width: calc(50% - 10px);
        /* 2 cards on tablet */
    }
}

@media (max-width: 768px) {
    .reviews-carousel-container {
        max-width: 500px;
        /* Adjust for mobile */
    }

    .review-card {
        min-width: 100%;
        /* 1 card on mobile */
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }
}

/* Animation for auto-scroll */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.review-card {
    animation: fadeIn 0.5s ease;
}

/* Policy links in footer */
.policy-link {
    cursor: pointer;
    transition: color 0.3s ease;
}

.policy-link:hover {
    color: #C9A55A !important;
}

/* ===============
   IPAD PRO SPECIFIC FIXES (1024px and below)
   =============== */

@media (max-width: 1024px) and (min-width: 769px) {

    /* Fix Gallery Section for iPad - Keep text on right, images on left */
    .explore-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: center;
        min-height: auto;
    }

    .explore-images {
        position: relative;
        height: 500px;
        width: 80%;
        margin-right: 0;
        order: 1;
    }

    .explore-text {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        max-width: 100%;
        order: 2;
        padding: 30px;
    }

    /* Adjust image sizes for iPad */
    .explore-images .image-1 {
        top: 0;
        border: 6px solid rgb(4, 13, 97);
        left: 230px;
        width: 60%;
        height: 250px;
    }

    .explore-images .image-2 {
        top: 60px;
        right: 130px;
        border: #554f00 4px solid;
        width: 45%;
        height: 250px;
    }

    .explore-images .image-3 {
        bottom: 0;
        left: 150px;
        width: 50%;
        height: 270px;
    }

    /* Hide some images on iPad to reduce clutter */
    .explore-images .image-4,
    .explore-images .image-5,
    .explore-images .image-6 {
        display: none;
    }

    /* Fix Anniversary and About sections for iPad */
    .anniversary-wrapper,
    .about-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: center;
        min-height: auto;
    }

    .anniversary-images,
    .about-images {
        position: relative;
        height: 500px;
        width: 100%;
        margin-left: 0;
        order: 2;
    }

    .anniversary-images .image-1 {
        top: 0;
        border: 6px solid rgb(4, 13, 97);
        left: 23px;
        width: 60%;
        height: 250px;
    }

    .anniversary-images .image-2 {
        top: 60px;
        right: 130px;
        border: #554f00 4px solid;
        width: 45%;
        height: 250px;
    }

    .anniversary-images .image-3 {
        bottom: 0;
        left: 100px;
        width: 50%;
        height: 270px;
    }

    .anniversary-text,
    .about-text {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        max-width: 100%;
        order: 1;
        padding: 30px;
    }


    .about-images .image-1 {
        top: 0;
        border: 6px solid rgb(4, 13, 97);
        left: 23px;
        width: 60%;
        height: 250px;
    }

    .about-images .image-2 {
        top: 60px;
        right: 130px;
        border: #554f00 4px solid;
        width: 45%;
        height: 250px;
    }

    .about-images .image-3 {
        bottom: 0;
        left: 100px;
        width: 50%;
        height: 270px;
    }

    /* Adjust room grid for iPad */
    .rooms-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Global size for all amenity icons */
.amenity-icon {
    --icon-size: 52px;
    /* try 48px first; adjust to 44–52px as needed */
    width: var(--icon-size);
    height: var(--icon-size);
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.amenity-icon svg,
.amenity-icon img {
    width: 100%;
    height: 100%;
    display: block;
}

/* Force Android to use normal viewport height */
.hero-section {
    min-height: 100vh !important;
    height: 100vh !important;
}

@media screen and (max-width: 600px) {
    .carousel-slide img {
        animation: kenburns 12s ease-in-out infinite;
    }
}