@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400;1,500&display=swap');

:root {
    --primary: #0A0A0A;        /* Deep Midnight */
    --primary-light: #1A1A1A;
    --accent: #C5A059;         /* Champagne Gold */
    --accent-hover: #E2C284;
    --bg-light: #FFFFFF;
    --bg-silk: #F7F5F2;        /* Silk/Paper texture feel */
    --text-main: #2D2D2D;
    --text-muted: #707070;
    
    --border-thin: 1px solid rgba(197, 160, 89, 0.2);
    --border-light: 1px solid rgba(0, 0, 0, 0.05);
    
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-soft: 0 20px 40px rgba(0,0,0,0.05);
    
    /* Spacing & Layout */
    --section-padding: 150px;
    --section-padding-mobile: 80px;
}

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

body {
    background-color: var(--bg-light);
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    padding-top: 80px; /* Offset for fixed header */
}

h1, h2, h3, h4, .serif {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    color: var(--primary);
    line-height: 1.1;
}

h1 { font-size: clamp(2.5rem, 8vw, 6rem); }
h2 { font-size: clamp(2rem, 5vw, 4rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.5rem); }

a { text-decoration: none; color: inherit; transition: var(--transition-smooth); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Luxury Header */
header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9000;
    padding: 15px 0;
    border-bottom: var(--border-light);
    transition: var(--transition-smooth);
}

header.scrolled {
    padding: 10px 0;
    background: #fff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    display: flex;
    align-items: center;
}

.logo span {
    color: var(--accent);
    margin-left: 5px;
}

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary);
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: var(--transition-smooth);
}

.nav-links a:hover::after {
    width: 100%;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-cta {
    background: var(--primary);
    color: #fff;
    padding: 12px 28px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition-smooth);
}

.header-cta:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--primary);
    cursor: pointer;
}

/* Cinematic Hero */
.hero {
    height: 100vh;
    min-height: 700px;
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.1) 100%);
    z-index: 5;
}

/* Premium Buttons */
.btn {
    padding: 18px 45px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
}

.btn-primary:hover {
    background: #fff;
    color: var(--primary);
    transform: translateY(-5px);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.4);
    color: #fff;
}

.btn-outline:hover {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
    transform: translateY(-5px);
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-5px);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    z-index: 10;
    color: #fff;
}

.hero-content h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    margin-bottom: 25px;
    line-height: 1.1;
    text-shadow: 0 10px 30px rgba(0,0,0,0.3);
    color: #fff; /* Ensure it's white */
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

/* Slider Nav */
.slider-nav {
    position: absolute;
    bottom: 50px;
    right: 5%;
    z-index: 100;
    display: flex;
    gap: 15px;
}

.slider-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.1);
}

/* Rooms Showcase */
.rooms-slider {
    display: flex;
    overflow-x: auto;
    gap: 30px;
    padding: 20px 0;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.rooms-slider::-webkit-scrollbar {
    display: none;
}

.room-card {
    flex: 0 0 calc(33.333% - 20px);
    background: #fff;
    border: var(--border-light);
    overflow: hidden;
    transition: var(--transition-smooth);
    position: relative;
    display: flex;
    flex-direction: column;
}

.room-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent);
    color: #fff;
    padding: 8px 15px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 5;
}

