:root {
    --primary-gold: #c5a021;
    /* Champagne Gold */
    --light-gold: #e8d082;
    --dark-gold: #8b6b15;
    --obsidian: #050505;
    --dark-grey: #121212;
    --soft-white: #fcfcfc;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --gold-glow: 0 0 20px rgba(197, 160, 33, 0.3);
    --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--obsidian);
}

::-webkit-scrollbar-thumb {
    background: var(--dark-gold);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-gold);
}

/* Luxury Page Loader */
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--obsidian);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 1s cubic-bezier(0.86, 0, 0.07, 1);
}

.loader-overlay.hidden {
    transform: translateY(-100%);
}

.loader-content {
    text-align: center;
}

.loader-title {
    color: var(--primary-gold);
    font-size: 3rem;
    letter-spacing: 15px;
    margin-bottom: 20px;
    opacity: 0;
    animation: loaderFadeIn 1s forwards;
}

.loader-bar {
    width: 100px;
    height: 1px;
    background: var(--primary-gold);
    margin: 0 auto;
    transform: scaleX(0);
    animation: loaderBar 2s cubic-bezier(0.86, 0, 0.07, 1) forwards;
}

@keyframes loaderFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes loaderBar {
    to {
        transform: scaleX(1);
        width: 300px;
    }
}

.loader-location {
    color: var(--primary-gold);
    font-size: 1.2rem;
    letter-spacing: 10px;
    margin-top: 20px;
    opacity: 0;
    transform: translateY(10px);
    animation: loaderFadeInUp 1s forwards 1.5s;
    font-weight: 300;
}

@keyframes loaderFadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animations & Reveals */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
    transition-delay: calc(var(--d, 0) * 0.2s);
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Shimmer Effect for Buttons */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(30deg);
    transition: none;
    animation: shimmer 4s infinite;
}

@keyframes shimmer {
    0% {
        left: -60%;
    }

    15% {
        left: 120%;
    }

    100% {
        left: 120%;
    }
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--soft-white);
    color: var(--obsidian);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.logo {
    font-family: 'Playfair Display', serif;
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    background: transparent;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(5, 5, 5, 0.8);
    padding: 0.8rem 0;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--soft-white);
    letter-spacing: 2px;
}

.logo span {
    color: var(--primary-gold);
}

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

.menu-toggle {
    display: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--soft-white);
    font-weight: 400;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-gold);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--soft-white);
    position: relative;
    overflow: hidden;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-img {
    display: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    margin-bottom: 1.5rem;
    font-style: italic;
    opacity: 0;
    transform: translateY(30px);
    animation: revealUp 1s forwards 0.5s;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-inline: auto;
    font-weight: 300;
    opacity: 0;
    transform: translateY(30px);
    animation: revealUp 1s forwards 0.7s;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    opacity: 0;
    animation: revealUp 1s forwards 0.9s;
}

/* Buttons */
.btn-primary {
    background: var(--primary-gold);
    color: var(--obsidian);
    padding: 1rem 2.5rem;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--light-gold);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--soft-white);
    color: var(--soft-white);
    padding: 1rem 2.5rem;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-outline:hover {
    background: var(--soft-white);
    color: var(--obsidian);
}

/* About Section */
.about {
    padding: 10rem 0;
    background-color: var(--obsidian);
    color: var(--soft-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.subtitle {
    color: var(--dark-gold);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 3px;
    font-weight: 600;
    display: block;
    margin-bottom: 1rem;
}

.about h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.about p {
    color: #ccc;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.link-arrow {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    width: fit-content;
}

.link-arrow::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-gold);
    transition: var(--transition);
}

.link-arrow:hover::after {
    width: 100%;
}

/* Slideshow Wrapper */
.img-wrapper.slideshow {
    display: grid;
    grid-template-areas: "stack";
    overflow: hidden;
}

.img-wrapper.slideshow .slide {
    grid-area: stack;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 20px 20px 0 var(--primary-gold);
}

.img-wrapper.slideshow .slide.active {
    opacity: 1;
    z-index: 1;
}

/* Override default img rule for slideshow if needed in future */

/* Rooms Section */
.rooms {
    padding: 10rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: 3.5rem;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 3rem;
}

