/* --- Advanced Typography & Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

/* --- Premium CSS Variables --- */
:root {
    /* Color Palette */
    --primary: #cba876; /* Rich Champagne Gold */
    --primary-dark: #b59260;
    --primary-light: #eaddca;
    
    --secondary: #1a2f33; /* Deep Teal/Navy */
    --secondary-light: #254045;
    
    --text-dark: #1e293b;
    --text-muted: #64748b;
    
    --bg-main: #fafaf9; /* Warm off-white */
    --bg-card: #ffffff;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-sans: 'Plus Jakarta Sans', sans-serif;
    
    /* Shadows & Effects */
    --shadow-soft: 0 10px 40px -10px rgba(0,0,0,0.08);
    --shadow-hover: 0 20px 50px -10px rgba(0,0,0,0.12);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.3);
    
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Base Reset & Smooth Scrolling --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background-color: var(--bg-main);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* --- Typography System --- */
h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    color: var(--secondary);
    line-height: 1.2;
}

h1 { font-size: 4.5rem; font-weight: 700; letter-spacing: -1px; }
h2 { font-size: 3rem; font-weight: 600; margin-bottom: 1rem; }
h3 { font-size: 1.8rem; font-weight: 600; }
p { color: var(--text-muted); margin-bottom: 1.5rem; font-size: 1.05rem; }
.lead { font-size: 1.25rem; color: var(--secondary-light); font-weight: 500; }

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

.container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
}

/* --- Utility Classes --- */
.text-center { text-align: center; }
.bg-dark { background-color: var(--secondary); color: white; }
.bg-pattern {
    background-color: #f3f4f6;
    background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
    background-size: 30px 30px;
}
.text-gold { color: var(--primary) !important; }

/* Section Label (Eyebrow text) */
.section-label {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 40px;
}
.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 2px;
    background-color: var(--primary);
}
.text-center .section-label { padding-left: 0; }
.text-center .section-label::before { display: none; }

/* --- Advanced Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background-color: var(--primary);
    color: #fff;
    box-shadow: 0 10px 20px -10px var(--primary);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: var(--transition);
    z-index: -1;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 25px -10px var(--primary-dark);
}

.btn-primary:hover::before { left: 100%; transition: 0.7s; }

.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}
.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}
.btn-block { width: 100%; }

/* --- Glassmorphism Navigation --- */
#navbar {
    position: fixed;
    top: 0; left: 0; width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

#navbar.scrolled {
    padding: 1rem 0;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--shadow-soft);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.5px;
}
.logo .dot { color: var(--primary); }

#navbar.scrolled .logo,
#navbar.scrolled .nav-links li a:not(.btn) {
    color: var(--secondary);
}

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

.nav-links li a:not(.btn) {
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding-bottom: 5px;
}

.nav-links li a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-links li a:not(.btn):hover::after { width: 100%; }

.nav-btn {
    padding: 0.7rem 1.8rem;
    font-size: 0.9rem;
}

.menu-icon {
    display: none;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
    z-index: 1001;
}

#navbar.scrolled .menu-icon { color: var(--secondary); }

/* --- Dynamic Hero Section --- */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-slider, .slide, .hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
}

.slide {
    object-fit: cover;
    object-position: center;
    transform: scale(1.05);
    animation: slowZoom 20s infinite alternate;
}

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(26,47,51,0.9) 0%, rgba(26,47,51,0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 900px;
    padding-top: 5rem;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(203, 168, 118, 0.2);
    border: 1px solid rgba(203, 168, 118, 0.4);
    border-radius: 50px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(5px);
}

.hero h1 { color: #fff; margin-bottom: 1.5rem; }
.gradient-text {
    background: linear-gradient(to right, #fff, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin-bottom: 2.5rem;
}

.hero-btns { display: flex; gap: 1rem; }

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 4rem;
    align-items: center;
}

.stat { display: flex; flex-direction: column; }
.stat .number { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; color: var(--primary); line-height: 1; }
.stat .label { font-size: 0.85rem; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 1px; margin-top: 0.3rem;}
.divider-vertical { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: #fff;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-20px) translateX(-50%); }
    60% { transform: translateY(-10px) translateX(-50%); }
}

/* --- Floating WhatsApp Animation --- */
.floating-whatsapp {
    position: fixed;
    bottom: 40px; right: 40px;
    width: 65px; height: 65px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    font-size: 35px;
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3);
    z-index: 999;
    transition: var(--transition);
}

.floating-whatsapp::before, .floating-whatsapp::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 2px solid #25d366;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation: ripple 2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}
.floating-whatsapp::after { animation-delay: 1s; }
.floating-whatsapp:hover { transform: scale(1.1) rotate(10deg); }

@keyframes ripple {
    0% { width: 65px; height: 65px; opacity: 1; }
    100% { width: 120px; height: 120px; opacity: 0; }
}

/* --- Sections Common --- */
.section { padding: 8rem 0; }
.section-header { margin-bottom: 4rem; }

/* --- About Section --- */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    padding-right: 2rem;
    padding-bottom: 2rem;
}

.main-img { border-radius: 20px; box-shadow: var(--shadow-soft); }

.floating-img {
    position: absolute;
    bottom: 0; right: 0;
    width: 50%;
    border-radius: 15px;
    border: 10px solid var(--bg-main);
    box-shadow: var(--shadow-hover);
    transform: translateY(20px);
}

.experience-card {
    position: absolute;
    top: 40px; left: -30px;
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-hover);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: floatY 6s ease-in-out infinite;
}

