/* ===== VARIABLES & RESET ===== */
:root {
    /* Dark Mode (Default) */
    --deep-brown: #0a0600;
    --gold-bright: #ffcc70;
    --gold-sparkle: #ffffff;
    --gold-dim: #b8860b;
    --text-soft: #e0d0b8;
    --bg-secondary: rgba(0,0,0,0.5);
    --bg-modal: rgba(0,0,0,0.95);
    --border-light: rgba(184, 134, 11, 0.3);
    --card-bg: rgba(0,0,0,0.5);
    --input-bg: rgba(0,0,0,0.7);
    --footer-bg: linear-gradient(180deg, rgba(10,6,0,1) 0%, #000000 100%);
    --faq-bg: rgba(0,0,0,0.3);
    --hero-gradient: radial-gradient(circle at center, rgba(70, 45, 15, 0.4) 0%, transparent 75%);
    --btn-dark-bg: rgba(15, 8, 0, 0.8);
    --btn-dark-hover: rgba(40, 25, 5, 0.9);
    --font-serif: 'Cinzel', serif;
    --font-cursive: 'Great Vibes', cursive;
    --font-sans: 'Montserrat', sans-serif;
}

/* Light Mode Variables */
body.light-mode {
    --deep-brown: #faf3e0;
    --gold-bright: #c17f2e;
    --gold-sparkle: #d4a373;
    --gold-dim: #b87333;
    --text-soft: #3a2c1f;
    --bg-secondary: rgba(210, 180, 140, 0.2);
    --bg-modal: rgba(250, 243, 224, 0.98);
    --border-light: rgba(183, 115, 51, 0.4);
    --card-bg: rgba(245, 235, 210, 0.9);
    --input-bg: rgba(245, 235, 210, 0.9);
    --footer-bg: linear-gradient(180deg, #f5e6d3 0%, #e8d9c4 100%);
    --faq-bg: rgba(245, 235, 210, 0.5);
    --hero-gradient: radial-gradient(circle at center, rgba(183, 115, 51, 0.15) 0%, transparent 75%);
    --btn-dark-bg: rgba(183, 115, 51, 0.2);
    --btn-dark-hover: rgba(183, 115, 51, 0.35);
}

body, html {
    margin: 0;
    padding: 0;
    background-color: var(--deep-brown);
    font-family: var(--font-sans);
    color: var(--text-soft);
    overflow-x: hidden;
    scroll-behavior: smooth;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* ===== FLOATING THEME TOGGLE WIDGET ===== */
/* Place this after your variables/reset and before navigation styles */
.theme-toggle-widget {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10000;
    cursor: pointer;
}

.theme-toggle-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--btn-dark-bg);
    border: 2px solid var(--gold-dim);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.theme-toggle-btn:hover {
    border-color: var(--gold-bright);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 204, 112, 0.3);
}

.theme-toggle-btn .toggle-icon {
    font-size: 1.5rem;
    color: var(--gold-bright);
    transition: all 0.3s ease;
}

/* Mobile adjustment - moves to bottom right */
@media (max-width: 768px) {
    .theme-toggle-widget {
        right: 15px;
        top: auto;
        bottom: 20px;
        transform: none;
    }
    
    .theme-toggle-btn {
        width: 45px;
        height: 45px;
    }
    
    .theme-toggle-btn .toggle-icon {
        font-size: 1.3rem;
    }
}

body.light-mode .main-logo {
    content: url('assets/logo-dark.png');
}

body.light-mode .footer-logo-img {
    content: url('assets/logo-dark.png');
}
/* ===== REUSABLE COMPONENTS ===== */
/* Buttons */
.btn {
    padding: 15px 38px;
    border-radius: 8px;
    font-family: var(--font-serif);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}
.btn-dark {
    background: var(--btn-dark-bg);
    border: 1px solid var(--gold-dim);
    color: var(--gold-bright);
}
.btn-dark:hover {
    background: var(--btn-dark-hover);
    border-color: var(--gold-bright);
}
.btn-dark:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.btn-bright {
    background: linear-gradient(180deg, #ffcc70 0%, #8e6c38 100%);
    color: #000;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(212, 154, 61, 0.4);
}
body.light-mode .btn-bright {
    background: linear-gradient(180deg, #e6b56e 0%, #b86f2c 100%);
}
.btn-bright:hover {
    background: linear-gradient(180deg, #ffd700 0%, #a07a3a 100%);
    box-shadow: 0 5px 25px rgba(255, 204, 112, 0.6);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.header-main {
    font-family: var(--font-serif);
    font-size: 46px;
    font-weight: 400;
    line-height: 1.3;
    color: var(--gold-bright);
    text-shadow: 0 0 30px rgba(255, 204, 112, 0.5);
    margin: 0;
}
body.light-mode .header-main {
    text-shadow: 0 0 15px rgba(193, 127, 46, 0.3);
}
.header-sub {
    font-family: var(--font-cursive);
    font-size: 50px;
    font-weight: 400;
    color: var(--gold-bright);
    margin: 10px 0;
}


/* ===== GLOBAL EFFECTS ===== */
.glitter-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    background-image: 
        radial-gradient(1px 1px at 10% 20%, var(--gold-sparkle), transparent),
        radial-gradient(1px 1px at 25% 40%, var(--gold-bright), transparent),
        radial-gradient(1px 1px at 50% 10%, var(--gold-dim), transparent),
        radial-gradient(2px 2px at 15% 15%, var(--gold-bright), transparent),
        radial-gradient(2px 2px at 40% 70%, var(--gold-sparkle), transparent),
        radial-gradient(2px 2px at 85% 30%, var(--gold-bright), transparent),
        radial-gradient(3px 3px at 50% 50%, rgba(255, 204, 112, 0.6), transparent),
        radial-gradient(4px 4px at 20% 80%, rgba(184, 134, 11, 0.4), transparent),
        radial-gradient(1px 1px at 60% 60%, var(--gold-sparkle), transparent),
        radial-gradient(2px 2px at 90% 90%, var(--gold-bright), transparent);
    background-size: 150px 150px; 
    opacity: 0.7;
    filter: drop-shadow(0 0 3px rgba(255, 204, 112, 0.6));
    animation: glitterTwinkle 4s infinite ease-in-out;
}
body.light-mode .glitter-overlay {
    opacity: 0.3;
}
@keyframes glitterTwinkle {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}
/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 8%;
    margin: 0 auto;
    max-width: 1400px;
    box-sizing: border-box;
    transition: all 0.4s ease;
    width: 100%;
}

/* Fixed: Full width background on scroll */
.navbar.scrolled {
    background-color: var(--deep-brown);
    border-bottom: 1px solid var(--gold-dim);
}

.navbar.scrolled .nav-container {
    padding: 15px 8%;
}

.main-logo { 
    height: 110px; 
    width: auto; 
    transition: height 0.3s ease;
}

.navbar.scrolled .main-logo {
    height: 80px;
}

/* Desktop Navigation */
.nav-links { 
    display: flex; 
    align-items: center;
    gap: 15px; 
    font-size: 11px; 
    letter-spacing: 2.5px; 
}

.nav-links a, 
.dropdown .dropbtn { 
    text-decoration: none; 
    color: var(--text-soft); 
    transition: color 0.3s ease;
    white-space: nowrap;
    background: none;
    border: none;
    font-family: var(--font-sans);
    font-size: 11px;
    letter-spacing: 2.5px;
    cursor: pointer;
}

.nav-links a:hover,
.nav-links a.active,
.dropdown .dropbtn:hover { 
    color: var(--gold-bright); 
}

/* Dropdown Container */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown trigger wrapper */
.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Dropdown arrow button - hidden on desktop */
.dropdown-arrow {
    display: none;
    background: none;
    border: none;
    color: var(--gold-dim);
    font-size: 10px;
    cursor: pointer;
    padding: 0;
    transition: transform 0.3s ease;
}

.dropdown-arrow:hover {
    color: var(--gold-bright);
}

/* Dropdown Content */
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--deep-brown);
    min-width: 210px;
    border: 1px solid var(--gold-dim);
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    margin-top: 12px;
    padding: 8px 0;
}

/* Desktop hover - keep dropdown open when hovering over trigger or content */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Create a bridge between trigger and content to prevent gap issues */
.dropdown-content::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 12px;
}

