@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Poppins:wght@300;400;500&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #0f0f0f;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, .logo {
    font-family: 'Playfair Display', serif;
}


h1 {
    text-transform: none; /* This removes the forced capitalization */
}
/* --- Navigation --- */
header {
    position: fixed;
    top: 0; width: 100%;
    z-index: 1000;
    background: rgba(15, 15, 15, 0.9);
    padding: 20px 8%;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    letter-spacing: 1px;
    transition: 0.3s;
}

.nav-links a:hover { color: #B86D0B; }

.reservation-btn {
    background: #B86D0B;
    color: #000;
    padding: 10px 25px;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
}

/* Logo Styling */
.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px; 
    width: auto;  
    object-fit: contain;
}

.logo span {
    font-weight: bold;
    font-size: 1.5rem; 
    letter-spacing: 1px;
}


.logo-link {
    display: flex;
    align-items: center; 
    text-decoration:none;
    gap: 12px; 
}

/* The Logo Image */
.logo-img {
    height: 60px; 
    width: auto;
    display: block;
}

/* The Text Container */
.logo-text {
    display: flex;
    flex-direction: column; 
    line-height: 1.1;
}

.logo-text span {
    color: #ffffff; 
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: 1px;
    font-family: "Georgia", serif;; 
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
}

/* Mobile Adjustment */
@media (max-width: 768px) {
    .logo-img {
        height: 40px; /* Slightly smaller logo on mobile */
    }
    .logo span {
        font-size: 1.2rem;
    }
}


/* --- Hero Section --- */
.hero {
    padding: 150px 8% 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    min-height: 90vh;
}

.hero h1 { 
    font-size: 3.5rem; 
    line-height: 1.1; 
    margin-bottom: 20px; 
}

.hero h1 span { 
    color: #eb8705;
}

.hero p { 
    color: #aaa; 
    margin-bottom: 30px; 
    max-width: 450px; 
}

.hero-content h1, 
.hero-content h1 span {
    text-transform: none !important;
    letter-spacing: 0.05em; 
    line-height: 1.2;
}

.availability-btn {
    background: #B86D0B;
    border-radius: 10px;
    color: white;

    padding: 12px 16px;      /* smaller button */
    font-size: 12px;        /* small text */
    letter-spacing: 0.5px;

    cursor: pointer;
    transition: 0.3s;

    text-decoration: none; /* remove underline */
    display: inline-flex;  /* align icon nicely */
    align-items: center;
    gap: 6px;
}

.availability-btn:hover {
    background: transparent;
    color: #eb8705;
    border: 1px solid #ffffff;
}

/* ================= HERO SECTION ================= */
.hero {
    position: relative; /* Required for the blur layer to sit behind */
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    padding: 150px 8% 80px;
    overflow: hidden;
    color: white;
}

/* The Blurry Background Layer */
.hero::before {
    content: "";
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%;
    height: 100%;
    /* Replace this URL with your preferred image */
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                      url('assets/images/bed\ no\ \(6\).jpg');
    background-size: cover;
    background-position: center;
    filter: blur(1px); /* Adjust the pixels to change blur intensity */
    transform: scale(1.1); /* Prevents white edges caused by the blur */
    z-index: -1; /* Puts it behind the content */
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5); 
}

.hero p {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 30px;
    max-width: 500px;
}

.image-grid { 
    display: flex; gap: 20px; 
}

.luxury-reception { 
    width: 300px; 
    height: 450px; 
    border-radius: 10px; 
    overflow: hidden; 
}

.side-cards { 
    display: flex; 
    flex-direction: 
    column; gap: 20px; 
}

.mini-card { 
    width: 200px; 
    height: 215px; 
    border-radius: 10px; 
    overflow: hidden; 
}

img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
}
/* 1. Define the Zoom Animation */


/* 1. New Elegant Pan & Zoom Animation */
@keyframes luxuryDrift {
    0% {
        transform: scale(1) translateX(0);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.1) translateX(-10px); /* Slight zoom and shift */
        opacity: 1;
    }
    100% {
        transform: scale(1) translateX(0);
        opacity: 0.8;
    }
}

.card img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover;
    /* Faster than 20s makes it more noticeable, slower makes it more 'zen' */
    animation: luxuryDrift 12s ease-in-out infinite;
    will-change: transform; /* Improves performance */
}

/* Ensure the container clips the movement */
.card, .luxury-reception, .mini-card {
    overflow: hidden;
    background: #000; /* Prevents white flashes if image takes time to load */
}

.card {
    overflow: hidden;
}

/* --- Luxury Section --- */
.luxury-experience {
     padding: 100px 8%; 
     background: #151515; 
    }

.luxury-experience .container { 
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 80px; 
    align-items: center; 
}

.image-gallery { 
    position: relative; 
    height: 400px; 
}

.left-img { 
    width: 70%; 
    height: 300px; 
    position: absolute; 
    top: 0; 
    left: 0; 
    z-index: 2; 
    border: 5px solid #151515; 
}

.right-img { 
    width: 70%; 
    height: 300px; 
    position: absolute; 
    bottom: 0; 
    right: 0; 
}

.underline { 
    width: 50px; 
    height: 2px; 
    background: #B86D0B; 
    margin: 20px 0; 
}


/* ================= DINING EXPERIENCE FIX ================= */

.dining-experience {
    padding: 120px 8%;
    background: #000;
}

.dining-experience .container {
    display: flex;
    align-items: center;
    justify-content: space-between; /* FIXED */
    gap: 80px;
}