.room-card {
    background: white;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.room-card:hover {
    transform: translateY(-10px);
}

.room-img-container {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.room-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
    transform: scale(1.05);
}

.room-img.active {
    position: relative;
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.room-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.room-img-container:hover .room-nav {
    opacity: 1;
}

.room-nav button {
    background: rgba(184, 134, 11, 0.7);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.3s ease;
    backdrop-filter: blur(5px);
}

.room-nav button:hover {
    background: rgba(184, 134, 11, 0.9);
    transform: scale(1.1);
}

.room-info {
    padding: 3rem;
}

.room-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.room-specs {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 1.5rem 0;
    color: #666;
    font-size: 0.85rem;
}

.room-specs li {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.room-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.price {
    font-weight: 600;
    color: var(--primary-gold);
}

.btn-text {
    text-decoration: none;
    color: var(--obsidian);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Amenities Section */
.amenities {
    background-color: var(--soft-white);
}

.amenities-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.amenity-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.amenity-item .icon {
    font-size: 2rem;
    color: var(--primary-gold);
}

.amenity-item h4 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.amenity-visual img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
}

/* Coming Soon Styles */
.coming-soon-badge {
    display: inline-block;
    background: var(--primary-gold);
    color: var(--obsidian);
    padding: 0.2rem 0.8rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 2px;
    margin-bottom: 0.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.visual-coming-soon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    background: rgba(5, 5, 5, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(1px);
}

.glass-coming-soon {
    background: rgba(18, 18, 18, 0.7);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    padding: 1.5rem 3rem;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: 400;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    transform: translateY(0);
    animation: float 4s ease-in-out infinite;
    text-align: center;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Footer */
.footer {
    background: var(--obsidian);
    color: var(--soft-white);
    padding: 8rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand .logo {
    margin-bottom: 1.5rem;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 1.5rem;
    color: var(--dark-gold);
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-gold);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #aaa;
    font-size: 0.8rem;
}

/* Animations */
@keyframes revealUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Amenities Visual Parallax */
.amenities-visual {
    height: 500px;
    border-radius: 5px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    position: relative;
    transform: translateZ(0);
    /* Force GPU */
}

.parallax-img {
    width: 100%;
    height: 120%;
    /* Taller for parallax movement */
    object-fit: cover;
    position: absolute;
    top: -10%;
    /* Center initially */
    left: 0;
    transition: transform 0.1s linear;
    /* Smooth update, but responsive */
    will-change: transform;
}

/* Gallery Section */
.gallery {
    padding: 10rem 0;
    background: var(--obsidian);
    color: var(--soft-white);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    padding: 0.8rem 2rem;
    cursor: pointer;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-gold);
    color: var(--obsidian);
    box-shadow: var(--gold-glow);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    height: 300px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(0.6);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    background: rgba(212, 175, 55, 0.2);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

/* Hide filtered items */
.gallery-item.hide {
    display: none;
}

/* Testimonials */
.testimonials {
    padding: 10rem 0;
    background: var(--dark-grey);
    color: var(--soft-white);
    text-align: center;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 3rem;
}

.testimonial-item {
    display: none;
    animation: fadeIn 1s forwards;
}

.testimonial-item.active {
    display: block;
}

.quote {
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--light-gold);
}

.author {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-gold);
}

.testimonial-dots {
    margin-top: 3rem;
}

.dot {
    height: 8px;
    width: 8px;
    background: #444;
    display: inline-block;
    margin: 0 5px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary-gold);
    width: 25px;
    border-radius: 10px;
}

/* FAQ Section */
.faq {
    padding: 10rem 0 5rem 0;
    margin-top: 5rem;
    background: var(--obsidian);
    color: var(--soft-white);
}

.faq .section-header {
    margin-bottom: 4rem;
    text-align: center;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    transition: var(--transition);
}

.faq-item:hover {
    background: rgba(197, 160, 33, 0.05);
    border-color: var(--primary-gold);
    transform: translateY(-5px);
}

.faq-item h3 {
    color: var(--primary-gold);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.faq-item p {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 10rem 0;
    background: var(--soft-white);
}

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

.contact-form {
    max-width: 800px;
    margin: 0 auto 2rem;
    width: 100%;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1.2rem;
    background: white;
    border: 1px solid #ddd;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-gold);
    outline: none;
    box-shadow: var(--gold-glow);
}

.contact-map {
    border: 1px solid var(--primary-gold);
    padding: 10px;
    background: white;
}

.map-actions {
    margin-top: 1rem;
    text-align: center;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

/* Image Modal (Lightbox) */
.image-modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    cursor: zoom-out;
    opacity: 0;
    transition: opacity 0.4s ease;
    align-items: center;
    justify-content: center;
}

.image-modal.active {
    display: flex;
    opacity: 1;
}

.image-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.image-modal-content img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border: 1px solid var(--primary-gold);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-modal.active .image-modal-content img {
    transform: scale(1);
}

.close-image-modal {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--soft-white);
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    transition: var(--transition);
    z-index: 3001;
}

.close-image-modal:hover {
    color: var(--primary-gold);
    transform: rotate(90deg);
}

.image-caption {
    margin-top: 20px;
    color: var(--primary-gold);
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
}

/* Make images look interactive */
.gallery-item,
.room-img {
    cursor: zoom-in;
}

.modal-content.glass {
    background: rgba(18, 18, 18, 0.7);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(30px);
    padding: 4rem;
    width: 90%;
    max-width: 600px;
    color: var(--soft-white);
    position: relative;
    border-radius: 20px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.close-modal {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2rem;
    color: var(--primary-gold);
    cursor: pointer;
}

.modal h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-gold);
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.full-width {
    width: 100%;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Adjustments */
@media (max-width: 992px) {
    .container {
        padding: 0 1.5rem;
    }

    .about-grid,
    .rooms-grid,
    .amenities-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about {
        padding: 4rem 0;
    }

    .about-img {
        order: -1;
    }

    .rooms,
    .amenities,
    .testimonials,
    .contact,
    .gallery {
        padding: 4rem 0;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

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

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--obsidian);
        flex-direction: column;
        justify-content: center;
        transition: var(--transition);
        z-index: 1001;
    }

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

    .menu-toggle {
        display: block;
        cursor: pointer;
        z-index: 1002;
    }

    .menu-toggle span {
        display: block;
        width: 25px;
        height: 2px;
        background: var(--soft-white);
        margin: 5px 0;
        transition: var(--transition);
    }

    .menu-toggle.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.open span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .about h2 {
        font-size: 2rem;
    }

    .room-img-container {
        height: 250px;
    }

    .room-info {
        padding: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 0.8rem;
    }

    .gallery-item {
        height: 200px;
    }

    /* Custom Cursor */
    .custom-cursor {
        width: 8px;
        height: 8px;
        background: var(--primary-gold);
        border-radius: 50%;
        position: fixed;
        top: 0;
        left: 0;
        pointer-events: none;
        z-index: 9999;
        transition: transform 0.1s ease;
    }

    .cursor-follower {
        width: 40px;
        height: 40px;
        border: 1px solid var(--primary-gold);
        border-radius: 50%;
        position: fixed;
        top: -16px;
        left: -16px;
        pointer-events: none;
        z-index: 9998;
        transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .custom-cursor.active {
        transform: scale(3);
        background: rgba(197, 160, 33, 0.5);
    }

    .cursor-follower.active {
        transform: scale(1.5);
        background: rgba(197, 160, 33, 0.1);
        border-color: transparent;
    }

    @media (pointer: coarse) {

        .custom-cursor,
        .cursor-follower {
            display: none;
        }
    }


    .amenities-visual.parallax-bg {
        height: 300px;
        background-attachment: scroll;
        /* Disable parallax on mobile */
    }

    .quote {
        font-size: 1.5rem;
    }

    .modal-content.glass {
        padding: 2rem;
    }

    .modal h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero-btns {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        text-align: center;
    }
}

/* Contact Details */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border: 1px solid var(--primary-gold);
    border-radius: 4px;
    transition: var(--transition);
}

.contact-card:hover {
    background: rgba(197, 160, 33, 0.1);
    transform: translateY(-5px);
}

.contact-card h3 {
    color: var(--dark-gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.contact-card .name {
    font-size: 1.2rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
    color: var(--soft-white);
}

.contact-card .phone {
    font-size: 1.5rem;
    color: var(--soft-white);
    text-decoration: none;
    font-weight: 300;
    letter-spacing: 1px;
    display: block;
    transition: var(--transition);
}

.contact-card .phone:hover {
    color: var(--primary-gold);
    padding-left: 10px;
}