/* Dropdown Links */
.dropdown-content a {
    color: var(--text-soft);
    padding: 10px 20px;
    text-decoration: none;
    display: block;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-align: center;
    white-space: nowrap;
}

.dropdown-content a:hover {
    background-color: rgba(184, 134, 11, 0.2);
    color: var(--gold-bright);
}

.dropdown-content a.coming-soon-link {
    color: var(--gold-dim);
    cursor: default;
}

.dropdown-content a.coming-soon-link:hover {
    background-color: transparent;
    color: var(--gold-dim);
}

/* Dot separator styling */
.nav-links .dot {
    color: var(--gold-dim);
    font-size: 11px;
    display: inline-block;
}

/* Hamburger Menu - Hidden on Desktop */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-btn span {
    width: 100%;
    height: 3px;
    background-color: var(--gold-bright);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hamburger Animation Classes */
.hamburger-btn.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger-btn.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Navigation Mobile Styles */
@media (max-width: 768px) {
    body.menu-open {
        overflow: hidden;
    }
    
    .nav-container {
        padding: 20px 5%;
        flex-wrap: wrap;
    }
    
    .hamburger-btn {
        display: flex;
    }
    
    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 20px 5%;
        background-color: var(--deep-brown);
        border-top: 1px solid var(--gold-dim);
        border-bottom: 1px solid var(--gold-dim);
        margin-top: 15px;
        max-height: calc(100vh - 100px);
        overflow-y: auto;
    }
    
    .nav-links.show {
        display: flex;
    }
    
    .nav-links a,
    .dropdown .dropbtn {
        font-size: 14px;
        padding: 5px 0;
        text-align: left;
    }
    
    /* Hide dots on mobile */
    .nav-links .dot {
        display: none;
    }
        .dropdown-arrow {
        display: inline-flex !important;
        background: none;
        border: none;
        color: var(--gold-dim);
        font-size: 12px;
        cursor: pointer;
        padding: 5px;
        transition: transform 0.3s ease;
    }
    
    .dropdown.active .dropdown-arrow {
        transform: rotate(180deg);
    }
    
    .dropdown-content {
        display: none !important;
    }
    
    .dropdown.active .dropdown-content {
        display: block !important;
    }
    /* Mobile Dropdown Styling */
    .dropdown {
        width: 100%;
        text-align: left;
    }
    
    .dropdown-trigger {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 12px;
    }
    
    .dropdown-content {
        position: static;
        transform: none;
        background-color: rgba(184, 134, 11, 0.1);
        border: none;
        border-left: 1px solid var(--gold-dim);
        border-radius: 0;
        box-shadow: none;
        padding: 0;
        margin-top: 10px;
        margin-left: 15px;
        min-width: auto;
        display: none;
        width: calc(100% - 15px);
    }
    
    
    .dropdown-content a {
        padding: 10px 15px;
        font-size: 12px;
        text-align: left;
        color: var(--text-soft);
    }
    
    .dropdown-content a:hover {
        background-color: rgba(184, 134, 11, 0.15);
    }
    
    .main-logo { 
        height: 80px !important; 
    }
    
    .navbar.scrolled .main-logo {
        height: 60px;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .nav-container {
        padding: 15px 4%;
    }
    
    .main-logo { 
        height: 50px; 
    }
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--hero-gradient);
    padding: 120px 5% 60px;
    box-sizing: border-box;
}
.unified-heading {
    font-family: var(--font-serif);
    font-size: 46px;
    font-weight: 400;
    line-height: 1.3;
    color: var(--gold-bright);
    text-shadow: 0 0 30px rgba(255, 204, 112, 0.5);
    margin: 0;
}
body.light-mode .unified-heading {
    text-shadow: 0 0 15px rgba(193, 127, 46, 0.3);
}
.divider { 
    height: 1px; 
    width: 320px; 
    background: linear-gradient(90deg, transparent, var(--gold-bright), transparent); 
    margin: 30px auto; 
    position: relative; 
}
.sparkle-center { 
    width: 7px; 
    height: 7px; 
    background: var(--gold-bright); 
    position: absolute; 
    top: -3.5px; 
    left: 50%; 
    transform: translateX(-50%) rotate(45deg); 
    box-shadow: 0 0 12px var(--gold-bright); 
}
.hero-description { 
    font-style: italic; 
    font-size: 19px; 
    line-height: 1.7; 
    margin-bottom: 35px; 
    font-weight: 300; 
}
.hero-creds { 
    color: var(--gold-bright); 
    font-size: 14px; 
    margin-bottom: 45px; 
}
.hero-actions { 
    display: flex; 
    gap: 25px; 
    justify-content: center; 
}