/* LEFT CONTENT */
.dining-experience .content-box {
    flex: 1;
    max-width: 520px;
}

.dining-experience h2.title {
    font-size: 3rem;
    font-family: 'Playfair Display', serif;
}

.dining-experience h2 span {
    font-size: 0.85rem;
    color: #B86D0B;
    letter-spacing: 4px;
    display: block;
    margin-top: 10px;
}

.dining-experience .description {
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* RIGHT MOSAIC */
.dining-mosaic {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-auto-rows: 200px; /* base row height for small items */
    gap: 20px;
}

.mosaic-item {
    border-radius: 20px;
    overflow: hidden;
}

.mosaic-item.tall {
    grid-row: span 2;
}

.mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.mosaic-item:hover img {
    transform: scale(1.08);
}

/* BUTTON */
.view-more-btn {
    display: inline-block;
    background: #B86D0B;
    color: #000;
    padding: 12px 35px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    transition: 0.3s;
}

.view-more-btn:hover {
    background: #d48a00;
    transform: translateY(-3px);
}


/* --- View More Button --- */
.view-more-btn {
    display: inline-block;
    background: #B86D0B;
    color: #000;
    padding: 12px 35px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: 0.3s;
}

.view-more-btn:hover {
    background: #d48a00;
    transform: translateY(-3px);
}

@media screen and (max-width: 1024px) {
    .dining-mosaic {
        grid-auto-rows: 180px;
    }
}

@media screen and (max-width: 768px) {
    .dining-mosaic {
        grid-template-columns: 1fr; /* stack on mobile */
        grid-auto-rows: 250px;
    }

    .mosaic-item.tall {
        grid-row: span 1; /* tall items become single row on mobile */
    }
}


/* --- Rooms Grid --- */
.rooms-section { padding: 100px 8%; text-align: center; }
.rooms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 50px; }

/* Container and Card Styling */
.room-card {
    background: #111;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    border: 1px solid #222;
}

.room-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Pushes button to bottom */
}

/* Typography */
.room-info h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 5px;
}

