:root {
    --primary-color: #2F4F4F;
    /* Dark Slate Gray (Deep Organic Tone) */
    --accent-color: #C5A059;
    /* Muted Gold/Sand (Luxury Accent) */
    --bg-color: #F9F9F7;
    /* Warm Alabaster (Natural Feel) */
    --text-color: #2C2C2C;
    /* Soft Black (Readability) */
    --card-bg: #FFFFFF;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition: all 0.5s ease-in-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
}

/* HEADER */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 4rem;
    z-index: 1000;
    transition: var(--transition);
    color: #fff;
}

.main-header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--text-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 4rem;
}

.main-header.scrolled .logo-img {
    filter: brightness(0);
}

.main-header.scrolled .cta-btn {
    border-bottom-color: var(--text-color);
    color: var(--text-color);
}

.main-header.scrolled .cta-btn:hover {
    border-bottom-color: var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.main-header.scrolled .nav-links a:hover {
    color: var(--accent-color);
}

.main-header.scrolled .nav-links a.active-page {
    color: var(--accent-color) !important;
}

.main-header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    letter-spacing: 3px;
    font-weight: 400;
}

.logo-img {
    height: 50px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
}

a.lang-btn {
    text-decoration: none;
    color: inherit;
}

.footer-logo-img {
    height: 45px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--accent-color);
    opacity: 0.8;
}

.nav-links a.active-page {
    color: var(--accent-color) !important;
    border-bottom: 1px solid var(--accent-color);
    padding-bottom: 2px;
}

.cta-btn {
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    padding: 0 0 3px 0;
    transition: var(--transition);
    font-size: 0.7rem;
    letter-spacing: 2px;
}

.cta-btn:hover {
    background: transparent;
    border-bottom-color: #fff;
    color: #fff;
}

/* HAMBURGER BUTTON */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
    color: inherit;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: currentColor;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active span {
    background: var(--text-color);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* LANGUAGE SWITCHER */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-left: 0.5rem;
}

.lang-btn {
    background: none;
    border: none;
    color: inherit;
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 1px;
    cursor: pointer;
    opacity: 0.5;
    transition: var(--transition);
    padding: 0.2rem 0.3rem;
}

.lang-btn.active {
    opacity: 1;
    font-weight: 600;
}

.lang-btn:hover {
    opacity: 1;
}

.lang-divider {
    opacity: 0.3;
    font-size: 0.8rem;
}

/* SECTION TAGLINE */
.section-tagline {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--accent-color);
    letter-spacing: 2px;
    margin-bottom: 0.8rem;
    font-weight: 300;
}

.section-tagline em {
    font-style: italic;
    font-family: 'Cinzel', serif;
}

/* HERO SECTION */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    background: #000;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.45) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    padding: 0 2rem;
}

.hero-tagline {
    font-family: var(--font-body);
    font-size: 1.1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.hero-tagline em,
.subtitle em {
    font-style: italic;
    font-family: 'Cinzel', serif;
}

.hero h1 {
    font-size: 5.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    font-weight: 400;
    text-transform: uppercase;
}

.subtitle {
    font-size: 1.2rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 4rem;
    font-weight: 300;
    color: var(--accent-color);
    /* Subtle gold accent */
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0.8;
}

.scroll-indicator span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-indicator .line {
    width: 1px;
    height: 60px;
    background-color: #fff;
}

/* INTRO SECTION */
.intro {
    padding: 10rem 4rem;
    /* Increased padding */
    text-align: center;
    background-color: var(--bg-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.intro h2 {
    font-size: 3.5rem;
    margin-bottom: 2.5rem;
    color: var(--primary-color);
    letter-spacing: 2px;
    font-weight: 400;
}

.intro p {
    font-size: 1.15rem;
    color: #555;
    max-width: 750px;
    margin: 0 auto 2rem auto;
    line-height: 2;
    /* Relaxed line-height */
    font-weight: 300;
}

/* SPLIT SECTIONS */
.split-section {
    display: flex;
    min-height: 80vh;
    background-color: #fff;
}

.split-section.bg-grey {
    background-color: #f7f7f7;
}

.split-section.reverse {
    flex-direction: row-reverse;
}

.split-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 400px;
}

.placeholder-resort {
    background-image: url('https://gtoresorts.com/content/uploads/2026/02/hf_20260128_175335_02bf7b24-add8-431d-a7db-240c45073294-1-e1770309424161.jpg');
}

.placeholder-beach {
    background-image: url('https://gtoresorts.com/content/uploads/2026/01/NZP2998-1-scaled.jpg');
}

.placeholder-restaurant {
    background-image: url('Gallery/_NZP6322.jpg');
}

.split-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    /* Prevents buttons from stretching full width */
    padding: 8rem 6rem;
    /* More generous padding */
}

.split-content h3 {
    font-size: 3rem;
    margin-bottom: 2.5rem;
    color: var(--primary-color);
    font-weight: 400;
    letter-spacing: 2px;
}

.split-content p {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.9;
    max-width: 550px;
    font-weight: 300;
}

/* BUTTONS */
.section-btn {
    display: inline-block;
    margin-top: 2rem;
    color: var(--text-color);
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    border: none;
    padding: 0;
    padding-bottom: 4px;
    transition: var(--transition);
    background: transparent;
    position: relative;
}

.section-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--accent-color);
    transition: width 0.4s ease;
}