/* Hero Mobile Styles */
@media (max-width: 768px) {
    .hero {
        min-height: 90vh;
        padding: 150px 5% 50px;
    }
    .unified-heading { 
        font-size: 28px; 
    }
    .divider {
        width: 250px;
    }
    .hero-description { 
        font-size: 16px; 
    }
    .hero-description br {
        display: none;
    }
    .hero-actions { 
        flex-direction: column; 
        gap: 15px;
        align-items: center;
    }
    .hero-actions .btn {
        width: 80%;
        max-width: 300px;
    }
}

/* ===== ABOUT SECTION ===== */
.about-section { 
    padding: 100px 6%; 
    position: relative; 
    z-index: 2; 
}
.about-container { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 60px; 
    align-items: center; 
    max-width: 1200px;
    margin: 0 auto;
}
.author-portrait {
    text-align: center;
}
.author-portrait img { 
    width: 100%; 
    max-width: 320px;
    height: auto;
    border: 1px solid var(--gold-dim); 
    border-radius: 5px; 
    box-shadow: 0 0 30px rgba(255, 204, 112, 0.2); 
    display: block;
    margin: 0 auto;
}
.about-content {
    text-align: left;
}
.role-title { 
    font-size: 18px; 
    letter-spacing: 2px; 
    margin-bottom: 20px; 
    color: var(--gold-bright); 
    font-weight: 500; 
}
.bio-text { 
    line-height: 1.8; 
    margin-bottom: 30px; 
}
.info-block { 
    display: flex; 
    gap: 20px; 
    margin-top: 30px; 
}
.icon-placeholder { 
    font-size: 24px; 
    color: var(--gold-bright); 
}
.info-block h4 { 
    color: var(--gold-bright); 
    margin-bottom: 5px; 
    font-family: var(--font-serif); 
}
/* ===== GOLD ICONS ===== */
.icon-placeholder {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    min-width: 60px;
    margin-top: 15px;
}

