/* ==========================================
   CSS Reset & General (Inherited)
   ========================================== */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #faf9f6; /* Soft off-white for blog background */
    color: #333;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Prevent body scroll when mobile menu is open */
body.no-scroll {
    overflow: hidden;
}

a { text-decoration: none; color: inherit; }

/* --- Animations (Inherited) --- */
@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}
@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* ==========================================
   Top Bar & Navigation (Inherited)
   ========================================== */
.top-bar {
    background-color: #0a0a0a; color: #eeeeee; font-size: 10px;
    letter-spacing: 1.5px; padding: 10px 30px; display: flex;
    justify-content: space-between; align-items: center; text-transform: uppercase;
    position: relative; z-index: 20;
}
.top-bar-left { display: flex; align-items: center; gap: 25px; flex-wrap: wrap; }
.top-bar-left i { margin-right: 6px; color: #d4af37; }

.navbar-wrapper {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04); transition: all 0.3s ease;
}
.navbar {
    padding: 15px 40px; display: flex; justify-content: space-between;
    align-items: center; max-width: 1600px; margin: 0 auto;
}
.nav-group { display: flex; align-items: center; flex: 1; }
.nav-group.left { justify-content: flex-start; }
.nav-group.right { justify-content: flex-end; gap: 30px; }
.nav-links { list-style: none; display: flex; gap: 25px; font-size: 11px; letter-spacing: 2px; font-weight: 500; }
.nav-links li a { position: relative; padding-bottom: 5px; transition: color 0.3s ease; }
.nav-links li a:hover { color: #d4af37; }
.nav-links li a::after {
    content: ''; position: absolute; width: 0; height: 1px; bottom: 0; left: 0;
    background-color: #d4af37; transition: width 0.3s ease;
}
.nav-links li a:hover::after, .nav-links li a.active::after { width: 100%; }

.brand-logo { 
    text-align: center; display: flex; flex-direction: column; 
    align-items: center; justify-content: center; padding: 0 10px; 
    flex: 0 0 auto; animation: fadeInUp 0.8s ease-out; 
    position: relative; z-index: 101; /* Stay above mobile menu */
}
.brand-logo h1 { font-weight: 400; font-size: 19px; letter-spacing: 3px; text-transform: uppercase; color: #111; }
.brand-logo span { font-size: 9px; letter-spacing: 8px; margin-top: 6px; color: #777; }

.btn-reserve {
    border: 1px solid #111; background: transparent; color: #111;
    padding: 12px 28px; font-size: 11px; letter-spacing: 1.5px;
    text-transform: uppercase; cursor: pointer; position: relative;
    overflow: hidden; transition: color 0.4s ease; font-weight: 600; white-space: nowrap;
}
.btn-reserve::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 100%;
    height: 100%; background: #111; transition: left 0.4s ease; z-index: -1;
}
.btn-reserve:hover::before { left: 0; }
.btn-reserve:hover { color: #fff; border-color: #111; }

/* --- Mobile Navigation & Hamburger --- */
.hamburger {
    display: none;
    cursor: pointer;
    z-index: 101; /* Stay above mobile menu */
    padding: 10px;
}

.hamburger .bar {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px auto;
    background-color: #111;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger.active .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active .bar:nth-child(2) { opacity: 0; }
.hamburger.active .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed; top: 0; right: -100%; width: 100%; height: 100vh;
    background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(15px);
    z-index: 100; display: flex; flex-direction: column;
    justify-content: center; align-items: center;
    transition: right 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-menu.active { right: 0; }

.mobile-nav-links { list-style: none; text-align: center; margin-bottom: 40px; width: 100%; }
.mobile-nav-links li { margin: 25px 0; opacity: 0; transform: translateY(30px); transition: all 0.5s ease; }
.mobile-nav-links a { font-size: 16px; letter-spacing: 4px; font-weight: 500; color: #111; text-transform: uppercase; position: relative; padding-bottom: 5px; }
.mobile-nav-links a.active { color: #d4af37; }

/* Staggered Animation for Mobile Links */
.mobile-menu.active .mobile-nav-links li { opacity: 1; transform: translateY(0); }
.mobile-menu.active .mobile-nav-links li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-nav-links li:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active .mobile-nav-links li:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-nav-links li:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.active .mobile-nav-links li:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu.active .mobile-nav-links li:nth-child(6) { transition-delay: 0.35s; }
.mobile-menu.active .mobile-nav-links li:nth-child(7) { transition-delay: 0.4s; }

.mobile-menu .btn-reserve {
    opacity: 0; transform: translateY(20px); transition: all 0.5s ease 0.5s;
    font-size: 13px; padding: 15px 40px;
}
.mobile-menu.active .btn-reserve { opacity: 1; transform: translateY(0); }

/* ==========================================
   Blog Specific Styles (New Modern UI)
   ========================================== */

/* Reading Progress Bar */
.progress-container {
    position: absolute; bottom: -1px; left: 0; width: 100%;
    height: 2px; background: transparent; z-index: 101;
}
.progress-bar { height: 2px; background: #d4af37; width: 0%; }

/* Blog Hero Parallax */
.blog-hero {
    position: relative;
    height: 55vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('https://images.unsplash.com/photo-1559339352-11d035aa65de?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat fixed;
}
.blog-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.3));
}
.blog-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}
.blog-hero-subtitle {
    font-family: 'Great Vibes', cursive;
    font-size: 45px;
    color: #d4af37;
    margin-bottom: 10px;
    opacity: 0;
    animation: fadeInUp 1s forwards 0.2s;
}
.blog-hero-title {
    font-size: 42px;
    font-weight: 500;
    letter-spacing: 8px;
    text-transform: uppercase;
    text-shadow: 2px 4px 15px rgba(0,0,0,0.5);
    opacity: 0;
    animation: fadeInUp 1s forwards 0.4s;
}

/* Blog Filters */
.blog-filters-section {
    padding: 60px 20px 20px;
    text-align: center;
    background-color: #faf9f6;
}
.filter-btn {
    background: transparent;
    border: none;
    color: #777;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 15px 15px;
    padding-bottom: 5px;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
}
.filter-btn::after {
    content: '';
    position: absolute;
    width: 0; height: 1px;
    bottom: 0; left: 0;
    background-color: #111;
    transition: width 0.3s ease;
}
.filter-btn:hover, .filter-btn.active { color: #111; }
.filter-btn:hover::after, .filter-btn.active::after { width: 100%; }

/* Blog Grid Layout */
.blog-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 40px 100px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 40px;
}

.blog-card {
    background: #fff;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.blog-img-wrapper {
    width: 100%;
    height: 260px;
    overflow: hidden;
    position: relative;
}
.blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}
.blog-card:hover .blog-img-wrapper img {
    transform: scale(1.08);
}
.blog-category-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #050505;
    color: #fff;
    padding: 6px 12px;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 2;
}

.blog-content { padding: 35px; flex-grow: 1; display: flex; flex-direction: column; }
.blog-meta {
    display: flex; gap: 15px; font-size: 10px;
    color: #888; font-weight: 500; letter-spacing: 1.5px;
    text-transform: uppercase; margin-bottom: 15px;
}
.blog-meta i { color: #d4af37; margin-right: 5px; }

.blog-title {
    font-size: 22px; font-weight: 500;
    color: #111; line-height: 1.4; margin-bottom: 15px;
    transition: color 0.3s ease;
}
.blog-card:hover .blog-title { color: #d4af37; }

.blog-excerpt { font-size: 13px; color: #555; line-height: 1.8; margin-bottom: 25px; flex-grow: 1; }

.btn-read-more {
    align-self: flex-start;
    font-size: 11px; font-weight: 600; color: #111;
    letter-spacing: 2px; text-transform: uppercase;
    border-bottom: 1px solid #111; padding-bottom: 3px;
    transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 8px;
}
.btn-read-more i { transition: transform 0.3s ease; font-size: 10px; }
.btn-read-more:hover { color: #d4af37; border-color: #d4af37; }
.btn-read-more:hover i { transform: translateX(5px); }

/* Load More Button */
.load-more-wrapper { text-align: center; margin-top: 20px; margin-bottom: 80px; width: 100%; }
.btn-load {
    background-color: transparent; border: 1px solid #111; color: #111;
    padding: 16px 45px; font-size: 11px; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase; cursor: pointer; transition: all 0.3s ease;
}
.btn-load:hover { background-color: #111; color: #fff; }

/* ==========================================
   Footer & Widgets (Inherited)
   ========================================== */
.site-footer { background-color: #050505; color: #aaaaaa; padding: 80px 40px 30px; font-size: 11px; line-height: 1.8; border-top: 1px solid #1a1a1a; overflow: hidden; }
.footer-container { max-width: 1400px; margin: 0 auto; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 40px; }
.footer-col { flex: 1; min-width: 220px; }
.footer-col.brand { flex: 1.5; }
.footer-col h4 { color: #ffffff; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 25px; font-weight: 600; }
.footer-logo { font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: 300; letter-spacing: 4px; color: #ffffff; margin-bottom: 20px; display: inline-block; text-transform: uppercase; }
.footer-logo span { display: block; font-size: 8px; letter-spacing: 6px; margin-top: 5px; color: #777; text-align: center; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { transition: color 0.3s ease; text-transform: uppercase; font-size: 10px; letter-spacing: 1px; }
.footer-links a:hover { color: #d4af37; }
.footer-socials { display: flex; gap: 15px; margin-bottom: 30px; font-size: 16px; color: #ffffff; }
.footer-socials a:hover { color: #d4af37; }
.newsletter-form { display: flex; margin-top: 15px; border-bottom: 1px solid #444; padding-bottom: 5px; }
.newsletter-input { flex: 1; padding: 8px 0; background: transparent; border: none; color: #ffffff; font-size: 11px; outline: none; font-family: 'Montserrat', sans-serif; }
.newsletter-input::placeholder { color: #777; }
.newsletter-btn { background: transparent; color: #ffffff; border: none; font-size: 12px; cursor: pointer; padding: 0 10px; transition: color 0.3s ease; }
.newsletter-btn:hover { color: #d4af37; }
.footer-bottom { border-top: 1px solid #1a1a1a; max-width: 1400px; margin: 60px auto 0; padding-top: 25px; text-align: center; font-size: 9px; letter-spacing: 1.5px; color: #555; text-transform: uppercase; }

/* ==========================================================================
   FORCE FOOTER VISIBILITY FIX
   Ensures the footer elements always show up on pages where the 
   intersection observer fails to trigger.
   ========================================================================== */
.site-footer .reveal {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.whatsapp-widget {
    position: fixed; bottom: 30px; right: 30px; background-color: #25D366; color: white;
    width: 55px; height: 55px; border-radius: 50%; display: flex; justify-content: center; align-items: center;
    font-size: 30px; box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); cursor: pointer; z-index: 90;
    transition: transform 0.3s ease; animation: pulseGlow 2s infinite;
}
.whatsapp-widget:hover { transform: translateY(-5px) scale(1.05); }

.language-selector {
    position: fixed; bottom: 30px; left: 30px; background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px); padding: 10px 18px; display: flex; align-items: center; gap: 10px;
    font-size: 11px; font-weight: 600; border-radius: 30px; cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15); z-index: 90; transition: all 0.3s ease; color: #333;
}
.language-selector:hover { background: #ffffff; transform: translateY(-3px); }
.language-selector img { width: 18px; border-radius: 2px; }

/* ==========================================
   Responsive Adjustments
   ========================================== */
@media (max-width: 1200px) {
    .nav-group { display: none; } /* Hide desktop links */
    .navbar { 
        justify-content: center; 
        padding: 15px 25px; 
        position: relative; /* Setup context for hamburger */
    }
    .hamburger { 
        display: block; 
        position: absolute; 
        right: 25px; 
        top: 50%; 
        transform: translateY(-50%); 
    }
}
@media (max-width: 900px) {
    .blog-container { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); padding: 40px 20px 80px; }
    .blog-hero { background-attachment: scroll; } /* Better performance on smaller screens */
}
@media (max-width: 768px) {
    .top-bar { flex-direction: column; gap: 8px; text-align: center; padding: 10px 15px; }
    .top-bar-left { justify-content: center; gap: 10px; }
    
    .navbar { padding: 12px 20px; }
    .hamburger { right: 20px; }
    .brand-logo h1 { font-size: 16px; letter-spacing: 2px; }
    .brand-logo span { font-size: 8px; letter-spacing: 5px; }
    
    .mobile-nav-links a { font-size: 14px; letter-spacing: 3px; }
    
    .blog-hero { height: 40vh; min-height: 300px; }
    .blog-hero-title { font-size: 28px; letter-spacing: 4px; }
    .blog-hero-subtitle { font-size: 35px; }
    
    .site-footer { padding: 60px 20px 30px; text-align: center; }
    .footer-col { min-width: 100%; align-items: center; display: flex; flex-direction: column; }
    .newsletter-form { width: 100%; max-width: 300px; margin: 15px auto 0; }
    
    .whatsapp-widget { width: 48px; height: 48px; font-size: 26px; bottom: 20px; right: 20px; }
    .language-selector { padding: 8px 14px; font-size: 10px; bottom: 25px; left: 20px; }
}
@media (max-width: 480px) {
    .blog-container { grid-template-columns: 1fr; }
    .blog-img-wrapper { height: 220px; }
}