.section-btn:hover {
    color: var(--primary-color);
    background: transparent;
    transform: none;
    box-shadow: none;
}

.section-btn:hover::after {
    width: 40%;
}

.cta-btn {
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    padding: 0 0 3px 0;
    transition: var(--transition);
    letter-spacing: 2px;
    font-size: 0.7rem;
    text-transform: uppercase;
}

.cta-btn:hover {
    background: transparent;
    border-bottom-color: #fff;
    color: #fff;
}

/* ELEMENTS SECTION REMOVED */

/* LOCATION SECTION */
.location-section {
    background-color: var(--bg-color);
    padding: 5rem 4rem;
}

.location-content {
    max-width: 1400px;
    margin: 0 auto;
}

.location-content h2 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    text-align: center;
    letter-spacing: 2px;
}

.location-subtitle {
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-color);
    margin-bottom: 2rem;
    font-weight: 600;
    font-size: 0.85rem;
    text-align: center;
    display: block;
}

.location-content > p {
    color: #666;
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 2.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-weight: 300;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.location-map iframe {
    width: 100%;
    height: 380px;
    border: none;
    display: block;
}

.location-contact-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.location-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
}

.contact-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.contact-details strong {
    display: block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-details span,
.contact-details a {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.7;
    font-weight: 300;
    display: block;
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
}

/* AMENITIES SECTION */
.amenities-section {
    padding: 6rem 2rem;
    background-color: var(--bg-color);
    text-align: center;
}

.amenities-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 3.5rem;
    letter-spacing: 2px;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.amenity-item {
    padding: 2rem 1.5rem;
    transition: var(--transition);
    border-bottom: 1px solid rgba(197, 160, 89, 0.25);
}

.amenity-item:hover {
    transform: translateY(-3px);
}

.amenity-icon {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 1.2rem;
    opacity: 0.8;
}

.amenity-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--accent-color);
}

.amenity-item h4 {
    font-size: 1.15rem;
    margin-bottom: 0.8rem;
    color: var(--text-color);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.amenity-item p {
    color: #777;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* GALLERY SECTION */
.gallery-section {
    padding: 8rem 2rem;
    text-align: center;
    background-color: #fff;
}

.gallery-section h2 {
    font-size: 3rem;
    margin-bottom: 4rem;
    color: var(--primary-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 240px);
    gap: 10px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.gallery-item:hover {
    transform: scale(0.98);
    opacity: 0.9;
}

.item-1 {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
    background-image: url('Gallery/_NZP5402.jpg');
}

.item-2 {
    background-image: url('Gallery/_NZP1766.jpg');
}

.item-3 {
    background-image: url('Gallery/_NZP2362.jpg');
}

.item-4 {
    background-image: url('Gallery/_NZP6390.jpg');
}

.item-5 {
    background-image: url('Gallery/_NZP2610.jpg');
}

/* LIGHTBOX */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
}

.lightbox-overlay.active {
    display: flex;
}

.lightbox-overlay img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 2px;
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.lightbox-close:hover {
    opacity: 1;
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    padding: 1rem;
}

.lightbox-arrow:hover {
    opacity: 1;
}

.lightbox-prev {
    left: 1rem;
}

.lightbox-next {
    right: 1rem;
}

/* Gallery carousel dots (hidden on desktop, shown on mobile) */
.gallery-carousel-dots {
    display: none;
}

/* FOOTER */
.main-footer {
    background-color: var(--primary-color);
    color: rgba(255, 255, 255, 0.8);
    padding: 8rem 4rem 3rem 4rem;
    font-weight: 300;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 4rem;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: #fff;
    /* White logo for contrast */
    letter-spacing: 5px;
    margin-bottom: 2rem;
}

.footer-column h4 {
    color: var(--accent-color);
    /* Gold accent for headers */
    font-size: 0.9rem;
    letter-spacing: 3px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 1rem;
}

.footer-column ul li a,
.footer-column ul li {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.footer-column ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-links a {
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 1.1rem;
    border-radius: 50%;
}

.social-links a:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #fff;
    transform: translateY(-3px) rotate(8deg);
}

.newsletter-form {
    display: flex;
    margin-top: 1.5rem;
}

.newsletter-form input {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    flex: 1;
    outline: none;
    font-family: var(--font-body);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    padding: 1rem 2rem;
    background: var(--accent-color);
    border: 1px solid var(--accent-color);
    color: #fff;
    font-weight: 400;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-heading);
    text-transform: uppercase;
}

.newsletter-form button:hover {
    background: #fff;
    color: var(--accent-color);
    border-color: #fff;
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--accent-color);
}