.gold-icon-img {
    width: 48px;
    height: 48px;
    filter: brightness(0) saturate(100%) invert(84%) sepia(34%) saturate(750%) hue-rotate(320deg) brightness(104%) contrast(101%);
    transition: all 0.3s ease;
}
body.light-mode .gold-icon-img {
    filter: brightness(0) saturate(100%) invert(35%) sepia(80%) saturate(800%) hue-rotate(350deg) brightness(95%) contrast(95%);
}

.info-block:hover .gold-icon-img {
    filter: brightness(0) saturate(100%) invert(84%) sepia(60%) saturate(1000%) hue-rotate(320deg) brightness(110%) contrast(105%);
    transform: scale(1.05) translateY(-2px);
}

/* About Tablet Styles (for small laptops) */
@media (max-width: 1024px) {
    .about-container {
        gap: 40px;
    }
    .author-portrait img {
        max-width: 280px;
    }
    .about-content {
        max-width: 100%;
    }
}

/* About Mobile Styles */
@media (max-width: 768px) {
    .about-section {
        padding: 60px 5%;
    }
    .about-container { 
        grid-template-columns: 1fr; 
        gap: 40px; 
    }
    .author-portrait {
        max-width: 220px;
        margin: 0 auto;
    }
    .author-portrait img {
        margin: 0 auto;
        max-width: 100%;
    }
    .header-main {
        font-size: 26px;
    }
    .header-sub {
        font-size: 40px;
    }
    .gold-icon-img {
        width: 40px;
        height: 40px;
    }
}

/* ===== SHOP SECTION ===== */
.shop-section {
    padding: 100px 6%;
    position: relative;
    z-index: 2;
}
.shop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.book-card {
    text-align: center;
    border: 1px solid var(--gold-dim);
    padding: 20px 15px;
    background: var(--card-bg);
    border-radius: 5px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.book-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-bright);
}
.book-cover {
    width: 100%;
    max-width: 160px;
    height: auto;
    margin-bottom: 15px;
    border: 1px solid var(--gold-dim);
    border-radius: 4px;
}
.book-card h4 {
    color: var(--gold-bright);
    font-family: var(--font-serif);
    margin-bottom: 8px;
    font-size: 1.1rem;
    line-height: 1.4;
}
.book-card p {
    font-size: 0.85rem;
    margin-bottom: 15px;
    line-height: 1.5;
}
.book-card .btn {
    display: inline-block;
    text-decoration: none;
    padding: 8px 16px;
    font-size: 0.85rem;
}

/* Coming Soon Styles */
.coming-soon-card {
    opacity: 0.8;
}

.coming-soon-image {
    width: 100%;
    max-width: 160px;
    height: auto;
    margin: 0 auto 15px;
    border: 1px solid var(--gold-dim);
    border-radius: 4px;
    background: var(--btn-dark-bg);
    aspect-ratio: 2 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coming-soon-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.2), rgba(184, 134, 11, 0.05));
}

.coming-soon-placeholder span {
    font-family: var(--font-serif);
    font-size: 1rem;
    letter-spacing: 2px;
    color: var(--gold-bright);
    text-transform: uppercase;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 12px;
    border-radius: 3px;
    border: 1px solid var(--gold-dim);
}



.coming-soon-btn:hover {
    transform: none !important;
    background: var(--btn-dark-bg) !important;
    color: var(--gold-dim) !important;
}

/* Shop Mobile Styles */
@media (max-width: 768px) {
    .shop-section {
        padding: 60px 5%;
    }
    .shop-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }
    .book-card {
        max-width: 280px;
        margin: 0 auto;
        padding: 18px 12px;
    }
    .book-cover {
        max-width: 140px;
    }
    .coming-soon-image {
        max-width: 140px;
    }
    .coming-soon-placeholder span {
        font-size: 0.8rem;
        padding: 6px 10px;
    }
}
/* ===== MEDIA FEATURE SECTION (GLOBAL BOOK NETWORK) ===== */
.media-feature-section {
    padding: 100px 6%;
    position: relative;
    z-index: 2;
    background: var(--faq-bg);
}

.feature-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1300px;
    margin: 0 auto;
    align-items: center;
}

/* Video Card */
.feature-video-card {
    background: var(--card-bg);
    border: 1px solid var(--gold-dim);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--gold-bright);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Feature Details */
.feature-details {
    padding: 20px 0;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(184, 134, 11, 0.15);
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: var(--gold-bright);
    border: 1px solid var(--gold-dim);
    margin-bottom: 20px;
    font-weight: 500;
}

.badge-icon-img {
    width: 16px;
    height: 16px;
    filter: brightness(0) saturate(100%) invert(84%) sepia(34%) saturate(750%) hue-rotate(320deg) brightness(104%) contrast(101%);
}

.feature-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--gold-bright);
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.feature-description {
    color: var(--text-soft);
    line-height: 1.75;
    font-size: 1rem;
    margin-bottom: 30px;
}

.feature-description strong {
    color: var(--gold-bright);
    font-weight: 500;
}

/* Feature Action Row - Desktop: items grouped left, button smaller */
.feature-action {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.view-stat {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    background: rgba(184, 134, 11, 0.1);
    padding: 6px 14px;
    border-radius: 40px;
    border: 1px solid var(--gold-dim);
    width: auto;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--gold-bright);
}