.room-info .subtitle {
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

/* Perfecting the List */
.room-amenities {
    list-style: none; /* Removes the white dots */
    padding: 0;
    margin: 0 0 25px 0;
}

.room-amenities li {
    color: #ddd;
    font-size: 0.9rem;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start; /* Aligns icon with top of text */
    gap: 12px; /* Space between checkmark and text */
}

.room-amenities li i {
    color: #b37400; /* Your theme gold */
    font-size: 0.8rem;
    margin-top: 4px; /* Centers icon vertically with first line */
}

/* The Button */
.book-btn {
    margin-top: auto; /* Stays at the bottom */
    background: #b37400;
    color: #fff;
    padding: 14px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border-radius: 8px;
    transition: 0.3s;
}

.book-btn:hover {
    background: #d48a00;
    transform: translateY(-2px);
}

/* Final Button Look */
.book-btn {
    display: inline-block;
    color: #000;
    width: 100%;
    padding: 12px;
    background: #B86D0B;
    border: none;
    margin-top: 15px;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
    font-size: 13px;
}

.book-btn:hover {
    background: #b67908;
}


/* ================= ROOMS SECTION BLUR ================= */
.rooms-section.blur-bg {
    position: relative;
    padding: 100px 8%;
    overflow: hidden;
    background: #000; /* Fallback color */
}

/* The Background Layer for Chalets */
.rooms-section.blur-bg::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    /* A misty forest image to match the hill country vibe */
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                      url('assets/images/bg.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(1px); /* Slightly stronger blur for the cards section */
    transform: scale(1.1);
    z-index: 1;
}

/* Ensures content sits above the blur */
.rooms-container {
    position: relative;
    z-index: 2;
}

.rooms-section .section-title {
    color: #fff;
    text-align: center;
    font-size: 2.5rem;
}

/* Updated Room Cards to pop against the blur */
.room-card {
    background: rgba(26, 26, 26, 0.8); /* Semi-transparent card */
    backdrop-filter: blur(5px); /* Double blur effect for extra depth */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s ease;
}

.room-card:hover {
    transform: translateY(-10px);
    border-color: #c9a96a;
    background: rgba(26, 26, 26, 0.95);
}

/* Moments */
.luxury-experience {
    padding: 100px 0;
    background: #0a0a0a;
    color: #fff;
}

.luxury-experience .container {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Mosaic Section --- */
.dining-mosaic {
    display: flex;
    gap: 20px;
    flex: 1;
}

.side-mosaic {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mosaic-item {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}

.mosaic-item.tall { width: 300px; height: 500px; }
.mosaic-item.small { width: 220px; height: 240px; }

.mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: continuousZoom 12s ease-in-out infinite; /* From previous step */
}

/* --- Content Section --- */
.content-box { flex: 1; }

.content-box .title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.content-box .title span {
    display: block;
    color: #B86D0B;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 10px;
}

.underline {
    width: 60px;
    height: 3px;
    background: #B86D0B;
    margin-bottom: 30px;
}

/* --- Event Cards (Small & Neat) --- */
.event-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.event-card {
    background: #111;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #222;
    transition: 0.3s;
}

.event-card:hover { border-color: #B86D0B; transform: translateY(-5px); }

.event-card i { color: #B86D0B; font-size: 1.5rem; margin-bottom: 15px; }

.event-card h4 { font-size: 0.9rem; margin-bottom: 10px; color: #fff; }

.event-card p { font-size: 0.75rem; color: #888; line-height: 1.4; }

/* --- Gold Button --- */
.btn-book-gold {
    display: inline-block;
    color: #B86D0B;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-book-gold:hover {
    color: #fff;
    transform: translateX(10px);
}


/* ================= NEWS SECTION STYLING ================= */
.news-section {
    padding: 100px 8%;
    background: #0f0f0f;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    font-size: 25px;
}

.section-header .underline {
    margin: 15px auto;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card {
    background: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(255,255,255,0.05);
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    border-color: rgba(201, 169, 106, 0.3);
}

.news-image {
    position: relative;
    height: 230px;
}

.news-date {
    position: absolute;
    bottom: 0;
    left: 0;
    background: #B86D0B;
    color: #000;
    padding: 5px 15px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.news-content {
    padding: 25px;
}

.news-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #fff;
    line-height: 1.4;
}

.news-content p {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Cuts text at 3 lines for neatness */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    font-size: 12px;
    font-weight: 600;
    color: #B86D0B;
    text-decoration: none;
    letter-spacing: 1px;
    transition: 0.3s;
}

.read-more:hover {
    letter-spacing: 2px;
}

/* Responsive News Grid */
@media (max-width: 992px) {
    .news-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 650px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
}


/* --- Footer --- */
footer { padding: 80px 8%; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; }

@media (max-width: 968px) {
    .hero, .luxury-experience .container, .rooms-grid, .footer-grid { grid-template-columns: 1fr; }
    .hero { text-align: center; }
    .image-grid { justify-content: center; }
}
/* ================= FOOTER STYLING ================= */
footer {
    background: #090909;
    padding: 80px 8% 40px;
    border-top: 1px solid rgba(201, 169, 106, 0.2); /* Subtle gold border */
}

.luxury-footer {
    background: #090909;
    padding: 80px 8% 40px; /* 8% side padding is the key */
    border-top: 1px solid rgba(184, 109, 11, 0.2);
    width: 100%;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr; 
    gap: 40px;
    margin: 0; /* Remove auto margins to keep it pinned to the padding */
    width: 100%;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr; 
    gap: 40px;
    margin-bottom: 50px;
}

.footer-box h3, 
.footer-box h4 {
    font-family: 'Playfair Display', serif;
    color: #B86D0B;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.footer-box p {
    color: #999;
    font-size: 14px;
    line-height: 1.8;
}

.footer-box ul {
    list-style: none;
}

.footer-box ul li {
    margin-bottom: 12px;
}

.footer-box ul li a {
    color: #999;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-box ul li a:hover {
    color: #B86D0B;
    padding-left: 5px; /* Subtle slide effect */
}

/* Social Icons Styling */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
    font-size: 14px;
}

.social-icons a:hover {
    background: #B86D0B;
    color: #000;
    border-color: #B86D0B;
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between; 
    align-items: center;
    padding-top: 30px;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    font-size: 12px;
    color: #666;
    letter-spacing: 1px;
}

/* --- Developer Column Styling --- */
.developer-col {
    display: flex;
    flex-direction: column;
}

.dev-link {
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-top: 5px;
    transition: 0.3s ease;
}

.dev-link:hover {
    letter-spacing: 4px; /* Subtle elegant expansion on hover */
    opacity: 0.8;
}

/* Ensure the 4 columns are spaced correctly */
.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 60px 0;
}

/* Adjust for mobile */
@media (max-width: 968px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 500px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .social-links {
        justify-content: center;
    }
}

/* Responsive Footer */
@media (max-width: 968px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 500px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}


.container {
    max-width: 1200px;
    margin: 0 auto;
}

.gold-text {
    color: #c9a96a;
    letter-spacing: 3px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.underline {
    width: 60px;
    height: 3px;
    background: #c9a96a;
    margin: 15px 0 25px 0;
}

/* --- About Hero --- */
.about-hero {
    /* Use padding to control height for an "elegant" feel */
    padding: 120px 5% 80px; 
    text-align: center;
    
    /* Background image and gradient applied directly */
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                url('assets/images/name.jpeg') center/cover no-repeat;
    
    /* Subtle spacing from the top */
    margin-top: 10px; 
    
    /* Ensures content stays centered and clear */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.about-hero h1 {
    /* Matches the contact hero typography */
    font-size: clamp(2rem, 5vw, 3.5rem); 
    font-family: 'Playfair Display', serif;
    letter-spacing: 8px;
    margin-bottom: 1px;
    font-weight: 300;
    color: white;
    text-transform: uppercase;
}

.about-hero p {
    font-size: 1rem;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
}

/* --- Ella Info Section --- */
.ella-info {
    padding: 50px 5%;
}

.ella-info .container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: flex-start;
}

.text-block h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin: 10px 0;
}

.description p {
    margin-bottom: 20px;
    color: #ccc;
}

/* --- Why Choose Us --- */
.why-choose-us {
    margin-top: 50px;
}

.icon-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.icon-card {
    background: #151515;
    padding: 20px;
    border-radius: 10px;
    transition: 0.3s;
}

.icon-card:hover {
    background: #1a1a1a;
    transform: translateY(-5px);
}

.icon-card i {
    font-size: 2rem;
    color: #c9a96a;
    margin-bottom: 15px;
}

.icon-card h5 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.icon-card p {
    font-size: 0.85rem;
    color: #aaa;
}

/* --- Mosaic Images --- */
.image-mosaic-about {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.img-wrapper {
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: 15px;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.img-wrapper:hover img {
    transform: scale(1.05);
}

/* --- Location Section --- */
.location-section {
    padding: 100px 5%;
    background: #0f0f0f;
}

.location-section .container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: center;
}

.google-map {
    width: 100%;
    height: 400px;
    border: 0;
    border-radius: 15px;
}

.location-details h3 {
    font-family: 'Playfair Display', serif;
    color: #c9a96a;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.address {
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

/* --- Mobile Responsive --- */
@media (max-width: 968px) {
    .ella-info .container, 
    .location-section .container {
        grid-template-columns: 1fr;
    }
    
    .image-mosaic-about {
        flex-direction: row;
    }

    .text-block {
        text-align: center;
    }

    .underline {
        margin: 15px auto 25px auto;
    }
}
/* --- Brand Colors & Global Accents --- */
:root {
    --brand-gold: #B86D0B;
    --card-bg: #111111; /* Slightly darker for better contrast */
}

.gold-text {
    color: var(--brand-gold);
    letter-spacing: 2px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.underline {
    width: 50px;
    height: 2px;
    background: var(--brand-gold);
    margin: 15px 0 25px 0;
}

/* --- Improved Why Choose Us Section --- */
.why-choose-us {
    margin-top: 60px;
}

/* --- Icon Cards Grid Fix --- */
.icon-cards {
    display: grid;
    /* Forces a clean 3-column layout on desktop */
    grid-template-columns: repeat(3, 1fr); 
    gap: 15px;
    margin-top: 25px;
}

/* Ensure cards are uniform height */
.icon-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 180px;
}

.icon-card:hover {
    background: #181818;
    transform: translateY(-8px);
    border-color: var(--brand-gold);
}

.icon-card i {
    font-size: 1.8rem;
    color: var(--brand-gold); /* Updated to #B86D0B */
    margin-bottom: 20px;
    display: block;
}

.icon-card h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
}

.icon-card p {
    font-size: 0.9rem;
    color: #999;
    line-height: 1.5;
}

.perfect-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    font-size: 1.1rem;
    color: #fff;
}

.separator {
    color: var(--brand-gold);
    font-weight: bold;
    opacity: 0.6;
}

/* --- Mosaic Image Fix for 3 Images --- */
.image-mosaic-about {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.img-wrapper {
    width: 100%;
    /* Reduced height slightly to accommodate the 3rd image better */
    height: 280px; 
    border-radius: 15px;
    overflow: hidden;
}

/* --- Mobile Responsiveness Updates --- */
@media (max-width: 1100px) {
    .icon-cards {
        grid-template-columns: repeat(2, 1fr); /* 2x3 on tablets */
    }
}

@media (max-width: 768px) {
    .ella-info .container {
        grid-template-columns: 1fr;
    }
    .icon-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    .perfect-tags {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .icon-cards {
        grid-template-columns: 1fr; /* Stack on small phones */
    }
}

/* --- Enhanced Perfect For Section --- */
.guest-experience {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #222;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 images in a row */
    gap: 15px;
    margin-top: 20px;
}

.exp-card {
    position: relative;
    height: 150px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s ease;
}

.exp-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(70%); /* Darkens image slightly to make text pop */
    transition: 0.4s ease;
}

.exp-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    text-align: center;
}

.exp-overlay span {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
}

/* --- Hover Effects --- */
.exp-card:hover {
    transform: translateY(-5px);
}

.exp-card:hover img {
    filter: brightness(100%);
    transform: scale(1.1);
}

.exp-card:hover .exp-overlay {
    background: linear-gradient(transparent, var(--brand-gold));
}

/* --- Mobile Fixes --- */
@media (max-width: 968px) {
    .experience-grid {
        grid-template-columns: repeat(2, 1fr); /* 2x2 layout on tablets */
    }
}

@media (max-width: 480px) {
    .experience-grid {
        grid-template-columns: 1fr; /* Stack on small phones */
    }
    .exp-card {
        height: 120px;
    }
}

/* --- Other Gold Accents --- */
.location-details h3 {
    color: var(--brand-gold);
}
@media (max-width: 600px) {
    .image-mosaic-about {
        flex-direction: column;
    }
}



@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;700&display=swap');

:root {
    --gold: #B86D0B;
    --black: #000000;
    --white: #ffffff;
    --transition: all 0.6s cubic-bezier(0.23, 0.1, 0.32, 1);
}


/* Luxury Header */
.main-header {
    display: flex;
    justify-content: space-between;
    padding: 40px 60px;
    letter-spacing: 5px;
    font-size: 0.8rem;
    border-bottom: 1px solid #222;
}

.logo {
    font-weight: 700;
    font-size: 1.5rem;
}

.dot { color: var(--gold); }

/* Update/Add these rules to your existing CSS */

:root {
    --gold: #B86D0B;
    --black: #111;
    --transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 10px;
    background-color: #000;
    margin-top: 100px;
}

.gallery-item {
    position: relative;
    height: 450px;
    overflow: hidden;
    background: #111;
}

.gallery-item.large {
    grid-column: span 2;
}

/* Video Styling */
.gallery-video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures video fills the area */
    filter: brightness(0.7);
    transition: var(--transition);
}

/* Updated Image Box to handle zoom correctly */
.image-box {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    transition: var(--transition);
}

.gallery-item {
    position: relative;
    height: 450px;
    overflow: hidden;
    background: #000;
}

/* Hover States for Video */
.gallery-item:hover .gallery-video {
    transform: scale(1.1);
    filter: brightness(1);
}

.gallery-item:hover .gallery-video,
.gallery-item:hover .image-box img {
    transform: none; /* Stops the "enhance" / zoom effect */
    filter: brightness(1);
}

.info-panel {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold);
    display: flex;
    align-items: center;
    padding: 40px;
    transition: var(--transition);
    z-index: 5;
    color: #ffffff;
}


.panel-content {
    pointer-events: auto;
}

.gallery-item:has(img):hover .info-panel {
    left: 0;
}

.gallery-item:hover .info-panel {
    left: 0;
}

.gallery-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 10; /* Keeps video above any hidden panels */
}

.gallery-video:hover {
    z-index: 10;
    position: relative;
}

.gallery-item:hover .gallery-video,
.gallery-item:hover img {
    transform: none;
    filter: brightness(1);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .gallery-container { grid-template-columns: repeat(2, 1fr); }
    .gallery-item { height: 350px; }
}

@media (max-width: 600px) {
    .gallery-container { grid-template-columns: 1fr; }
    .gallery-item.large { grid-column: span 1; }
}

/* --- HERO SECTION --- */
.blog-hero {
    position: relative;
    height: 65vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* Updated with your provided image name from the story example */
    background: url('assets/images/nightaloft.jpg') center/cover no-repeat;
    margin-top: -85px; /* Pulls image behind transparent nav */
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Dark gradient that fades into the black background of the body */
    background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 60%, #000 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding-top: 60px;
}

.featured-badge {
    color: var(--gold);
    border: 1px solid var(--gold);
    display: inline-block;
    padding: 6px 18px;
    font-size: 0.75rem;
    letter-spacing: 3px;
    margin-bottom: 20px;
    background: rgba(0,0,0,0.3);
}

.hero-content h1 {
    font-size: 3.5rem;
    letter-spacing: 5px;
    text-transform: uppercase;
}

/* --- MAIN CONTAINER --- */
.blog-container {
    max-width: 1200px;
    margin: -100px auto 0; /* Pulls the card UP over the hero image */
    padding: 0 5% 100px;
    position: relative;
    z-index: 5;
}

/* --- FEATURED CARD --- */
.blog-card.featured {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    background: #0d0d0d;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}

.blog-image {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.08);
}

.blog-content {
    padding: 50px;
}

.date {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.blog-content h2 {
    font-size: 2.5rem;
    margin: 20px 0;
    line-height: 1.1;
    color: #fff;
}

.blog-description p {
    color: #aaa;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* --- NO-JS EXPANSION LOGIC --- */
.read-more-state { display: none; }

.read-more-target {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.read-more-trigger {
    display: inline-block;
    cursor: pointer;
    color: var(--gold);
    font-weight: bold;
    font-size: 0.9rem;
    margin-top: 15px;
    text-transform: uppercase;
    transition: 0.3s;
}

.read-more-trigger::before { content: 'READ STORY \2192'; }

.read-more-state:checked ~ .blog-description .read-more-target {
    max-height: 1000px;
    opacity: 1;
    margin-top: 20px;
}

.read-more-state:checked ~ .read-more-trigger::before {
    content: 'SHOW LESS \2191';
}

/* --- GRID CARDS --- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
    /* This is critical: it prevents cards from stretching to match the neighbor */
    align-items: flex-start; 
}

.blog-card:not(.featured) {
    background: #0d0d0d;
    border-radius: 15px;
    border: 1px solid #B86D0B;
    display: flex;
    flex-direction: column;
    /* This ensures cards don't have a forced height when closed */
    height: fit-content; 
    overflow: hidden;
}

/* Force the text area to have a minimum space so titles don't push buttons around */
.blog-card:not(.featured) .blog-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* This targets the specific title to ensure 1-line or 2-line titles don't break the layout */
.blog-card:not(.featured) h3 {
    min-height: 3em; 
    margin-bottom: 10px;
}

/* --- HOVER STATE --- */
.blog-card:not(.featured):hover {
    transform: translateY(-10px);
    background: #141414;
    border: 1px solid #B86D0B; 
    box-shadow: 0 10px 30px rgba(197, 157, 95, 0.4);
}

.blog-image-grid {
    position: relative; 
}

.category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gold, #c59d5f); /* Matches your orange/gold theme */
    color: #000;
    padding: 5px 15px;
    font-size: 0.7rem;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 2px;
}
.blog-image-grid img {
    width: 100%;
    height: 250px; /* Adjust based on your preference */
    object-fit: cover; /* This keeps images sharp without stretching */
    display: block;
}

.blog-content p {
    color: #b0b0b0;           /* Lighter gray so it's not as bright as the title */
    font-size: 0.9rem;        /* Smaller font size */
    font-weight: 400;         
    line-height: 1.6;         
    margin-bottom: 25px;      
}
.read-more-simple {
    color: var(--gold);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
    border-bottom: 1px solid transparent;
    transition: 0.3s;
}

.read-more-simple:hover {
    border-bottom: 1px solid var(--gold);
}


/* 1. Hide the full content by default */
.read-more-target {
    display: none;
}

/* 2. When the checkbox is CHECKED: */

/* Hide the short summary */
.read-more-state:checked ~ .blog-description .read-more-summary {
    display: none;
}

/* Show the full content */
.read-more-state:checked ~ .blog-description .read-more-target {
    display: block;
}

/* 3. Handle the Button Text */
.read-more-trigger:before {
    content: 'READ STORY';
}

.read-more-state:checked ~ .read-more-trigger:before {
    content: 'SHOW LESS';
}


/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .blog-card.featured { grid-template-columns: 1fr; }
    .blog-hero { height: 50vh; }
    .hero-content h1 { font-size: 2.5rem; }
    .blog-container { margin-top: -60px; }
}


/* Contact style */

.contact-hero {
    padding: 120px 5% 60px; /* Increased padding for elegance */
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),url('assets/images/nn.jpg') center/cover no-repeat;
    margin-top: 10px;
}

.contact-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem); /* Responsive font size */
    letter-spacing: 8px;
    margin-bottom: 15px;
    font-weight: 300;
}

