/* --- CSS RESET & BASE --- */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: #5a0002;
    background-image: radial-gradient(circle at 50% 40%, #a60f16 0%, #3a0002 100%);
    background-attachment: fixed;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

/* PERFORMANCE FIX: Separate Noise Layer */
body::before {
    content: "";
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.12'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: -1;
}

/* CUSTOM GOLD SCROLLBAR */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #3a0002; }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, #f7d268, #d89f3c); border-radius: 5px; }

/* =========================================
   ULTRA-PREMIUM 24K GOLD BOKEH
   ========================================= */
.dust-container { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; overflow: hidden; z-index: 0; pointer-events: none; }

.dust {
    position: absolute; border-radius: 50%; opacity: 0; 
    background: #eed34a; 
    box-shadow: 0 0 8px #fab31b, 0 0 20px #ffd700, 0 0 40px #ffaa00; 
    animation: driftAndSway linear infinite, premiumSparkle ease-in-out infinite alternate;
    will-change: transform, opacity, filter;
    transform: translateZ(0); 
}

@keyframes driftAndSway {
    0% { transform: translate3d(0, 110vh, 0) scale(0.5); opacity: 0; }
    15% { opacity: 1; }
    85% { opacity: 1; }
    100% { transform: translate3d(25px, -10vh, 0) scale(1.5); opacity: 0; }
}

@keyframes premiumSparkle {
    0% { filter: blur(1px) brightness(0.9); opacity: 0.7; box-shadow: 0 0 5px #ffffff, 0 0 15px #ffd700, 0 0 25px #d4af37; }
    100% { filter: blur(0px) brightness(3); box-shadow: 0 0 15px #ffffff, 0 0 50px #ffd700, 0 0 80px #ffaa00, 0 0 120px #d4af37; opacity: 1; }
}

.d1 { left: 5%; width: 5px; height: 5px; animation-duration: 16s, 1.5s; animation-delay: 0s, 0s; }
.d2 { left: 15%; width: 8px; height: 8px; animation-duration: 22s, 2s; animation-delay: -5s, -1s; filter: blur(1px); }
.d3 { left: 25%; width: 4px; height: 4px; animation-duration: 14s, 1.2s; animation-delay: -2s, 0.5s; }
.d4 { left: 35%; width: 6px; height: 6px; animation-duration: 25s, 2.5s; animation-delay: -12s, -0.5s; }
.d5 { left: 45%; width: 5px; height: 5px; animation-duration: 19s, 1.8s; animation-delay: -7s, 0s; }
.d6 { left: 55%; width: 3px; height: 3px; animation-duration: 15s, 1.3s; animation-delay: -10s, 0.2s; }
.d7 { left: 65%; width: 7px; height: 7px; animation-duration: 26s, 2.2s; animation-delay: -4s, -1s; }
.d8 { left: 75%; width: 4px; height: 4px; animation-duration: 18s, 1.6s; animation-delay: -15s, 0.4s; }
.d9 { left: 85%; width: 6px; height: 6px; animation-duration: 21s, 2.8s; animation-delay: -8s, -0.8s; }
.d10 { left: 95%; width: 3px; height: 3px; animation-duration: 17s, 1.1s; animation-delay: -1s, 0.1s; }
.d11 { left: 20%; width: 5px; height: 5px; animation-duration: 20s, 1.9s; animation-delay: -9s, 0.3s; }
.d12 { left: 80%; width: 7px; height: 7px; animation-duration: 24s, 2.4s; animation-delay: -11s, -0.4s; }

/* =========================================
   PREMIUM NAVIGATION BAR
   ========================================= */
.top-header-wrapper { position: relative; width: 100%; max-width: 1400px; margin: 0 auto; padding-top: 35px; z-index: 10; }
.main-nav-bar { 
    display: flex; justify-content: space-between; align-items: center; 
    padding: 0 60px; position: relative; height: 70px; 
    background: rgba(90, 0, 2, 0.15); backdrop-filter: blur(5px);
}

.nav-divider-line { position: absolute; bottom: 0; left: 0; width: 100%; height: 1.5px; background: linear-gradient(90deg, transparent, rgba(247, 210, 104, 0.6), transparent); }
.nav-upper-line { position: absolute; top: 0; left: 0; width: 100%; height: 1.5px; background: linear-gradient(90deg, transparent, rgba(247, 210, 104, 0.6), transparent); }

.brand-logo-link { position: absolute; left: 60px; top: -19px; z-index: 20; width: 115px; height: 115px; display: block; transition: transform 0.3s; }
.brand-logo-img { width: 115px; height: 115px; object-fit: cover; border-radius: 50%; border: 4px solid #f01010; filter: drop-shadow(0 8px 15px rgba(247, 23, 23, 0.598)); }
.brand-logo-link:active { transform: scale(0.92); }

.nav-links-container { margin-left: 145px; display: flex; gap: 40px; z-index: 2; align-items: center; }
.nav-links-container a { 
    color: #f7d268; text-decoration: none; font-size: 17px; font-weight: 800; 
    letter-spacing: 0.5px; text-transform: uppercase; position: relative; transition: all 0.3s; 
}
.nav-links-container a:hover { color: #fff; text-shadow: 0 0 10px rgba(255,255,255,0.5); }
.nav-links-container a::after { 
    content: ''; position: absolute; bottom: -5px; left: 50%; width: 0; height: 2px; 
    background: #fff; transition: all 0.3s ease; transform: translateX(-50%);
}
.nav-links-container a:hover::after, .nav-links-container a.active::after { width: 100%; }

/* --- MAIN LAYOUT STRUCTURE --- */
.main-layout { display: flex; flex-direction: column; gap: 80px; padding: 40px 20px 80px 20px; max-width: 1400px; margin: 40px auto 0 auto; position: relative; z-index: 2; }

/* --- HERO TEXT BLOCK --- */
.hero-text-block h1 { font-size: 45px; line-height: 1.1; font-weight: 900; margin-bottom: 15px; text-shadow: 2px 2px 10px rgba(0,0,0,0.5); }
.hero-text-block h1 span { background: linear-gradient(to right, #fce08b, #f7d268, #d89f3c); -webkit-background-clip: text; -webkit-text-fill-color: transparent; display: block; filter: drop-shadow(0px 4px 6px rgba(0,0,0,0.4)); }
.hero-text-block p { font-size: 18px; font-weight: 500; margin-bottom: 35px; opacity: 0.95; }

.btn-group { display: flex; flex-direction: row; gap: 20px; align-items: center; }
.btn-red { background: linear-gradient(180deg, #e62c35 0%, #a80e15 100%); color: white; border: 2px solid #c2171f; padding: 14px 40px; border-radius: 35px; font-size: 16px; font-weight: 900; cursor: pointer; transition: all 0.3s; box-shadow: 0 8px 25px rgba(168, 14, 21, 0.4); }
.btn-red:hover { transform: translateY(-3px); }
.btn-red:active { transform: scale(0.95); }

.btn-outline { background: rgba(0,0,0,0.2); color: white; border: 2px solid white; padding: 14px 40px; border-radius: 35px; font-size: 16px; font-weight: 700; cursor: pointer; transition: all 0.3s; }
.btn-outline:hover { background: white; color: #5a0002; transform: translateY(-3px); }
.btn-outline:active { transform: scale(0.95); }

/* --- HERO IMAGES --- */
.hero-images-block { position: relative; width: 100%; height: 420px; max-width: 520px; margin: 0 auto; filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5)); }
.polaroid { position: absolute; background: white; padding: 8px; border-radius: 12px; box-shadow: 0 10px 25px rgba(0,0,0,0.3); }
.polaroid img { width: 100%; height: 100%; object-fit: cover; border-radius: 6px; }
@keyframes float { 0% { transform: translateY(0); } 100% { transform: translateY(-15px); } }
.frame2 { width: 240px; height: 320px; right: -80px; top: 80px; z-index: 1; transform: rotate(6deg); animation: float 4s ease-in-out infinite alternate; will-change: transform; }
.frame1 { width: 280px; height: 380px; left: -40px; top: 0; z-index: 2; transform: rotate(-4deg); animation: float 4s ease-in-out infinite alternate-reverse; will-change: transform; }

/* --- PRODUCT CARDS --- */
.cards-block { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.card { background: linear-gradient(180deg, #8a0b12 0%, #3a0002 100%); border: 1.5px solid rgba(247, 210, 104, 0.4); border-radius: 12px; padding: 12px; text-align: center; transition: all 0.4s; }
.card:hover { transform: translateY(-12px); border-color: #f7d268; box-shadow: 0 20px 40px rgba(0,0,0,0.7); }
.card-img-wrapper { width: 100%; height: 110px; overflow: hidden; border-radius: 8px; margin-bottom: 10px; }
.card-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s ease; }
.card:hover .card-img-wrapper img { transform: scale(1.1); }
.card h3 { font-size: 14px; font-weight: 800; margin-bottom: 5px; }
.card p { font-size: 10px; color: rgba(255,255,255,0.7); }

/* --- EDITORIAL SECTIONS --- */
.editorial-section { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 20px; }
.editorial-card { background: rgba(0, 0, 0, 0.25); border-left: 4px solid #f7d268; padding: 40px; border-radius: 0 20px 20px 0; }
.editorial-card h3 { color: #f7d268; font-size: 24px; font-weight: 800; }
.editorial-card p { font-size: 16px; line-height: 1.8; opacity: 0.8; }

.visual-feed { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; margin-top: 40px; }
.feed-item { aspect-ratio: 1/1; border-radius: 12px; overflow: hidden; border: 2px solid rgba(247, 210, 104, 0.2); }
.feed-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.8s; }
.feed-item:hover img { transform: scale(1.1); }

/* =========================================
   ULTRA-PREMIUM EXCLUSIVE MENU SECTION 
   ========================================= */
.exclusive-menu-section {
    background: linear-gradient(145deg, rgba(30, 0, 0, 0.4) 0%, rgba(90, 0, 2, 0.2) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(247, 210, 104, 0.2);
    border-radius: 20px;
    padding: 70px 50px;
    margin-top: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5), inset 0 0 20px rgba(247, 210, 104, 0.05);
}
.menu-header { text-align: center; margin-bottom: 60px; }
.menu-header .section-title {
    color: #f7d268; font-size: 38px; font-weight: 900;
    margin-bottom: 10px; text-transform: uppercase; letter-spacing: 2px;
    text-shadow: 0 5px 15px rgba(247, 210, 104, 0.3);
}
.menu-header p { font-size: 16px; color: rgba(255, 255, 255, 0.8); font-weight: 500; letter-spacing: 1px; }
.menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; }
.category-title {
    text-align: center; color: #fce08b; font-size: 22px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 3px; margin-bottom: 40px; position: relative;
}
.category-title::before, .category-title::after {
    content: '✦'; position: absolute; top: 50%; transform: translateY(-50%);
    font-size: 14px; color: rgba(247, 210, 104, 0.5);
}
.category-title::before { left: 15%; } .category-title::after { right: 15%; }
.menu-list { list-style: none; }
.menu-list li {
    position: relative; padding-bottom: 20px; margin-bottom: 25px;
    border-bottom: 1px dashed rgba(247, 210, 104, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: default;
}
.menu-list li:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.menu-list li:hover { transform: translateY(-4px) scale(1.02); border-bottom-color: rgba(247, 210, 104, 0.6); }
.menu-list h4 { font-size: 20px; font-weight: 800; margin-bottom: 8px; color: #ffffff; letter-spacing: 0.5px; transition: color 0.3s ease; }
.menu-list li:hover h4 { color: #f7d268; text-shadow: 0 0 12px rgba(247, 210, 104, 0.4); }
.menu-list p { font-size: 15px; color: rgba(255, 255, 255, 0.65); line-height: 1.6; font-style: italic; font-weight: 400; }

/* --- OUR STORY SECTION --- */
.story-section {
    background: rgba(0, 0, 0, 0.25); 
    border: 1px solid rgba(247, 210, 104, 0.2); 
    border-radius: 15px; padding: 50px 40px; margin-top: 20px; text-align: center;
}
.story-section .section-title { color: #f7d268; font-size: 28px; font-weight: 900; margin-bottom: 30px; }
.story-section p { font-size: 16px; line-height: 1.9; opacity: 0.9; max-width: 900px; margin: 0 auto 15px auto; }
.story-section p:last-child { margin-bottom: 0; }
.story-store-image {
    width: 100%; height: 400px; object-fit: cover; border-radius: 12px; margin-top: 40px;
    border: 2px solid rgba(247, 210, 104, 0.2); box-shadow: 0 15px 35px rgba(0,0,0,0.5); transition: transform 0.4s ease;
}
.story-store-image:hover { transform: scale(1.01); }

/* --- CONTACT SECTION --- */
.contact-section { 
    background: rgba(0, 0, 0, 0.25); border: 1px solid rgba(247, 210, 104, 0.2); 
    border-radius: 15px; padding: 40px; margin-top: 20px;
}
.contact-section .container { display: grid; grid-template-columns: 1fr; gap: 40px; }
.contact-section .section-title { color: #f7d268; font-size: 28px; font-weight: 900; margin-bottom: 25px; }
.info-item { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 20px; }
.info-item i { color: #f7d268; font-size: 20px; margin-top: 2px; width: 25px; text-align: center; }
.info-item p { font-size: 15px; line-height: 1.6; opacity: 0.9; }
.social-links { display: flex; gap: 15px; margin-top: 30px; }
.social-links a { 
    width: 45px; height: 45px; border-radius: 50%; background: rgba(0,0,0,0.4); 
    display: flex; align-items: center; justify-content: center; color: #f7d268; font-size: 18px; 
    transition: all 0.3s ease; text-decoration: none; border: 1px solid transparent;
}
.social-links a:hover { 
    background: linear-gradient(180deg, #fce08b 0%, #d89f3c 100%); color: #3a0002; 
    transform: translateY(-5px); box-shadow: 0 5px 15px rgba(247, 210, 104, 0.4); border-color: #fff;
}
.contact-map { border-radius: 12px; overflow: hidden; height: 300px; border: 2px solid rgba(247, 210, 104, 0.2); }
.contact-map iframe { width: 100%; height: 100%; border: none; }

/* --- FOOTER --- */
.footer-text-block { text-align: center; padding-top: 40px; }
.footer-text-block h2 { font-size: 28px; font-weight: 900; }
.footer-text-block h2 span { color: #f7d268; }
.site-footer { border-top: 1px solid rgba(247, 210, 104, 0.2); padding: 40px 20px; margin-top: 40px; text-align: center; }
.footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 25px; margin-bottom: 20px; }
.footer-links a { color: rgba(255, 255, 255, 0.8); text-decoration: none; font-size: 14px; font-weight: 500; transition: all 0.3s ease; }
.footer-links a:hover { color: #f7d268; text-shadow: 0 0 8px rgba(247, 210, 104, 0.4); }
.footer-copyright { font-size: 12px; color: rgba(255, 255, 255, 0.5); }

/* SCROLL REVEAL */
.fade-up { opacity: 0; transform: translate3d(0, 40px, 0); transition: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1); will-change: opacity, transform; }
.fade-up.visible { opacity: 1; transform: translate3d(0, 0, 0); }

/* --- DESKTOP GRID --- */
@media (min-width: 1024px) {
    .main-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px 50px; padding: 0 60px 80px 60px; }
    .hero-text-block { grid-column: 1; grid-row: 1; align-self: center; }
    .hero-text-block h1 { font-size: 75px; }
    .hero-images-block { grid-column: 2; grid-row: 1; height: 500px; }
    .frame2 { width: 310px; height: 420px; right: -40px; top: 100px; }
    .frame1 { width: 350px; height: 490px; left: -20px; top: 0; }
    .cards-block { grid-column: 2; grid-row: 2; gap: 20px; }
    .card-img-wrapper { height: 160px; }
    .card h3 { font-size: 16px; }
    .editorial-section { grid-column: 1 / span 2; grid-row: 3; }
    .visual-feed { grid-column: 1 / span 2; grid-row: 4; }
    .exclusive-menu-section { grid-column: 1 / span 2; grid-row: 5; margin-top: 40px; } 
    .story-section { grid-column: 1 / span 2; grid-row: 6; }
    .story-store-image { height: 600px; margin-top: 50px; } 
    .contact-section { grid-column: 1 / span 2; grid-row: 7; }
    .contact-section .container { grid-template-columns: 1fr 1.5fr; align-items: center; }
    .contact-map { height: 100%; min-height: 350px; }
    .footer-text-block { grid-column: 1 / span 2; grid-row: 8; }
    .site-footer { grid-column: 1 / span 2; grid-row: 9; }
}

/* --- MOBILE ADJUSTMENTS --- */
/* --- ENHANCED PREMIUM MOBILE ADJUSTMENTS --- */
@media (max-width: 768px) {
    /* 1. Stop all annoying horizontal scrolling */
    html, body { overflow-x: hidden; max-width: 100vw; }

    /* 2. Make Navigation tap-friendly and centered */
    .main-nav-bar { padding: 0 15px; height: 75px; flex-direction: row; } 
    .brand-logo-link { width: 90px; height: 90px; left: 15px; top: -10px; z-index: 100; }
    .brand-logo-img { width: 90px; height: 90px; border-width: 3px; }
    .nav-links-container { margin-left: 100px; gap: 15px; flex-wrap: wrap; }
    .nav-links-container a { font-size: 12px; font-weight: 800; padding: 5px 0; }

    /* 3. Hero Section - Better typography scaling & button sizing */
    .hero-text-block { text-align: center; margin-top: 10px; }
    .hero-text-block h1 { font-size: 40px; margin-bottom: 12px; }
    .hero-text-block p { font-size: 16px; margin-bottom: 25px; }
    .btn-group { justify-content: center; flex-wrap: wrap; gap: 15px; }
    .btn-red, .btn-outline { padding: 14px 28px; font-size: 15px; width: 100%; max-width: 260px; }

    /* 4. Flawless overlapping Polaroid images that actually fit the screen */
    .hero-images-block { height: 340px; width: 100%; max-width: 340px; margin: 40px auto 20px auto; overflow: visible; position: relative; }
    .frame1 { width: 180px; height: 250px; left: 8%; top: 0; z-index: 2; transform: rotate(-3deg); }
    .frame2 { width: 160px; height: 220px; right: 8%; top: 80px; z-index: 1; transform: rotate(6deg); }

    /* 5. Make Product Cards pop like a high-end food app */
    .cards-block { grid-template-columns: 1fr 1fr; gap: 15px; padding: 0 5px; }
    .card { padding: 15px; border-radius: 16px; }
    .card-img-wrapper { height: 160px; border-radius: 10px; }
    .card h3 { font-size: 15px; margin-top: 5px; }

    /* 6. Editorial & Visual Feed */
    .editorial-section { grid-template-columns: 1fr; gap: 20px; }
    .editorial-card { padding: 30px 20px; border-radius: 16px; border-left: none; border-top: 4px solid #f7d268; text-align: center; }
    .visual-feed { grid-template-columns: 1fr 1fr; gap: 12px; }
    .feed-item { border-radius: 16px; }

    /* 7. Menu Section */
    .exclusive-menu-section { padding: 40px 20px; border-radius: 20px; }
    .menu-header .section-title { font-size: 32px; }
    .menu-grid { grid-template-columns: 1fr; gap: 40px; }
    .category-title { font-size: 20px; }
    .category-title::before { left: -5%; } .category-title::after { right: -5%; }
    .menu-list h4 { font-size: 18px; }

    /* 8. Story & Contact */
    .story-section { padding: 40px 20px; border-radius: 20px; }
    .story-store-image { height: 220px; margin-top: 25px; border-radius: 16px; } 
    .contact-section { padding: 40px 20px; border-radius: 20px; }
    .contact-info { text-align: center; }
    .info-item { justify-content: left; }
    .contact-map { height: 250px; border-radius: 16px; }
    .social-links { justify-content: center; }

    /* 9. Footer */
    .footer-links { gap: 15px; } 
    .footer-links a { font-size: 13px; }

    /* 10. Perfect Mascot Sizing for Mobile */
    .video-mascot-container { width: 140px; bottom: 10px; right: 10px; }
}
/* =========================================
   MASCOT INTEGRATION (FLUSH TO RIGHT-BOTTOM)
   ========================================= */
.video-mascot-container {
    position: fixed;
    bottom: 0; /* FLUSH TO BOTTOM */
    right: 0;  /* FLUSH TO RIGHT */
    z-index: 9999;
    pointer-events: auto; 
    cursor: pointer;
    width: 240px; 
    display: flex;
    justify-content: center;
    align-items: center;
    animation: floatVideoMascot 6s ease-in-out infinite;
}
.video-mascot {
    width: 100%; height: auto; pointer-events: none; 
    user-select: none; -webkit-user-select: none;
    mix-blend-mode: screen; 
    filter: contrast(1.15) brightness(1.1) saturate(1.1);
    -webkit-mask-image: radial-gradient(ellipse at center, black 65%, transparent 85%);
    mask-image: radial-gradient(ellipse at center, black 65%, transparent 85%);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.4s ease;
    will-change: transform;
}
.video-mascot-container:hover .video-mascot {
    transform: scale(1.1) rotate(-3deg) translateY(-10px);
    filter: contrast(1.25) brightness(1.2) saturate(1.2);
}
.video-mascot-container::before, .video-mascot-container::after {
    content: '✨'; position: absolute; font-size: 26px; color: #f7d268; opacity: 0;
    pointer-events: none; animation: mascotMagicFloat 4s infinite ease-in; z-index: -1;
}
.video-mascot-container::before { content: '❤️'; font-size: 20px; right: 35px; animation-delay: 0.5s; animation-duration: 3.5s; }
.video-mascot-container::after { left: 15px; animation-delay: 2s; }
@keyframes floatVideoMascot { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-10px); } }
@keyframes mascotMagicFloat {
    0% { transform: translateY(10px) scale(0.5); opacity: 0; }
    20% { opacity: 0.8; filter: brightness(1.5); }
    80% { transform: translateY(-80px) translateX(-10px) scale(1.2); opacity: 0.5; }
    100% { transform: translateY(-100px) translateX(-20px) scale(1.5); opacity: 0; }
}
@media (max-width: 768px) { .video-mascot-container { width: 160px; } }

/* =========================================
   PROFESSIONAL BLOG PAGE (MODERN UI)
   ========================================= */

/* Adjusting layout specifically for the blog page */
.blog-layout {
    display: block; 
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-hero {
    text-align: center;
    margin-bottom: 80px;
    padding: 60px 0;
}

.blog-hero h1 {
    font-size: 64px;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.blog-hero h1 span {
    background: linear-gradient(135deg, #fce08b 0%, #d89f3c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0px 10px 30px rgba(216, 159, 60, 0.2);
}

.blog-hero p {
    font-size: 20px;
    color: #a0aab2;
    max-width: 600px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

/* Category Pill Navigation - Glassmorphism style */
.blog-category-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.cat-pill {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #e2e8f0;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cat-pill:hover {
    background: rgba(247, 210, 104, 0.1);
    border-color: #f7d268;
    color: #f7d268;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Blog Sections */
.blog-category-section {
    margin-bottom: 100px;
}

.section-header {
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.header-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #f7d268, transparent);
    border-radius: 4px;
}

/* Professional Blog Cards */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.pro-blog-card {
    background: linear-gradient(145deg, rgba(25, 25, 30, 0.8), rgba(15, 15, 20, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.pro-blog-card:hover {
    transform: translateY(-10px);
    border-color: rgba(247, 210, 104, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 40px rgba(247, 210, 104, 0.05);
}

.card-image {
    width: 100%;
    height: 260px;
    overflow: hidden;
    position: relative;
}

/* Adds a gradient fade at the bottom of the image to blend into the card */
.card-image::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(15, 15, 20, 0.9), transparent);
    z-index: 1;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.pro-blog-card:hover .card-image img {
    transform: scale(1.08);
}

.card-content {
    padding: 35px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.meta-tag {
    align-self: flex-start;
    background: rgba(247, 210, 104, 0.1);
    color: #f7d268;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 14px;
    border-radius: 6px;
    margin-bottom: 20px;
    border: 1px solid rgba(247, 210, 104, 0.2);
}

.card-content h3 {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 15px;
    color: #ffffff;
    transition: color 0.3s ease;
}

.pro-blog-card:hover .card-content h3 {
    color: #fce08b;
}

.card-content p {
    font-size: 16px;
    color: #a0aab2;
    line-height: 1.7;
    margin-bottom: 30px;
    flex-grow: 1;
}

.read-link {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.read-link i {
    color: #f7d268;
    transition: transform 0.3s ease;
}

.read-link:hover {
    color: #f7d268;
}

.read-link:hover i {
    transform: translateX(5px);
}

/* Mobile Adjustments for Blog */
@media (max-width: 768px) {
    .blog-layout { padding: 40px 20px; }
    .blog-hero h1 { font-size: 44px; }
    .blog-hero p { font-size: 16px; }
    .blog-grid { grid-template-columns: 1fr; gap: 30px; }
    .card-image { height: 220px; }
    .section-header h2 { font-size: 28px; }
    .card-content { padding: 25px; }
}

/* =========================================
   PERFORMANCE & ANIMATION OVERRIDES
   ========================================= */

/* Native smooth scrolling for the whole page */
html {
    scroll-behavior: smooth;
}

/* Force hardware acceleration on the dust particles */
.dust {
    will-change: transform, opacity;
}

/* Optimized Fade Up Animation */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform; /* Tells the GPU to handle this */
}

/* This class is added by the script.js file when scrolling */
.fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   FORCE HIDE CUSTOM SCROLLBAR
   ========================================= */

/* Targets the entire page and forces the scrollbar width to 0 */
::-webkit-scrollbar {
    width: 0px !important;
    display: none !important;
    background: transparent !important;
}

/* Also hide the thumb (the golden part) just to be safe */
::-webkit-scrollbar-thumb {
    display: none !important;
    background: transparent !important;
}

/* For Firefox and Edge */
html, body {
    -ms-overflow-style: none !important;  
    scrollbar-width: none !important;  
}

/* =========================================
   TEXT PAGES (ABOUT, PRIVACY, TERMS)
   ========================================= */

.text-page-layout {
    display: flex !important; /* Overrides the homepage layout */
    justify-content: center !important; /* Forces center alignment */
    align-items: center;
    width: 100%;
    padding: 120px 20px 80px;
    box-sizing: border-box;
}
.text-content-container {
    max-width: 850px;
    width: 100%;
    margin: 0 auto !important; /* The magic wand for perfect centering */
    
    /* Your existing glassmorphism styles */
    background: linear-gradient(145deg, rgba(25, 25, 30, 0.8), rgba(15, 15, 20, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 60px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    color: #a0aab2;
    line-height: 1.8;
}
.text-content-container h1 {
    font-size: 48px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: -1px;
}

.text-content-container h1 span {
    background: linear-gradient(135deg, #fce08b 0%, #d89f3c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-content-container h2 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin: 40px 0 15px 0;
}

.text-content-container p {
    margin-bottom: 20px;
    font-size: 16px;
}

/* Specific styling for the About Us story */
.about-content p {
    font-size: 18px;
    text-align: center;
    margin-bottom: 30px;
}

.about-promise {
    font-size: 28px !important;
    font-weight: 900;
    color: #fce08b !important;
    text-align: center;
    margin-top: 50px !important;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .text-content-container { padding: 40px 25px; }
    .text-content-container h1 { font-size: 36px; }
    .about-content p { font-size: 16px; }
}