.stat-label {
    font-size: 0.7rem;
    letter-spacing: 1px;
    color: var(--gold-dim);
    text-transform: uppercase;
}

/* Smaller button - matches stat height */
.feature-action .btn {
    margin: 0;
    padding: 6px 18px;
    font-size: 0.8rem;
    white-space: nowrap;
    width: auto;
    display: inline-flex;
}

/* Light Mode Adjustments */
body.light-mode .media-feature-section {
    background: rgba(210, 180, 140, 0.1);
}

body.light-mode .feature-video-card {
    background: rgba(245, 235, 210, 0.8);
}

body.light-mode .feature-badge {
    background: rgba(183, 115, 51, 0.1);
}

body.light-mode .badge-icon-img {
    filter: brightness(0) saturate(100%) invert(35%) sepia(80%) saturate(800%) hue-rotate(350deg) brightness(95%) contrast(95%);
}

body.light-mode .view-stat {
    background: rgba(183, 115, 51, 0.1);
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .media-feature-section {
        padding: 80px 5%;
    }
    
    .feature-container {
        gap: 40px;
    }
    
    .feature-title {
        font-size: 1.5rem;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .media-feature-section {
        padding: 60px 5%;
    }
    
    .feature-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .feature-details {
        text-align: left;
        padding: 0;
    }
    
    .feature-badge {
        margin: 0 0 20px 0;
    }
    
    .feature-title {
        font-size: 1.4rem;
    }
    
    .feature-description {
        font-size: 0.95rem;
    }
    
    /* Mobile: items stack, but each takes only needed width */
    .feature-action {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 12px;
        align-items: center;
    }
    
    .view-stat {
        padding: 5px 12px;
    }
    
    .stat-number {
        font-size: 1rem;
    }
    
    .stat-label {
        font-size: 0.65rem;
    }
    
    .feature-action .btn {
        padding: 5px 14px;
        font-size: 0.75rem;
        white-space: nowrap;
    }
}

/* Small mobile (under 480px) - if needed, they still wrap but not full width */
@media (max-width: 480px) {
    .feature-action {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .feature-action .btn {
        white-space: nowrap;
    }
}
/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section { 
    padding: 100px 6%; 
    text-align: center; 
}
.testimonial-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 50px; 
     max-width: 1200px;
     margin-left: auto;
    margin-right: auto;
    
}
.testimonial-card { 
    border: 1px solid var(--gold-dim); 
    padding: 40px 30px; 
    background: var(--card-bg);
    transition: transform 0.3s ease;
}
.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-bright);
}
.stars { 
    color: var(--gold-bright); 
    margin-bottom: 20px; 
    letter-spacing: 5px; 
}
.client-name { 
    margin-top: 25px; 
    font-size: 0.9rem; 
    line-height: 1.6; 
    color: var(--text-soft); 
}

/* Testimonials Mobile Styles */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 5%;
    }
    .testimonial-grid { 
        grid-template-columns: 1fr; 
        gap: 20px;
        margin: 40px 0;
    }
    .testimonial-card {
        padding: 30px 20px;
    }
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 100px 6%;
    position: relative;
    z-index: 2;
}
.contact-container {
    max-width: 600px;
    margin: 0 auto;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    background: var(--input-bg);
    border: 1px solid var(--gold-dim);
    border-radius: 5px;
    color: var(--text-soft);
    font-family: var(--font-sans);
    font-size: 1rem;
    box-sizing: border-box;
    transition: all 0.3s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold-bright);
    box-shadow: 0 0 10px rgba(255,204,112,0.3);
}
.contact-form .btn {
    width: fit-content;
    margin: 0 auto;
}

/* Contact Mobile Styles */
@media (max-width: 768px) {
    .contact-section {
        padding: 60px 5%;
    }
    .contact-form .btn {
        width: 100%;
    }
}


/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 100px 6%;
    position: relative;
    z-index: 2;
    background: var(--faq-bg);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--gold-dim);
    border-radius: 5px;
    background: var(--card-bg);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--gold-bright);
    box-shadow: 0 0 15px rgba(255,204,112,0.2);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-secondary);
}

.faq-question h4 {
    color: var(--gold-bright);
    font-family: var(--font-serif);
    font-size: 1.1rem;
    margin: 0;
    letter-spacing: 0.5px;
}

.faq-icon {
    color: var(--gold-bright);
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    padding: 0 25px;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    background: var(--bg-secondary);
    border-top: 0 solid var(--gold-dim);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 20px 25px;
    border-top-width: 1px;
}

.faq-answer p {
    margin: 0;
    line-height: 1.7;
    color: var(--text-soft);
    font-size: 0.95rem;
}

/* FAQ Mobile Styles */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 5%;
    }
    
    .faq-question {
        padding: 15px 18px;
    }
    
    .faq-question h4 {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 15px 18px;
    }
}