.room-body {
    padding: 35px 30px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.room-body h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.room-features {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.room-features i {
    color: var(--accent);
    margin-right: 5px;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

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

.room-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.room-card:hover .room-img img {
    transform: scale(1.1);
}

.room-body {
    padding: 50px 40px;
    text-align: center;
}

.room-body h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

/* Ultra-Premium Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: var(--primary);
    z-index: 9500;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 120px 40px 40px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-header {
    position: absolute;
    top: 30px;
    left: 40px;
    right: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-header .logo {
    color: #fff;
}

.close-menu {
    color: #fff;
    font-size: 2.5rem;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-nav-links {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 60px; /* Space before buttons */
}

.mobile-nav-links a {
    font-size: 2rem;
    color: #fff;
    font-family: 'Playfair Display', serif;
    opacity: 0.9;
    transition: var(--transition-smooth);
    display: block;
    padding: 5px 0;
}

.mobile-nav-links a:hover {
    opacity: 1;
    color: var(--accent);
    transform: translateX(10px);
}

.mobile-menu-footer {
    position: absolute;
    bottom: 40px;
    left: 10%;
    width: 80%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-menu-footer .btn {
    width: 100%;
    justify-content: center;
    padding: 15px;
    font-size: 0.9rem;
}

/* Sections & Typography */
section {
    padding: var(--section-padding) 0;
}

@media (max-width: 768px) {
    section {
        padding: var(--section-padding-mobile) 0;
    }
}

.section-tag {
    display: block;
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 25px;
}

.section-title {
    margin-bottom: 100px;
    text-align: center;
}

.section-title h2 {
    font-size: 4rem;
    margin-bottom: 30px;
}

.section-title p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Experience Section */
.experience-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.experience-text h2 {
    font-size: 3.5rem;
    margin-bottom: 40px;
}

.experience-text p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.signature {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.8rem;
    color: var(--accent);
    margin-top: 50px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-luxury-card {
    height: 450px;
    border-radius: 4px;
}

.feature-luxury-card:hover {
    transform: scale(1.03);
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

/* Premium CSS Logo */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #c5a059 0%, #8e6d31 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(142, 109, 49, 0.2);
    position: relative;
    border: 1px solid rgba(255,255,255,0.1);
}

.logo-icon::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 2px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    letter-spacing: -0.5px;
}

.logo-sub {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent);
    margin-top: 4px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
}

/* Stats Bar */
.stats-bar {
    padding: 100px 0;
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
    border-top: var(--border-light);
    border-bottom: var(--border-light);
    margin-top: 50px;
}

.stat-item {
    text-align: center;
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 25px;
}

.stat-text h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.stat-text p {
    font-size: 2.2rem;
    color: var(--primary);
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

/* FAQ */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: var(--border-light);
}

.faq-question {
    padding: 40px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
}

.faq-question i {
    font-size: 1rem;
    color: var(--accent);
    transition: var(--transition-smooth);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-smooth);
    color: var(--text-muted);
    font-size: 1.1rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 40px;
}

/* Footer */
footer {
    background: var(--primary);
    color: #fff;
    padding: 150px 0 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 80px;
    margin-bottom: 100px;
}

.footer-col h4 {
    color: var(--accent);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 40px;
}

.footer-col p {
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
    line-height: 2;
}

.footer-col ul li {
    margin-bottom: 20px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
}

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

.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 15px;
    z-index: 1000;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.05);
}

/* Cinematic Animations */
@keyframes zoomEffect {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

@keyframes panRight {
    from { transform: scale(1.1) translateX(-5%); }
    to { transform: scale(1.1) translateX(5%); }
}

@keyframes panLeft {
    from { transform: scale(1.1) translateX(5%); }
    to { transform: scale(1.1) translateX(-5%); }
}

.effect-zoom img { animation: zoomEffect 10s infinite alternate linear; }
.effect-pan-right img { animation: panRight 10s infinite alternate linear; }
.effect-pan-left img { animation: panLeft 10s infinite alternate linear; }
.effect-blur img { filter: brightness(0.7) blur(2px); transition: filter 2s; }
.active.effect-blur img { filter: brightness(0.7) blur(0); }

/* Breakpoints */
@media (max-width: 1100px) {
    .nav-links { gap: 20px; }
    .nav-links a { font-size: 0.75rem; }
}

@media (max-width: 1024px) {
    .nav-links, .header-cta { display: none; }
    .mobile-toggle { display: block; }
    
    .hero-content h1 { font-size: 3.5rem; }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    section { padding: 80px 0; }
    .experience-section { grid-template-columns: 1fr; gap: 40px; }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-luxury-card {
        height: 300px;
    }

    .rooms-slider {
        display: flex;
        overflow-x: auto;
        gap: 20px;
        padding: 20px 5%;
        margin: 0 -5%;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }
    
    .rooms-slider::-webkit-scrollbar { display: none; }
    
    .room-card {
        flex: 0 0 88%;
        scroll-snap-align: center;
    }

    .stats-bar { 
        flex-direction: column;
        gap: 50px; 
        padding: 60px 0;
        text-align: center;
    }
    
    .stat-text p {
        font-size: 1.8rem;
    }

    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .mobile-bottom-bar { display: block; }
    
    .hero-content h1 { font-size: 2.8rem; }
    .hero-content p { font-size: 1.1rem; }
    
    .section-title h2 { font-size: 2.2rem; }
    .section-title { margin-bottom: 50px; }
}