/* SUITES SHOWCASE */
.suites-section {
    padding: 8rem 4rem;
    background-color: var(--bg-color);
    text-align: center;
}

.suites-header {
    margin-bottom: 5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.suites-header h2 {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: 2px;
}

.suites-header p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 300;
}

.suites-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.suites-grid.three-col {
    grid-template-columns: repeat(3, 1fr);
}

.suite-card {
    text-align: left;
    background: transparent;
    transition: var(--transition);
}

.suite-image-container {
    overflow: hidden;
    margin-bottom: 2rem;
}

.suite-image {
    height: 500px;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
}

.suite-card:hover .suite-image {
    transform: scale(1.05);
}

.suite-content {
    padding: 0 1rem;
}

.suite-content h3 {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.suite-content p {
    color: #777;
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1rem;
    font-weight: 300;
}

/* ROOMS CAROUSEL */
.rooms-carousel {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.carousel-track-wrapper {
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 2rem;
}

.carousel-track .suite-card {
    min-width: calc(33.333% - 1.34rem);
    flex-shrink: 0;
    cursor: pointer;
}

.carousel-arrow {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    font-size: 1rem;
    color: var(--text-color);
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.carousel-arrow:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.carousel-prev {
    left: -0.5rem;
}

.carousel-next {
    right: -0.5rem;
}

/* ROOM MODAL */
.room-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.room-modal.active {
    display: flex;
}

.room-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.room-modal-content {
    position: relative;
    background: #fff;
    width: 700px;
    max-height: 90vh;
    overflow-x: hidden;
    overflow-y: auto;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.room-modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    line-height: 1;
    transition: var(--transition);
}

.room-modal-close:hover {
    transform: scale(1.2);
}

/* Modal Gallery */
.room-modal-gallery {
    position: relative;
    width: 700px;
    height: 470px;
    overflow: hidden;
    background: #f0f0f0;
    flex-shrink: 0;
}

.modal-gallery-track {
    display: flex;
    transition: transform 0.4s ease;
    height: 100%;
}

.modal-gallery-track img {
    width: 700px;
    height: 470px;
    flex-shrink: 0;
    object-fit: cover;
    display: block;
}

.modal-gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    border-radius: 50%;
    font-size: 0.85rem;
    transition: var(--transition);
}

.modal-gallery-arrow:hover {
    background: #fff;
}

.modal-gallery-prev {
    left: 1rem;
}

.modal-gallery-next {
    right: 1rem;
}

.modal-gallery-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.modal-gallery-dot {
    width: 20px;
    height: 2px;
    border-radius: 1px;
    background: rgba(255, 255, 255, 0.35);
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
}

.modal-gallery-dot.active {
    width: 35px;
    background: #fff;
    transform: none;
}

/* Modal Info */
.room-modal-info {
    padding: 2.5rem 3rem;
}

.modal-room-name {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--text-color);
    margin-bottom: 0.3rem;
}

.modal-room-type {
    font-family: var(--font-body);
    color: var(--accent-color);
    font-size: 1rem;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    font-weight: 400;
    font-style: italic;
}

.modal-room-desc {
    color: #555;
    font-size: 1rem;
    line-height: 1.9;
    font-weight: 300;
    margin-bottom: 2rem;
}

.room-modal-info h4 {
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.modal-room-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem 2rem;
}

.modal-room-features span {
    font-size: 0.9rem;
    color: #666;
    font-weight: 300;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* CONTACT SECTION */
.contact-section {
    padding: 8rem 4rem;
    text-align: center;
    background-color: var(--bg-color);
}

.contact-section h2 {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    letter-spacing: 2px;
    font-weight: 400;
}

.contact-section p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.9;
    font-weight: 300;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -220px;
        width: 220px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 0;
        z-index: 1000;
        padding: 5rem 2.5rem 2rem;
        box-shadow: -4px 0 30px rgba(0, 0, 0, 0.08);
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        overflow-y: auto;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links li {
        list-style: none;
        width: 100%;
        text-align: left;
        padding: 1rem 0;
        border-bottom: none;
    }

    .nav-links li:last-child {
        border-bottom: none;
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
    }

    .nav-links a {
        font-size: 0.85rem;
        color: var(--text-color) !important;
        letter-spacing: 3px;
        font-weight: 400;
        transition: color 0.3s ease;
    }

    .nav-links a:hover {
        color: var(--accent-color) !important;
    }

    .nav-links .cta-btn {
        color: var(--accent-color) !important;
        border-bottom-color: var(--accent-color);
    }

    .nav-links .lang-btn {
        color: var(--text-color);
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .carousel-track .suite-card {
        min-width: calc(50% - 1rem);
    }

    .suite-image {
        height: 400px;
    }

    .modal-gallery-track img {
        height: 350px;
    }

    .split-content {
        padding: 4rem;
    }

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 300px);
    }

    .item-1 {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
    }
}