/* ===== FOOTER - REDESIGNED ===== */
.site-footer {
    background: var(--footer-bg);
    padding: 60px 6% 20px;
    border-top: 1px solid var(--gold-dim);
    position: relative;
    z-index: 2;
    transition: background 0.3s ease;
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-col {
    text-align: left;
}

.footer-col h4 {
    color: var(--gold-bright);
    font-family: var(--font-serif);
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold-bright), transparent);
}

.footer-logo-img {
    height: 80px;
    width: auto;
    margin-bottom: 15px;
}

.footer-tagline {
    color: var(--text-soft);
    font-size: 0.9rem;
    margin-bottom: 20px;
    font-style: italic;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border: 1px solid var(--gold-dim);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-bright);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--gold-dim);
    color: #000;
    border-color: var(--gold-bright);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-soft);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-links a::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--gold-dim);
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold-bright);
}

.footer-links a:hover::before {
    transform: translateX(3px);
    color: var(--gold-bright);
}

.footer-email {
    margin-bottom: 20px;
}

.footer-email a {
    color: var(--text-soft);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-email a:hover {
    color: var(--gold-bright);
}

.footer-newsletter {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-newsletter input {
    padding: 12px;
    background: var(--input-bg);
    border: 1px solid var(--gold-dim);
    border-radius: 5px;
    color: var(--text-soft);
    font-size: 0.95rem;
    width: 100%;
    box-sizing: border-box;
}

.footer-newsletter input:focus {
    outline: none;
    border-color: var(--gold-bright);
}

.footer-newsletter .btn {
    padding: 12px;
    width: 100%;
    font-size: 0.95rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-light);
}

.footer-bottom p {
    color: var(--gold-dim);
    font-size: 0.85rem;
    margin: 0;
}

/* Footer Tablet Styles */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

/* Footer Mobile Styles */
@media (max-width: 768px) {
    .site-footer {
        padding: 40px 5% 15px;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-col {
        text-align: center;
    }
    
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links a {
        padding-left: 0;
    }
    
    .footer-links a::before {
        display: none;
    }
    
    .footer-newsletter {
        max-width: 300px;
        margin: 0 auto;
    }
}

/* ===== CHECKOUT MODAL ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-modal);
    overflow-y: auto;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: var(--footer-bg);
    margin: 30px auto;
    padding: 25px 30px 30px;
    border: 1px solid var(--gold-dim);
    border-radius: 10px;
    width: 90%;
    max-width: 450px;
    position: relative;
    box-shadow: 0 0 40px rgba(255, 204, 112, 0.3);
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 12px;
    color: var(--gold-dim);
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.close-modal:hover {
    color: var(--gold-bright);
}

.modal-content h2 {
    color: var(--gold-bright);
    font-family: var(--font-serif);
    text-align: center;
    margin-bottom: 15px;
    margin-top: 5px;
    font-size: 22px;
}

.book-preview {
    text-align: center;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.book-preview img {
    max-width: 80px;
    width: auto;
    height: auto;
    border: 1px solid var(--gold-dim);
    border-radius: 5px;
    margin-bottom: 5px;
    box-shadow: 0 0 15px rgba(255, 204, 112, 0.2);
}

.price {
    color: var(--gold-bright);
    font-size: 18px;
    font-family: var(--font-serif);
    font-weight: 500;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    color: var(--gold-bright);
    margin-bottom: 5px;
    font-size: 0.85rem;
    font-family: var(--font-serif);
}

.form-group input {
    width: 100%;
    padding: 10px 12px;
    background: var(--input-bg);
    border: 1px solid var(--gold-dim);
    border-radius: 5px;
    color: var(--text-soft);
    font-size: 0.9rem;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--gold-bright);
    box-shadow: 0 0 8px rgba(255, 204, 112, 0.3);
}

.form-group small {
    display: block;
    color: var(--gold-dim);
    font-size: 0.7rem;
    margin-top: 4px;
}

/* Card details styling */
.card-details-wrapper {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--gold-dim);
    border-radius: 6px;
    padding: 12px;
}

.card-input {
    width: 100%;
    padding: 10px 12px;
    background: var(--input-bg);
    border: 1px solid var(--gold-dim);
    border-radius: 5px;
    color: var(--text-soft);
    font-size: 0.9rem;
    box-sizing: border-box;
}

.card-input:focus {
    outline: none;
    border-color: var(--gold-bright);
}

.card-row {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.card-row .card-input {
    width: 50%;
    margin-bottom: 0;
}

#submitPayment {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    margin-top: 5px;
}

#submitPayment:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.secure-note {
    text-align: center;
    color: var(--gold-dim);
    font-size: 0.7rem;
    margin-top: 15px;
    margin-bottom: 0;
}

/* Success Message */
#successMessage {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    background: var(--hero-gradient);
}

#successMessage h2 {
    color: var(--gold-bright);
    font-family: var(--font-serif);
    font-size: 36px;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(255, 204, 112, 0.5);
}

#successMessage p {
    font-size: 18px;
    margin-bottom: 30px;
    text-align: center;
}

