@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap');

:root {
    --primary: #0F5B66;      /* Deep Sea Teal */
    --accent: #E9CFA6;       /* Warm Sand */
    --cta: #FF9F1C;          /* Mango Amber */
    --bg-offwhite: #FBF9F6;  /* Background */
    --text-main: #2C3E50;
    --font-head: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* Reset & Base */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font-body); background: var(--bg-offwhite); color: var(--text-main); line-height: 1.6; }
h1, h2, h3 { font-family: var(--font-head); color: var(--primary); }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

/* Navigation */
.navbar { padding: 1.5rem 0; background: #fff; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.05); z-index: 1000; }
.nav-flex { display: flex; justify-content: space-between; align-items: center; width: 90%; margin: 0 auto; }
.brand { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; color: var(--primary); }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }

/* Buttons */
.btn { padding: 0.8rem 1.5rem; border-radius: 4px; font-weight: 500; display: inline-block; cursor: pointer; border: none; }
.btn-primary { background: var(--cta); color: #fff; }
.btn-primary:hover { background: #e0890e; transform: translateY(-2px); }

/* The Fixed Right Sidebar */
.fixed-social-bar {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    background: #fff;
    box-shadow: -2px 2px 10px rgba(0,0,0,0.1);
    border-radius: 8px 0 0 8px;
    z-index: 2000;
    overflow: hidden;
}

.social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    border-bottom: 1px solid #eee;
    transition: all 0.2s;
}

.social-icon svg { width: 24px; height: 24px; }
.social-icon:hover { background: var(--accent); color: var(--primary); width: 60px; }
.social-icon.whatsapp { color: #25D366; }

/* Responsive */
@media (max-width: 768px) {
    .nav-links { display: none; } /* Add toggle JS logic later */
    .fixed-social-bar { bottom: 20px; top: auto; right: 20px; transform: none; flex-direction: row; border-radius: 50px; padding: 5px; }
    .social-icon { border: none; width: 45px; height: 45px; border-radius: 50%; }
}

/* Utilities */
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section-pad { padding: 4rem 0; }
.grid-rooms { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }

/* --- MOBILE MENU ICON VISIBILITY --- */
/* Hide the hamburger icon on Desktop */
.mobile-toggle { 
    display: none !important; 
    cursor: pointer; 
    font-size: 1.5rem; 
    color: var(--primary); 
}

/* Show the hamburger icon ONLY on mobile screens */
@media (max-width: 768px) {
    .mobile-toggle { 
        display: block !important; 
    }
}

/* --- ENLARGED LOGO SIZING --- */

/* --- SLEEK HEADER LOGO SIZING --- */

/* 1. Reset Navbar to a standard sleek height */
.navbar {
    min-height: auto; /* Let content dictate height */
    padding: 0.5rem 0; /* Minimal padding */
}

/* 2. Desktop: constrain height, let width expand */
.brand img {
    height: 85px;      /* Fixed height */
    width: auto;       /* Width scales automatically */
    display: block;    /* Removes bottom gap */
    object-fit: contain;
}

/* 3. Mobile: smaller to fit phone screens */
@media (max-width: 768px) {
    .brand img {
        height: 55px; /* Perfect for mobile bars */
    }
}

/* --- HERO SLIDER STYLES --- */
/* --- UPDATED HERO SLIDER (With Orange Tint) --- */

/* =========================================
   MODERN ASYMMETRIC SLIDER (Left Aligned)
   ========================================= */

/* 1. The Slider Container */
.hero-slider {
    position: relative;
    width: 100%;
    height: 85vh; /* 85% of viewport height */
    overflow: hidden;
    background: #000;
}

/* 2. The Slide & Background Animation */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

/* THE "KEN BURNS" EFFECT (Slow Zoom) */
/* This makes the image feel alive */
.slide-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1); /* Start slightly zoomed in */
    transition: transform 6s ease-out; /* Smooth 6s zoom out */
}

.slide.active .slide-bg {
    transform: scale(1.0); /* Zoom out to normal size when active */
}

/* The Gold Tint Overlay (Keep this for contrast) */
.slide::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ff9f1c; /* Gold/Orange */
    mix-blend-mode: multiply;  /* Blends with photo */
    opacity: 0.3;              /* Adjust darkness here */
    z-index: 2;
}

/* 3. The Content Container (Left Aligned) */
.slide-content {
    position: absolute;
    top: 50%;
    left: 10%; /* anchored 10% from the left edge */
    transform: translateY(-50%);
    text-align: left; /* Text aligns left */
    z-index: 3;
    max-width: 800px;
    padding-left: 30px; /* Space between gold line and text */
}

/* THE VERTICAL GOLD LINE ANCHOR */
.slide-content::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px; /* Thickness of the line */
    height: 0%; /* Starts at height 0 */
    background-color: #fff; /* White line (looks cleaner with Playfair) */
    transition: height 1s ease-in-out 0.2s; /* Delays slightly */
}

.slide.active .slide-content::before {
    height: 100%; /* Grows to full height when active */
}

/* 4. The Title (Playfair Display) */
.slide-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 400; /* Regular weight is elegant */
    font-style: italic;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 1rem;
    
    /* Animation Setup */
    opacity: 0;
    transform: translateX(-50px); /* Start 50px to the left */
    transition: all 1s ease-out 0.5s; /* Delay 0.5s */
}

/* 5. The Subtitle */
.slide-content p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    display: block;
    
    /* Animation Setup */
    opacity: 0;
    transform: translateX(-30px);
    transition: all 1s ease-out 0.8s; /* Delay 0.8s */
}

/* 6. The Button */
.slide-content .btn {
    display: inline-block;
    background: #fff; /* Solid white button */
    color: #000;      /* Black text */
    padding: 15px 40px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    
    /* Animation Setup */
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease 1.1s, transform 1s ease 1.1s, background 0.3s;
}

.slide-content .btn:hover {
    background: var(--accent); /* Turn gold on hover */
    color: #fff;
}

/* 7. TRIGGER ANIMATIONS */
.slide.active .slide-content h1,
.slide.active .slide-content p,
.slide.active .slide-content .btn {
    opacity: 1;
    transform: translateX(0) translateY(0);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .slide-content { left: 5%; width: 90%; }
    .slide-content h1 { font-size: 3rem; }
    .slide-content p { font-size: 0.9rem; letter-spacing: 2px; }
}

/* Slider Arrows */
/* --- UPDATED SLIDER ARROWS (Bottom Right) --- */

/* The Container to hold both buttons */
.slider-controls {
    position: absolute;
    bottom: 80px;  /* Positioned above the booking widget overlap */
    right: 50px;   /* Adjusted to not hit the social bar */
    z-index: 10;
    display: flex;
    gap: 15px;     /* Space between the two buttons */
}

/* The Individual Buttons */
.slider-arrow {
    background: rgba(255, 255, 255, 0.1); /* Subtle glass effect */
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 50%; /* Circle shape */
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background: var(--cta);
    border-color: var(--cta);
    color: white;
    transform: translateY(-2px); /* Slight lift on hover */
}

/* Remove old positioning overrides since we use a wrapper now */
.prev-arrow, .next-arrow {
    position: static;
    transform: none;
}

/* Mobile Adjustment */
@media (max-width: 768px) {
    .slider-controls {
        bottom: 20px; /* Lower on mobile */
        right: 20px;
        gap: 10px;
    }
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Mobile Adjustments 
@media (max-width: 768px) {
    .hero-slider { height: 60vh; }
    .slide-content h1 { font-size: 2rem; }
    .slider-arrow { width: 40px; height: 40px; font-size: 1.2rem; padding: 0.5rem; }
}*/