.gold-text { color: var(--gold); }

/* CONTACT WRAPPER */
.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    padding: 40px 5% 120px;;
}

/* INFO SECTION */
.info-card {
    display: flex;
    align-items: flex-start; /* Better for multi-line text */
    gap: 25px;
    margin-bottom: 40px;
}

.info-card i {
    color: var(--gold);
    font-size: 1.2rem;
    min-width: 55px;
    height: 55px;
    border: 1px solid var(--gold);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.info-card:hover i {
    background: var(--gold);
    color: white;
    transform: rotateY(180deg);
}

.info-card h4 {
    margin: 0 0 8px 0;
    font-size: 0.85rem;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.info-card p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.6;
}

.map-container {
    margin-top: 50px;
    border: 1px solid var(--border-color);
    filter: grayscale(1) invert(0.9); /* Makes the map match dark theme */
    transition: 0.5s;
}

.map-container:hover {
    filter: grayscale(0) invert(0);
}

/* FORM SECTION */
.contact-form-section {
    background: var(--card-bg);
    padding: 50px;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.form-group {
    margin-bottom: 25px;
}

.aloft-form input, 
.aloft-form select, 
.aloft-form textarea {
    width: 100%;
    padding: 18px;
    background: #000;
    border: 1px solid #333;
    color: white;
    font-family: 'Poppins', sans-serif;
    outline: none;
    transition: all 0.3s ease;
}

.aloft-form input:focus, 
.aloft-form select:focus, 
.aloft-form textarea:focus {
    border-color: var(--gold);
    background: #050505;
}

.submit-btn {
    width: 100%;
    background: var(--gold);
    color: white;
    border: none;
    padding: 18px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.4s;
}

.submit-btn:hover {
    background: white;
    color: black;
    letter-spacing: 5px; /* Slight expansion effect */
}


/* --- Success Modal Styles --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85); /* Dark blur effect */
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeIn 0.4s ease;
}

.modal-content {
    background: #151515;
    border: 1px solid #B86D0B;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: scale(0.8);
    animation: popUp 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.modal-icon {
    font-size: 4rem;
    color: #B86D0B;
    margin-bottom: 20px;
}

.modal-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 15px;
    color: #fff;
}

.modal-content p {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.modal-close-btn {
    background: #B86D0B;
    color: #000;
    border: none;
    padding: 12px 35px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.modal-close-btn:hover {
    background: #fff;
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes popUp {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .contact-form-section { padding: 30px; }
}

.event-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
    gap: 20px;
    margin-top: 30px;
}

.event-card {
    padding: 25px;
    background: rgba(255,255,255,0.05);
    border-radius: 18px;
    text-align: center;
    backdrop-filter: blur(8px);
}

.event-card i {
    font-size: 28px;
    color: #B86D0B;
    margin-bottom: 10px;
}


.luxury-footer {
    background-color: var(--deep-black);
    color: #ffffff;
    padding-top: 80px;
    font-family: 'Poppins', sans-serif;
    border-top: 1px solid #1a1a1a;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding: 0 20px 60px 20px;
}

/* Logo and Text */
.footer-logo {
    font-size: 1.8rem;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.gold-text { color: var(--gold); }

.brand-col p {
    color: var(--soft-grey);
    line-height: 1.8;
    font-size: 0.9rem;
    margin-bottom: 25px;
}

/* Titles */
.column-title {
    color: #ffffff;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    position: relative;
}

.column-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 30px;
    height: 2px;
    background: var(--gold);
}

/* Links Styling - Removing the Blue */
.footer-links, .contact-details {
    list-style: none;
    padding: 0;
}

.footer-links li { margin-bottom: 12px; }

.footer-links a {
    color: var(--soft-grey);
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 8px; /* Smooth slide effect */
}

/* Contact Details */
.contact-details li {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--soft-grey);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.contact-details i {
    color: var(--gold);
}

/* Social Icons */
.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid #333;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: translateY(-5px);
}

/* Newsletter */
.footer-form {
    display: flex;
    margin-top: 15px;
}

.footer-form input {
    flex: 1;
    background: #111;
    border: 1px solid #222;
    padding: 12px;
    color: white;
    outline: none;
}

.footer-form button {
    background: var(--gold);
    border: none;
    padding: 0 20px;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

.footer-form button:hover { background: #965909; }

/* Bottom Bar */
.footer-bottom {
    background: #000;
    padding: 25px 20px;
    border-top: 1px solid #111;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
}

.footer-bottom p, .legal-links a {
    font-size: 0.8rem;
    color: #555;
    text-decoration: none;
}

.legal-links a { margin-left: 20px; transition: 0.3s; }
.legal-links a:hover { color: var(--gold); }

/* Responsive */
@media (max-width: 992px) {
    .footer-container { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .footer-container { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
}


/* ROOT VARIABLES */
/* --- Global Theme Variables --- */
:root {
    --gold: #B86D0B;
    --dark-bg: #0a0a0a;
    --card-bg: #111111;
    --text-main: #ffffff;
    --text-dim: #aaaaaa;
    --wa-color: #25D366;
}

body.chalet-page {
    background-color: var(--dark-bg);
    color: var(--text-main);
    font-family: 'Poppins', sans-serif;
    margin: 0;
}

.main-wrapper {
    max-width: 1200px;
    margin: 120px auto 60px; /* Offset for fixed header */
    padding: 0 20px;
}

/* --- Gallery Styling --- */
.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 250px 250px;
    gap: 15px;
    margin-bottom: -100px; /* Overlap effect for the card */
}

.gallery-grid div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    filter: none;
    transition: 0.4s;
}

.item-large { grid-row: span 2; }

.gallery-grid div:hover img {
    filter: none;
    transform: scale(1.02);
}

.gallery-video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* This ensures the video fills the masonry box */
    display: block;
}

/* Optional: Style the video controls to match your gold theme (Webkit browsers) */
video::-webkit-media-controls-play-button,
video::-webkit-media-controls-panel {
    background-color: rgba(0, 0, 0, 0.7);
}


/* --- The Attractive Details Card --- */
.details-card {
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 50px;
    position: relative;
    z-index: 10;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    margin-top: 150px;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

.category-tag {
    color: var(--text-dim);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin: 10px 0;
}

.accent-line {
    width: 60px;
    height: 3px;
    background: var(--gold);
}

.price-badge {
    text-align: right;
}

.price-badge .amount {
    display: block;
    font-size: 2.5rem;
    color: var(--gold);
    font-weight: 700;
}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
  border-radius: 12px;
  overflow: hidden;
}

/* Hide images by default */
.mySlides {
  display: none;
}

.mySlides img {
  height: 500px; /* Adjust height as needed */
  object-fit: cover;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background-color: rgba(0,0,0,0.3);
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* The dots */
.dot {
  cursor: pointer;
  height: 12px;
  width: 12px;
  margin: 0 4px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
  border-radius: 12px;
  overflow: hidden;
}

/* Hide images by default */
.mySlides {
  display: none;
}

.mySlides img {
  height: 500px; /* Adjust height as needed */
  object-fit: cover;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background-color: rgba(0,0,0,0.3);
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* The dots */
.dot {
  cursor: pointer;
  height: 12px;
  width: 12px;
  margin: 0 4px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

/* Specific Fix for Chalet Details Amenities */
.amenity-list {
    list-style: none !important; /* Forces removal of default dots */
    padding: 0;
    margin: 40px 0;
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two-column layout */
    gap: 15px;
}

.amenity-list li {
    list-style-type: none !important; /* Double insurance against dots */
    display: flex;
    align-items: center; /* Vertical alignment with icon */
    gap: 12px;
    color: #fff; /* White text as per your image */
    font-size: 15px;
}

.amenity-list li i {
    color: #B86D0B; /* Matches your brand gold */
    font-size: 12px;
    min-width: 15px; /* Prevents icon from shrinking */
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}


@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}
/* --- Booking Hub Buttons --- */
.booking-hub h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    border-top: 1px solid #222;
    padding-top: 30px;
}

.button-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.btn {
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-wa { background: var(--wa-color); color: white; }
.btn-hot { background: var(--gold); color: black; }
.btn-recep { border: 1px solid var(--gold); color: var(--gold); }
.btn-booking { background: #003580; color: white; }
.btn-expedia { background: #00355f; color: white; }

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}



/* --- Mobile Responsive --- */
@media (max-width: 768px) {
    .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; margin-bottom: 20px; }
    h1 { font-size: 2rem; }
    .amenity-list { grid-template-columns: 1fr; }
    .details-card { padding: 30px; }
}

/* ================= MOBILE RESPONSIVE OVERRIDES ================= */

@media screen and (max-width: 768px) {
    /* --- Global Spacing --- */
    section, .hero, .luxury-experience, .rooms-section, .dining-experience, .news-section, footer {
        padding: 80px 5% 40px !important;
    }

    /* --- Navigation --- */
    header {
        padding: 15px 5%;
    }
    
    .nav-links {
        display: none; 
    }
    /* --- Hero Section --- */
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        min-height: auto;
        padding-top: 120px !important;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        margin: 0 auto 30px;
    }

    .image-grid {
        flex-direction: column;
        align-items: center;
    }

    .luxury-reception, .mini-card {
        width: 100%; /* Force full width on mobile */
        max-width: 400px;
        height: 300px;
    }

    /* --- Dining Mosaic --- */
    .dining-experience .container {
        flex-direction: column;
        gap: 40px;
    }

    .dining-mosaic {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .mosaic-item.tall, .mosaic-item.small {
        width: 100%;
        height: 300px;
    }

    /* --- Rooms Grid --- */
    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* --- About & Info Sections --- */
    .ella-info .container, 
    .location-section .container,
    .luxury-experience .container {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }

    .image-mosaic-about {
        flex-direction: column !important;
    }

    .img-wrapper {
        height: 250px;
    }

    /* --- Why Choose Us (Icons) --- */
    .icon-cards {
        grid-template-columns: 1fr !important;
    }

    /* --- Gallery & Video --- */
    .gallery-container {
        grid-template-columns: 1fr !important;
    }

    .gallery-item, .gallery-item.large {
        grid-column: span 1;
        height: 300px;
    }

    /* --- Blog Section --- */
    .blog-card.featured {
        grid-template-columns: 1fr;
    }

    .blog-content {
        padding: 30px 20px;
    }

    .blog-content h2 {
        font-size: 1.8rem;
    }

    .blog-container {
        margin-top: -50px;
    }

    /* --- Footer --- */
    .footer-grid, .footer-container {
        grid-template-columns: 1fr !important;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}

/* Smallest Devices (Phones) */
@media screen and (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .experience-grid {
        grid-template-columns: 1fr !important;
    }

    .news-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 940px) {
    .reservation-btn {
        display: block !important; 
        padding: 8px 15px;      
        font-size: 11px;           
        margin-left: 10px;
        order: 2;                  
    }

    .menu-btn {
        order: 3;                  
        margin-left: 15px;
    }

    .navbar {
        padding: 0 5%;             /* Give more room on the sides */
        justify-content: space-between;
    }
}

/* Navigation responsive mobile view */

/* 1. RESET & HEADER CONTAINER */
.navbar {
    display: flex;
    align-items: center;
    height: 90px;
    width: 100%;
    background: #000;
    padding: 0 8%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* 2. HIDE MOBILE TOGGLES ON DESKTOP (Crucial Fix) */
#click, .menu-btn {
    display: none !important; 
}

/* 3. ALIGNMENT: PUSH LINKS TO THE RIGHT */
.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    margin-left: auto; 
    margin-right: 40px; 
}

.nav-links li a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s;
}

/* 4. THE BUTTON */
.reservation-btn {
    background: #B86D0B;
    color: #000;
    padding: 12px 25px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

/* 5. MOBILE VIEW (Only triggers when screen is small) */
@media (max-width: 940px) {
    .menu-btn {
        display: block !important; /* Show icon only on mobile */
        color: #fff;
        font-size: 24px;
        cursor: pointer;
    }

    .nav-links {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: #000;
        display: block;
        text-align: center;
        transition: 0.4s ease;
        margin: 0; /* Reset desktop right-alignment */
    }

    #click:checked ~ .nav-links {
        left: 0;
    }

    .nav-links li {
        margin: 40px 0;
    }
}

/* =============privacy-policey============*/

/* --- Page Specific Luxury Styling --- */
        .legal-page {
            background: #000; /* Pure Black Background */
            color: #fff;
            padding: 150px 8% 100px; /* Top padding to clear fixed navbar, 8% sides for alignment */
            line-height: 1.8;
        }

        .legal-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .legal-header h1 {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            color: #B86D0B; /* Signature Gold */
            margin-bottom: 10px;
        }

        .legal-header .gold-line {
            width: 80px;
            height: 3px;
            background: #B86D0B;
            margin: 0 auto;
        }

        .policy-section {
            margin-bottom: 50px;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .policy-section h2 {
            font-family: 'Playfair Display', serif;
            color: #B86D0B;
            font-size: 1.8rem;
            margin-bottom: 25px;
            border-bottom: 1px solid rgba(184, 109, 11, 0.3);
            padding-bottom: 10px;
        }

        .policy-grid {
            display: grid;
            grid-template-columns: 1fr 1fr; /* Two column layout for desktop */
            gap: 40px;
        }

        .policy-item {
            margin-bottom: 20px;
        }

        .policy-item h3 {
            color: #B86D0B;
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

        .policy-item p {
            color: #ccc;
            font-size: 0.95rem;
        }

        

        @media (max-width: 768px) {
            .policy-grid { grid-template-columns: 1fr; }
            .legal-page { padding: 120px 5% 60px; }
        }

.pool-section {
    background-color: #000000; 
}

/* Pool Slider Styling */
.pool-slider {
    width: 100%;
    height: 450px; /* Adjust height to match your other images */
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.pool-slider .slides {
    display: flex;
    width: 500%; /* 100% per image (5 images = 500%) */
    height: 100%;
    animation: poolSlide 20s infinite ease-in-out;
}

.pool-slider .slides img {
    width: 20%; /* Each image takes 1/5th of the container */
    height: 100%;
    object-fit: cover;
}

/* Slide Animation: 5 images, 4 seconds each */
@keyframes poolSlide {
    0% { transform: translateX(0%); }
    15% { transform: translateX(0%); }     /* Image 1 */
    20% { transform: translateX(-20%); }
    35% { transform: translateX(-20%); }    /* Image 2 */
    40% { transform: translateX(-40%); }
    55% { transform: translateX(-40%); }    /* Image 3 */
    60% { transform: translateX(-60%); }
    75% { transform: translateX(-60%); }    /* Image 4 */
    80% { transform: translateX(-80%); }
    95% { transform: translateX(-80%); }    /* Image 5 */
    100% { transform: translateX(0%); }     /* Back to 1 */
}

/* Responsive Fix */
@media (max-width: 768px) {
    .pool-slider {
        height: 300px;
    }
    .luxury-experience.pool-section .container {
        flex-direction: column-reverse; /* Text first, then slider on mobile */
    }
}

/* Responsive adjustment for all luxury-experience sections */
@media (max-width: 992px) {
    .luxury-experience .container {
        display: flex;
        flex-direction: column; 
        gap: 30px;
    }
    
    .dining-mosaic, .content-box {
        width: 100%;
        max-width: 100%;
    }
    
    .event-types {
        grid-template-columns: 1fr 1fr; 
    }
}

@media (max-width: 600px) {
    .event-types {
        grid-template-columns: 1fr; 
    }
}