/* Mobile Modal Styles */
@media (max-width: 768px) {
    .modal-content {
        margin: 15px auto;
        padding: 20px 18px 25px;
        max-width: 95%;
    }
    
    .modal-content h2 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .book-preview img {
        max-width: 65px;
    }
    
    .price {
        font-size: 16px;
    }
    
    .form-group {
        margin-bottom: 12px;
    }
    
    .form-group label {
        font-size: 0.8rem;
    }
    
    .form-group input {
        padding: 8px 10px;
        font-size: 0.85rem;
    }
    
    .card-details-wrapper {
        padding: 10px;
    }
    
    #submitPayment {
        padding: 10px;
        font-size: 0.95rem;
    }
    
    .secure-note {
        font-size: 0.65rem;
        margin-top: 12px;
    }
    
    #successMessage h2 {
        font-size: 28px;
    }
    
    #successMessage p {
        font-size: 16px;
    }
}

/* Force success message to show */
#successMessage.force-show {
    display: flex !important;
    position: relative;
    z-index: 9999;
}

/* ===== BOOK PAGE SPECIFIC STYLES ===== */

/* Book Hero Section */
.book-hero {
    padding: 200px 6% 80px;
    position: relative;
    z-index: 2;
    background: radial-gradient(circle at 30% 20%, rgba(255, 204, 112, 0.04) 0%, transparent 70%);
}

.book-container {
    display: flex;
    flex-wrap: wrap;
    gap: 70px;
    align-items: center;
    justify-content: center;
    max-width: 1300px;
    margin: 0 auto;
}

/* Book Cover */
.book-cover-large {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.book-cover-large img {
    width: 100%;
    max-width: 340px;
    border-radius: 16px;
    box-shadow: 0 30px 45px -20px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(184, 134, 11, 0.25);
    transition: all 0.35s ease;
}

.book-cover-large img:hover {
    transform: translateY(-6px);
    box-shadow: 0 35px 55px -20px rgba(0, 0, 0, 0.6), 0 0 0 1px var(--gold-bright);
}

/* Book Info */
.book-info-detail {
    flex: 1.4;
    min-width: 320px;
}

.book-badge {
    display: inline-block;
    background: rgba(184, 134, 11, 0.12);
    padding: 5px 16px;
    border-radius: 30px;
    font-size: 0.7rem;
    letter-spacing: 2.5px;
    border: 1px solid var(--gold-dim);
    color: var(--gold-bright);
    margin-bottom: 24px;
    font-weight: 500;
}

.book-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 500;
    color: var(--gold-bright);
    margin: 0 0 10px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.book-subtitle {
    font-family: var(--font-cursive);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--gold-dim);
    margin: 0 0 28px;
    padding-left: 20px;
    border-left: 3px solid var(--gold-bright);
}

.book-description {
    line-height: 1.75;
    margin: 20px 0 30px;
    color: var(--text-soft);
    font-size: 1rem;
}

.book-description p {
    margin-bottom: 0;
}

/* Purchase Options */
.purchase-options {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 28px 30px;
    border: 1px solid var(--gold-dim);
    margin: 30px 0 25px;
}

.options-title {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    letter-spacing: 1px;
    margin-bottom: 22px;
    color: var(--gold-bright);
    font-weight: 500;
}

.option-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 16px;
}

.buy-option {
    flex: 1;
    min-width: 140px;
    text-align: center;
    background: var(--btn-dark-bg);
    border: 1px solid var(--gold-dim);
    border-radius: 50px;
    padding: 14px 20px;
    transition: all 0.25s ease;
    cursor: pointer;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    color: var(--gold-bright);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    letter-spacing: 0.8px;
}