@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.experience-card i { font-size: 2rem; color: var(--primary); }
.experience-card span { font-family: var(--font-heading); font-weight: 600; font-size: 1.1rem; color: var(--secondary); max-width: 120px;}

.about-benefits { margin-top: 2rem; }
.about-benefits li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
    color: var(--secondary);
}
.about-benefits i { color: var(--primary); font-size: 1.2rem; }

/* --- Rooms Section --- */
.room-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.glass-card {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0,0,0,0.03);
    transition: var(--transition);
}

.glass-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-hover);
}

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

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

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

.tag {
    position: absolute;
    top: 20px; right: 20px;
    background: var(--primary);
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.tag-budget { background: var(--secondary); }

.room-info { padding: 2.5rem 2rem; }

.room-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.price {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}
.price span { font-size: 0.9rem; color: var(--text-muted); font-family: var(--font-sans); font-weight: 400;}

.features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 1.5rem 0 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.features-list span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--secondary-light);
    font-weight: 500;
}
.features-list i { color: var(--primary); }

/* --- Amenities / Features Grid --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-box {
    background: var(--bg-card);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 1px solid transparent;
}

.feature-box:hover {
    transform: translateY(-10px);
    border-color: var(--primary-light);
    box-shadow: var(--shadow-hover);
}

.icon-wrapper {
    width: 70px; height: 70px;
    margin: 0 auto 1.5rem;
    background: rgba(203, 168, 118, 0.1);
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    font-size: 1.8rem;
    color: var(--primary);
    transition: var(--transition);
}

.feature-box:hover .icon-wrapper {
    background: var(--primary);
    color: #fff;
    transform: rotateY(180deg);
}

.feature-box h4 { margin-bottom: 0.5rem; font-family: var(--font-sans); }
.feature-box p { margin-bottom: 0; font-size: 0.95rem; }

/* --- Gallery Masonry --- */
.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(26,47,51,0.8), transparent);
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

/* --- FAQ Section for SEO --- */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 10px;
    background: var(--bg-card);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--secondary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover { color: var(--primary); }
.faq-question i { transition: transform 0.3s; color: var(--primary); }

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    margin: 0;
}

/* --- Contact Section --- */
.contact-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    padding: 0; /* Remove padding, map will be flush */
}

.contact-details { padding: 4rem; }

.info-list { margin-top: 3rem; }
.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.icon-circle {
    width: 50px; height: 50px;
    background: rgba(203, 168, 118, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-item h5 { font-family: var(--font-sans); color: var(--secondary); margin-bottom: 0.3rem; }
.info-item p { margin: 0; }
.info-item a:hover { color: var(--primary); }

.contact-map { min-height: 400px; height: 100%; }

/* --- Footer --- */
.footer {
    background-color: var(--secondary);
    color: #cbd5e1;
    padding-top: 5rem;
}

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

.footer-brand .logo { color: #fff; margin-bottom: 1.5rem; display: block; }
.footer-brand p { color: #cbd5e1; max-width: 350px; }

.social-links {
    display: flex; gap: 1rem; margin-top: 2rem;
}
.social-links a {
    width: 45px; height: 45px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex; justify-content: center; align-items: center;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.1);
}
.social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.footer-links h4 { color: #fff; margin-bottom: 1.5rem; font-family: var(--font-sans); }
.footer-links ul li { margin-bottom: 0.8rem; }
.footer-links a { color: #cbd5e1; }
.footer-links a:hover { color: var(--primary); padding-left: 5px; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem 0;
    font-size: 0.9rem;
}
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { margin: 0; }

/* --- Scroll Reveal Animations --- */
.reveal-up { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }

.active.reveal-up, .active.reveal-left, .active.reveal-right { opacity: 1; transform: translate(0); }

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }

/* --- Mobile Responsiveness --- */
@media (max-width: 992px) {
    h1 { font-size: 3.5rem; }
    h2 { font-size: 2.5rem; }
    .about-content { grid-template-columns: 1fr; gap: 4rem; }
    .about-image-wrapper { max-width: 600px; margin: 0 auto; }
    .contact-card { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
    .hero-stats { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 768px) {
    .menu-icon { display: block; }
    
    .nav-links {
        position: fixed;
        top: 0; right: -100%;
        width: 80%; height: 100vh;
        background: var(--bg-card);
        flex-direction: column; justify-content: center;
        transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    }
    
    .nav-links.active { right: 0; }
    
    .nav-links li a:not(.btn) { color: var(--text-dark); font-size: 1.2rem; }
    #navbar.scrolled .menu-icon { color: var(--text-dark); }
    
    /* Mobile Layout Adjustments to prevent overlap */
    #navbar { padding: 1rem 0; }
    .logo { font-size: 1.4rem; }
    .hero { align-items: flex-start; padding-top: 130px; }
    .hero-content { padding-top: 0; margin-top: 2rem; }
    h1 { font-size: 2.3rem; line-height: 1.2; margin-bottom: 1rem; }
    .hero p { font-size: 1.05rem; margin-bottom: 2rem; }
    .badge { font-size: 0.75rem; padding: 0.3rem 0.8rem; margin-bottom: 1rem; }
    
    .hero-btns { flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr; }
    .flex-between { flex-direction: column; text-align: center; gap: 1rem; }
    
    .floating-whatsapp { bottom: 20px; right: 20px; width: 55px; height: 55px; font-size: 30px; }
}