@media (max-width: 768px) {
    .main-header {
        padding: 1rem 2rem;
    }

    .carousel-track .suite-card {
        min-width: calc(85% - 1rem);
    }

    .rooms-carousel {
        padding: 0 0.5rem;
    }

    .carousel-arrow {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }

    .carousel-prev {
        left: 4px;
    }

    .carousel-next {
        right: 4px;
    }

    .modal-gallery-track img {
        height: 250px;
    }

    .room-modal-info {
        padding: 1.5rem 2rem;
    }

    .modal-room-features {
        grid-template-columns: 1fr;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -220px;
        width: 220px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 0;
        z-index: 1000;
        padding: 5rem 2.5rem 2rem;
        box-shadow: -4px 0 30px rgba(0, 0, 0, 0.08);
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        overflow-y: auto;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links li {
        list-style: none;
        width: 100%;
        text-align: left;
        padding: 1rem 0;
    }

    .nav-links li:last-child {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
    }

    .nav-links a {
        font-size: 0.85rem;
        color: var(--text-color) !important;
        letter-spacing: 3px;
        font-weight: 400;
    }

    .nav-links .cta-btn {
        color: var(--accent-color) !important;
        border-bottom-color: var(--accent-color);
    }

    .nav-links .lang-switcher {
        margin-top: 1rem;
    }

    .nav-links .lang-btn {
        color: var(--text-color);
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .split-content {
        flex: none !important;
        max-width: 100% !important;
    }

    .split-image {
        flex: none !important;
        max-width: 100% !important;
        width: 100%;
    }

    .intro {
        padding: 3rem 1.5rem;
    }

    .intro .container {
        padding: 0;
    }

    .intro h2,
    .section-header h2 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .intro p {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .section-tagline {
        font-size: 0.85rem;
    }

    .suites-section {
        padding: 3rem 1.5rem;
    }

    .suites-header {
        padding: 0;
        margin-bottom: 2.5rem;
    }

    .suites-header h2 {
        font-size: 1.8rem;
    }

    .suites-header p {
        font-size: 0.9rem;
    }

    .suite-card h3 {
        font-size: 1.3rem;
    }

    .suite-card p {
        font-size: 0.85rem;
    }

    .split-content h3 {
        font-size: 1.4rem;
    }

    .split-content p {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .section-btn {
        font-size: 0.7rem;
        padding: 0;
        padding-bottom: 3px;
        letter-spacing: 2px;
        margin-top: 1.2rem;
    }

    .contact-section {
        padding: 3rem 1.5rem;
    }

    .contact-section h2 {
        font-size: 1.6rem;
    }

    .contact-section p {
        font-size: 0.9rem;
    }

    .amenities-section h2 {
        font-size: 1.6rem;
    }

    .amenity-item h3 {
        font-size: 0.85rem;
    }

    .amenity-item p {
        font-size: 0.8rem;
    }

    .amenities-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .split-section,
    .split-section.reverse {
        flex-direction: column;
        min-height: auto;
    }

    .split-image {
        min-height: 300px;
        order: 1;
    }

    .split-content {
        order: 0;
    }

    .split-content {
        padding: 2.5rem 1.5rem;
    }

    .location-content {
        padding: 2.5rem 1.5rem;
    }

    .location-content h2 {
        font-size: 1.8rem;
    }

    .location-content p {
        font-size: 0.9rem;
    }

    .gallery-section {
        padding: 3rem 1.5rem;
    }

    .gallery-section h2 {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Gallery → Carousel on mobile */
    .gallery-grid {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 0;
        padding: 0;
        scrollbar-width: none;
    }

    .gallery-grid::-webkit-scrollbar {
        display: none;
    }

    .gallery-item {
        flex: 0 0 82%;
        min-height: 0;
        aspect-ratio: 3 / 4;
        scroll-snap-align: center;
        border-radius: 4px;
        margin-left: 8px;
    }

    .gallery-item:first-child {
        margin-left: 1.5rem;
    }

    .gallery-item:last-child {
        margin-right: 1.5rem;
    }

    .item-1,
    .item-2,
    .item-3,
    .item-4,
    .item-5 {
        grid-column: auto;
        grid-row: auto;
    }

    /* Split images → vertical/portrait proportions on mobile */
    .split-image {
        min-height: 0 !important;
        aspect-ratio: 3 / 4;
        width: 100%;
    }

    /* Gallery carousel dots on mobile */
    .gallery-carousel-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 1.2rem;
    }

    .gallery-carousel-dot {
        width: 20px;
        height: 2px;
        border-radius: 1px;
        background: rgba(0, 0, 0, 0.15);
        border: none;
        cursor: pointer;
        padding: 0;
        transition: all 0.4s ease;
    }

    .gallery-carousel-dot.active {
        width: 35px;
        background: var(--accent-color, #C5A059);
        transform: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .main-footer {
        padding: 4rem 2rem 2rem 2rem;
    }
}

/* Separator Section */
.separator-section {
    position: relative;
    height: 85vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-attachment: fixed;
    background-position: center bottom;
    background-size: cover;
    color: #fff;
    overflow: hidden;
}

.separator-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.separator-content {
    position: relative;
    z-index: 2;
    padding: 0 2rem;
    max-width: 900px;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .separator-section {
        background-attachment: scroll;
        height: 60vh;
    }

    .hotel-hero {
        background-image: url('Gallery/6E6A7901 copia 2 (1).jpg') !important;
        background-position: center center !important;
    }
}
/* ── BOOKING PANEL ── */
.booking-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.booking-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.booking-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 420px;
    max-width: 100%;
    height: 100%;
    background: #fff;
    z-index: 2001;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    display: flex;
    flex-direction: column;
    padding: 4rem 3rem 3rem;
    overflow-y: auto;
}

.booking-panel.active {
    transform: translateX(0);
}

.booking-panel-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-color);
    line-height: 1;
    transition: var(--transition);
}

.booking-panel-close:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.booking-panel h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-color);
    letter-spacing: 3px;
    margin-bottom: 0.4rem;
    margin-top: 1rem;
    text-transform: uppercase;
    font-weight: 400;
}

.booking-panel-subtitle {
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: #999;
    text-transform: uppercase;
    margin-bottom: 3rem;
}

.booking-choices {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.booking-choice {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.4rem 2rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.booking-choice:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    transform: translateX(4px);
}

.booking-choice svg {
    width: 22px;
    height: 22px;
    fill: var(--accent-color);
    transition: fill 0.3s ease;
    flex-shrink: 0;
}

.booking-choice:hover svg {
    fill: #fff;
}

.booking-choice:hover img {
    filter: brightness(0) invert(1);
}

/* ── MOBILE LOCATION OVERRIDES ── */
@media (max-width: 768px) {
    .location-section {
        padding: 2rem 1.2rem;
    }

    .location-content h2 {
        font-size: 1.8rem;
    }

    .location-content > p {
        margin-bottom: 1.5rem;
    }

    .location-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .location-contact-items {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .location-map iframe {
        height: 200px;
    }

    .location-grid {
        gap: 1rem;
    }
}