.buy-option.primary-ebook {
    background: linear-gradient(135deg, #c68e3a, #9b6a2c);
    color: #1a0f02;
    border: none;
    font-weight: 600;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
}

.buy-option.primary-ebook:hover {
    background: linear-gradient(135deg, #d4a04a, #ad7a30);
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

.buy-option:hover:not(.primary-ebook) {
    transform: translateY(-2px);
    border-color: var(--gold-bright);
    background: var(--gold-dim);
    color: #0a0600;
}

.delivery-note {
    font-size: 0.7rem;
    margin-top: 16px;
    color: var(--gold-dim);
    text-align: left;
    letter-spacing: 0.3px;
}

/* Book Meta Details */
.book-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid var(--border-light);
}

.meta-item {
    font-size: 0.8rem;
    color: var(--gold-dim);
    font-family: var(--font-sans);
    letter-spacing: 0.4px;
    font-weight: 300;
}

/* Modal Card Input Styling */
.card-input-demo {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--gold-dim);
    border-radius: 12px;
    padding: 16px;
}

.card-input {
    width: 100%;
    padding: 12px 14px;
    background: var(--input-bg);
    border: 1px solid var(--gold-dim);
    border-radius: 8px;
    color: var(--text-soft);
    font-size: 0.95rem;
    box-sizing: border-box;
    margin-bottom: 12px;
}

.card-input:focus {
    outline: none;
    border-color: var(--gold-bright);
}

.card-row {
    display: flex;
    gap: 12px;
}

.card-input.half {
    width: 50%;
    margin-bottom: 0;
}

/* Light Mode Adjustments */
body.light-mode .book-cover-large img {
    box-shadow: 0 25px 40px -18px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(184, 134, 11, 0.35);
}

body.light-mode .purchase-options {
    background: rgba(245, 235, 210, 0.7);
}

body.light-mode .card-input-demo {
    background: rgba(0, 0, 0, 0.04);
}

body.light-mode .buy-option.primary-ebook {
    background: linear-gradient(135deg, #e0aa5c, #c47d32);
    color: #1a0f02;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .book-hero {
        padding: 130px 5% 50px;
    }
    
    .book-title {
        font-size: 2rem;
    }
    
    .book-subtitle {
        font-size: 1.3rem;
    }
    
    .book-container {
        gap: 40px;
    }
    
    .book-cover-large img {
        max-width: 180px;
    }
    
    .option-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .buy-option {
        min-width: auto;
        padding: 12px 18px;
    }
    
    .options-title {
        font-size: 1rem;
    }
    
    .purchase-options {
        padding: 20px;
    }
    
    .book-meta {
        gap: 18px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .book-title {
        font-size: 1.6rem;
    }
    
    .book-subtitle {
        font-size: 1.1rem;
    }
    
    .book-badge {
        font-size: 0.6rem;
        letter-spacing: 1.5px;
    }
    
    .book-description {
        font-size: 0.9rem;
    }
}


/* ===== BLOG PAGE STYLES ===== */
.blog-hero {
    padding: 200px 6% 80px;
    background: radial-gradient(circle at 30% 20%, rgba(255, 204, 112, 0.04) 0%, transparent 70%);
    text-align: center;
}

.blog-hero-description {
    max-width: 700px;
    margin: 20px auto 0;
    color: var(--text-soft);
    font-size: 1.1rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 45px;
    max-width: 1300px;
    margin: 0 auto 80px;
    padding: 0 6%;
}

.blog-card {
    background: var(--card-bg);
    border: 1px solid var(--gold-dim);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(2px);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold-bright);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.blog-card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 1px solid var(--gold-dim);
}

.blog-card-content {
    padding: 28px 24px 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-dim);
    margin-bottom: 12px;
    font-family: var(--font-sans);
}

.blog-card-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--gold-bright);
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.blog-excerpt {
    color: var(--text-soft);
    line-height: 1.65;
    font-size: 0.95rem;
    margin-bottom: 24px;
    flex: 1;
}

.btn-read {
    align-self: flex-start;
    background: transparent;
    border: 1px solid var(--gold-dim);
    color: var(--gold-bright);
    padding: 8px 24px;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.25s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.btn-read:hover {
    background: var(--gold-dim);
    color: var(--deep-brown);
    border-color: var(--gold-bright);
}



/* ===== BLOG POST DETAIL PAGES ===== */
.blog-post-container {
    max-width: 850px;
    margin: 160px auto 80px;
    padding: 0 6%;
}

.blog-post-header {
    text-align: center;
    margin-bottom: 40px;
}

.blog-post-meta {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold-dim);
    margin-bottom: 20px;
    font-family: var(--font-sans);
}

.blog-post-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 500;
    color: var(--gold-bright);
    margin: 0 0 25px;
    line-height: 1.2;
}

.blog-post-divider {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
    margin: 0 auto;
}

.blog-post-feature-image {
    margin: 30px 0 45px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--gold-dim);
}

.blog-post-feature-image img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-post-content {
    line-height: 1.85;
    color: var(--text-soft);
    font-size: 1.05rem;
}

.blog-post-content p {
    margin-bottom: 25px;
}

.blog-post-signature {
    margin-top: 45px;
    padding-top: 25px;
    border-top: 1px solid var(--border-light);
    text-align: right;
    font-family: var(--font-cursive);
    font-size: 1.2rem;
    color: var(--gold-dim);
}

.blog-post-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid var(--border-light);
    gap: 15px;
    flex-wrap: wrap;
}

.blog-post-navigation .btn {
    padding: 10px 24px;
}

/* Mobile Responsive for Blog */
@media (max-width: 768px) {
    .blog-hero {
        padding: 140px 5% 50px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 5%;
    }
    
    .blog-card-title {
        font-size: 1.3rem;
    }
    
    .blog-card-image {
        height: 200px;
    }
    
    .blog-post-container {
        margin: 130px auto 60px;
    }
    
    .blog-post-title {
        font-size: 2rem;
    }
    
    .blog-post-content {
        font-size: 0.95rem;
    }
    
    .blog-post-navigation {
        flex-direction: column;
        align-items: stretch;
    }
    
    .blog-post-navigation .btn {
        text-align: center;
    }
}

/* Light Mode adjustments for blog */
body.light-mode .blog-card {
    background: rgba(245, 235, 210, 0.8);
}

body.light-mode .btn-read {
    border-color: var(--gold-dim);
    color: var(--gold-dim);
}

body.light-mode .btn-read:hover {
    background: var(--gold-dim);
    color: #fff;
}