/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
 .hero-description{
                            color: White !important;
                            font-weight: 300 !important;
                        }
:root {
    /* New Color Palette - Light Blue, Green, White & Pink */
    /* Light Blue Shades */
    --primary-blue: #87CEEB;
    --primary-blue-light: #B0E0E6;
    --primary-blue-lighter: #E0F6FF;
    --primary-blue-dark: #6BA8D6;
    
    /* Green Shades */
    --primary-green: #90EE90;
    --primary-green-light: #98D8C8;
    --primary-green-lighter: #E6FFE6;
    --primary-green-dark: #7EC8A3;
    
    /* Pink Shades */
    --primary-pink: #FFB6C1;
    --primary-pink-light: #FFC0CB;
    --primary-pink-lighter: #FFE4E9;
    --primary-pink-dark: #FF91A4;
    
    /* White Shades */
    --pure-white: #FFFFFF;
    --off-white: #F5F5F5;
    --soft-white: #FFFEFE;
    
    /* Accent Colors - Blended for natural look */
    --accent-blue: #87CEEB;
    --accent-green: #90EE90;
    --accent-pink: #FFB6C1;
    --accent-sky: #B0E0E6;
    --accent-mint: #98D8C8;
    
    /* Neutral Grays */
    --light-gray: #E0E0E0;
    --medium-gray: #9B9B9B;
    --dark-gray: #4A4A4A;
    --shadow-soft: rgba(0, 0, 0, 0.1);

    /* Typography */
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Inter', sans-serif;

    /* Spacing */
    --header-height: 80px;
    --section-padding: 100px 0;

    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-medium: 0.6s ease;
    --transition-slow: 1s ease;

    /* Shadows - Updated with new colors */
    --shadow-light: 0 5px 15px rgba(135, 206, 235, 0.2);
    --shadow-medium: 0 10px 30px rgba(144, 238, 144, 0.25);
    --shadow-heavy: 0 20px 60px rgba(255, 182, 193, 0.2);
    --accent-glow: 0 0 30px rgba(144, 238, 144, 0.4);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-secondary);
    background: linear-gradient(135deg, var(--primary-blue-lighter) 0%, var(--primary-green-lighter) 40%, var(--primary-pink-lighter) 80%, var(--pure-white) 100%);
    color: var(--dark-gray);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Make all p tag text black */
p {
    color: #000000 !important;
}

/* Container Classes - Fixed Implementation */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    width: 100%;
    padding: 0 20px;
}

.container {
    width: 100%;
    padding: 30px 30px !important;

}

.navbar {
    margin-top: 20px !important;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, var(--primary-blue-lighter) 0%, var(--primary-green-lighter) 50%, var(--primary-pink-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
}

.loading-logo h1 {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--accent-green);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards;
}

.loading-bar {
    width: clamp(200px, 50vw, 300px);
    height: 4px;
    background: var(--primary-pink-dark);
    border-radius: 2px;
    margin: 2rem auto;
    overflow: hidden;
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-green), var(--accent-blue));
    width: 0%;
    animation: loadingProgress 3s ease forwards;
}

.loading-text {
    color: var(--medium-gray);
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    opacity: 0;
    animation: fadeInUp 1s ease 1s forwards;
}

/* Custom Cursor */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    display: none;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--accent-blue);
    border-radius: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

/* Header - Fixed Navbar Styling */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(144, 238, 144, 0.3);
    z-index: 1000;
    transition: all var(--transition-fast);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-medium);
}

.navbar {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    flex-direction: column;
    z-index: 1002;
}

.brand-text {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-green);
    line-height: 1;
    margin-bottom: 2px;
}

.brand-subtitle {
    font-size: 0.75rem;
    color: var(--accent-pink);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    position: relative;
    color: var(--medium-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all var(--transition-fast);
    padding: 0.5rem 0;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-green);
    transition: width var(--transition-fast);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-green);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 1002;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--pure-white);
    transition: all var(--transition-fast);
}

.nav-close {
    display: none;
    font-size: 2rem;
    color: var(--pure-white);
    cursor: pointer;
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 1002;
}

/* Hero Section - Improved Responsive Layout */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: url('./Untitled design.png') center center/cover no-repeat;
    background-attachment: fixed;
    overflow: hidden;
    padding-top: var(--header-height);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero:hover {
    transform: scale(1.01);
}

/* Hero Background Overlay for better text readability */
.hero-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.15) 50%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(0px);
}

.hero:hover .hero-background-overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.4) 100%);
    backdrop-filter: blur(1px);
}

/* Add subtle animation on scroll */
@media (prefers-reduced-motion: no-preference) {
    .hero {
        animation: heroFadeIn 1.5s ease-out;
    }
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: scale(1.05);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Storm elements removed - replaced with background image */

/* Hero Content - Better Responsive Grid */
.hero-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    width: 100%;
    min-height: 70vh;
    animation: fadeInUp 1s ease-out;
}

.hero-text {
    width: 100%;
}

.hero-subtitle {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    opacity: 0;
}

.subtitle-line {
    width: clamp(30px, 8vw, 50px);
    height: 1px;
    background: var(--accent-green);
}

.subtitle-text {
    color: var(--accent-blue);
    font-size: clamp(0.8rem, 2vw, 1rem);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 1.5rem;
}

.title-word {
    display: block;
    position: relative;
    color: var(--dark-gray);
    text-shadow: 2px 2px 8px rgba(255, 255, 255, 0.5);
    opacity: 0;
    transform: translateY(100px);
}

/* Glitch Effect */
.glitch-effect {
    position: relative;
}

.glitch-effect::before,
.glitch-effect::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch-effect::before {
    animation: glitch-1 2s infinite;
    color: var(--accent-blue);
    z-index: -1;
}

.glitch-effect::after {
    animation: glitch-2 2s infinite;
    color: var(--accent-green);
    z-index: -2;
}

.hero-tagline {
    margin-bottom: 2rem;
    opacity: 0;
}

.tagline-text {
    font-family: var(--font-primary);
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: var(--accent-pink);
    font-style: italic;
}

/* Typewriter Effect */
.typewriter-text {
    border-right: 2px solid var(--accent-green);
    animation: typewriter 3s steps(22) 1s forwards, blink 1s infinite;
    white-space: nowrap;
    overflow: hidden;
    width: 0;
}

.hero-description {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    color: var(--medium-gray);
    line-height: 1.8;
    margin-bottom: 3rem;
    opacity: 0;
}

.hero-stats {
    display: flex;
    gap: clamp(1rem, 4vw, 2rem);
    margin-bottom: 3rem;
    opacity: 0;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 100px;
}

.stat-number {
    display: block;
    font-family: var(--font-primary);
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    font-weight: 700;
    color: var(--accent-green);
    line-height: 1;
    text-shadow: 0 0 10px rgba(144, 238, 144, 0.5);
}

.stat-label {
    font-size: clamp(0.7rem, 1.5vw, 0.85rem);
    color: var(--medium-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    opacity: 0;
    flex-wrap: wrap;
}

/* Hero Visual - Better Responsive Layout */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
}

.book-container {
    position: relative;
    opacity: 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Survivor Silhouette */
.survivor-silhouette {
    position: absolute;
    top: clamp(-60px, -8vw, -80px);
    left: clamp(-30px, -4vw, -40px);
    z-index: 1;
    opacity: 0.6;
}

.silhouette-figure {
    width: clamp(45px, 6vw, 60px);
    height: clamp(120px, 16vw, 160px);
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.8) 0%,
            rgba(0, 0, 0, 0.6) 70%,
            transparent 100%);
    clip-path: polygon(40% 0%, 60% 0%, 65% 15%, 70% 25%,
            75% 35%, 80% 50%, 75% 65%, 70% 80%,
            60% 90%, 55% 100%, 45% 100%, 40% 90%,
            30% 80%, 25% 65%, 20% 50%, 25% 35%,
            30% 25%, 35% 15%);
    animation: silhouette-sway 4s ease-in-out infinite;
}

.silhouette-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
        background: radial-gradient(circle,
            rgba(144, 238, 144, 0.3) 0%,
            transparent 70%);
    animation: glow-pulse 3s ease-in-out infinite;
}

/* 3D Book Scene - Improved Responsive */
.book-3d-scene {
    position: relative;
    perspective: 1000px;
}

.book-3d {
    position: relative;
    width: clamp(200px, 25vw, 320px);
    height: clamp(260px, 32vw, 420px);
    transform-style: preserve-3d;
    transition: transform var(--transition-medium);
    cursor: pointer;
}

.book-3d:hover {
    transform: rotateY(-15deg) rotateX(5deg) scale(1.05);
}

.book-cover {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--primary-pink-light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(144, 238, 144, 0.3), 0 0 30px rgba(144, 238, 144, 0.2);
}

.book-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.book-lightning-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg,
            transparent 0%,
            rgba(144, 238, 144, 0.2) 50%,
            transparent 100%);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.book-3d:hover .book-lightning-overlay {
    opacity: 1;
}

.book-spine {
    position: absolute;
    right: -20px;
    top: 0;
    width: 20px;
    height: 100%;
    background: linear-gradient(to right, var(--primary-pink-dark), var(--primary-pink-light));
    transform: rotateY(90deg);
    transform-origin: left;
}

.book-back {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--primary-pink-dark);
    transform: translateZ(-20px);
    border-radius: 8px;
}

.book-storm-aura {
    position: absolute;
    top: clamp(-30px, -4vw, -40px);
    left: clamp(-30px, -4vw, -40px);
    right: clamp(-30px, -4vw, -40px);
    bottom: clamp(-30px, -4vw, -40px);
    background: radial-gradient(circle,
            rgba(144, 238, 144, 0.2) 0%,
            transparent 70%);
    border-radius: 20px;
    opacity: 0;
    transition: opacity var(--transition-medium);
    animation: storm-aura 4s ease-in-out infinite;
}

/* Storm Elements */
.storm-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.storm-element {
    position: absolute;
    color: var(--accent-green);
    font-size: clamp(1rem, 2vw, 1.2rem);
    opacity: 0.4;
    animation: storm-float 6s ease-in-out infinite;
}

.thunder-icon {
    top: 15%;
    left: -8%;
    animation-delay: 0s;
}

.wind-icon {
    top: 55%;
    right: -8%;
    animation-delay: 2s;
}

.cloud-icon {
    bottom: 15%;
    left: 8%;
    animation-delay: 4s;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--medium-gray);
    opacity: 0;
    animation: bounce 2s infinite;
    z-index: 10;
}

.scroll-text {
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.scroll-arrow {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--accent-green);
}

/* Audio Controls */
.audio-controls {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    z-index: 10;
}

.audio-btn {
    width: clamp(40px, 6vw, 50px);
    height: clamp(40px, 6vw, 50px);
    background: rgba(144, 238, 144, 0.2);
    border: 1px solid var(--accent-green);
    border-radius: 50%;
    color: var(--accent-green);
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    cursor: pointer;
    transition: all var(--transition-fast);
    backdrop-filter: blur(10px);
}

.audio-btn:hover {
    background: var(--accent-green);
    color: var(--pure-white);
    transform: scale(1.1);
}

/* Buttons - Improved Responsive */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: clamp(0.8rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2rem);
    border: none;
    border-radius: 50px;
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: clamp(0.9rem, 2vw, 1rem);
    text-decoration: none;
    cursor: pointer;
    overflow: hidden;
    transition: all var(--transition-fast);
    z-index: 1;
    min-width: 120px;
    justify-content: center;
}

.btn::before {
    content: '';
    po                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ontent: center;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--accent-green);
    transform: scale(0.8);
    transition: all var(--transition-medium);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.gallery-item:hover .gallery-icon {
    transform: scale(1);
}

/* Responsive adjustments for gallery */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Base Section Styles */
.section {
    padding: var(--section-padding);
    position: relative;
    width: 100%;
    background: linear-gradient(135deg, var(--primary-blue-lighter) 0%, var(--primary-green-lighter) 40%, var(--primary-pink-lighter) 80%, var(--pure-white) 100%);
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: clamp(3rem, 6vw, 4rem);
    position: relative;
    z-index: 1;
}

.section-subtitle {
    display: inline-block;
    font-family: var(--font-secondary);
    font-size: clamp(0.9rem, 2vw, 1rem);
    font-weight: 600;
    color: var(--accent-green);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    position: relative;
}

.section-title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--accent-green), var(--accent-blue), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-green), var(--accent-blue), var(--accent-pink));
    margin: 0 auto;
    border-radius: 2px;
    position: relative;
}

.section-line::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: var(--accent-green);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(144, 238, 144, 0.5);
}

/* About Section Styles */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 4rem);
    align-items: start;
    width: 100%;
}

.about-image {
    position: relative;
    width: 100%;
}

.image-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.author-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: transform var(--transition-medium);
}

.author-img:hover {
    transform: scale(1.02);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(144, 238, 144, 0.1), rgba(255, 182, 193, 0.1));
    border-radius: 20px;
    pointer-events: none;
}

.image-frame {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 3px solid var(--accent-green);
    border-radius: 25px;
    opacity: 0.3;
    pointer-events: none;
}

.about-text {
    width: 100%;
}

.about-name {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--accent-green), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-role {
    margin-bottom: 2rem;
}

.role-text {
    font-family: var(--font-secondary);
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: var(--accent-green);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-description {
    margin-bottom: 2rem;
}

.description-text {
    font-family: var(--font-secondary);
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: #000000;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.description-text strong {
    color: var(--dark-gray);
    font-weight: 600;
}

.description-text a {
    color: var(--accent-green);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-fast);
}

.description-text a:hover {
    color: var(--accent-blue);
}

.about-achievements {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.achievement-item {
    display: flex;
    gap: 1.5rem;
    align-items: start;
    padding: 1.5rem;
    background: rgba(144, 238, 144, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(144, 238, 144, 0.3);
    transition: all var(--transition-fast);
}

.achievement-item:hover {
    background: rgba(144, 238, 144, 0.2);
    transform: translateX(10px);
}

.achievement-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-green), var(--accent-pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--pure-white);
    flex-shrink: 0;
}

.achievement-text h4 {
    font-family: var(--font-primary);
    font-size: clamp(1.1rem, 2vw, 1.2rem);
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.achievement-text p {
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    color: var(--medium-gray);
    line-height: 1.6;
}

/* Books Section Styles */
.books-content {
    width: 100%;
}


.book-display {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.book-3d-container {
    position: relative;
    perspective: 1000px;
}

.book-3d-wrapper {
    position: relative;
    transform-style: preserve-3d;
    transition: transform var(--transition-medium);
}

.book-3d-wrapper:hover {
    transform: rotateY(-15deg) rotateX(5deg);
}

.book-front {
    position: relative;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.book-front img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.book-spine-3d,
.book-back-3d {
    position: absolute;
    top: 0;
    width: 20px;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-green), var(--accent-blue));
    border-radius: 5px;
}

.book-glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(144, 238, 144, 0.3), transparent);
    border-radius: 50%;
    pointer-events: none;
    animation: glow-pulse 3s ease-in-out infinite;
}

.book-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 4rem);
    align-items: start;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.book-info {
    width: 100%;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    border: 2px solid rgba(144, 238, 144, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.book-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--accent-green), var(--accent-pink));
    color: var(--pure-white);
    border-radius: 20px;
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.book-title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--accent-green), var(--accent-blue), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.book-subtitle {
    font-family: var(--font-secondary);
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--accent-green);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.book-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.stars {
    display: flex;
    gap: 0.3rem;
}

.stars i {
    color: var(--accent-green);
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    filter: drop-shadow(0 2px 4px rgba(144, 238, 144, 0.3));
}

.rating-text {
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    color: var(--medium-gray);
}

.book-description {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(144, 238, 144, 0.1), rgba(255, 182, 193, 0.1));
    border-radius: 15px;
    border-left: 4px solid var(--accent-green);
    position: relative;
}

.book-description::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: var(--font-primary);
    font-size: 4rem;
    color: var(--accent-green);
    opacity: 0.2;
    line-height: 1;
}

.book-description p {
    font-family: var(--font-secondary);
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: #000000;
    line-height: 1.9;
    margin: 0;
    position: relative;
    z-index: 1;
    text-align: justify;
}

.book-description a {
    color: var(--accent-green);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-fast);
    border-bottom: 2px solid transparent;
}

.book-description a:hover {
    color: var(--accent-blue);
    border-bottom-color: var(--accent-blue);
}

.book-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 15px;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.detail-label {
    font-size: clamp(0.85rem, 1.6vw, 0.95rem);
    color: var(--medium-gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-value {
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: var(--dark-gray);
    font-weight: 600;
}

.book-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.book-actions .btn {
    flex: 1;
    min-width: 150px;
    padding: clamp(1rem, 2vw, 1.2rem) clamp(1.5rem, 3vw, 2rem);
    border-radius: 30px;
    font-size: clamp(0.95rem, 1.8vw, 1.05rem);
    font-weight: 600;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.book-actions .btn-primary {
    background: linear-gradient(135deg, var(--accent-green), var(--accent-blue));
    color: var(--pure-white);
    border: none;
    box-shadow: 0 5px 20px rgba(144, 238, 144, 0.4);
}

.book-actions .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(144, 238, 144, 0.5);
}

.book-actions .btn-outline {
    background: transparent;
    color: var(--accent-green);
    border: 2px solid var(--accent-green);
}

.book-actions .btn-outline:hover {
    background: var(--accent-green);
    color: var(--pure-white);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(144, 238, 144, 0.4);
}

/* Testimonials Section Styles */
.testimonials-slider {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-track {
    display: flex;
    transition: transform var(--transition-medium);
    width: 100%;
}

.testimonial-card {
    min-width: 100%;
    padding: clamp(2rem, 4vw, 3rem);
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    border: 2px solid rgba(144, 238, 144, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    text-align: center;
    opacity: 0;
    transform: translateX(50px);
    transition: all var(--transition-medium);
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
}

.testimonial-quote {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--accent-green);
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-family: var(--font-secondary);
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #000000;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.testimonial-rating i {
    color: var(--accent-green);
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--accent-green);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    text-align: left;
}

.author-name {
    font-family: var(--font-primary);
    font-size: clamp(1.1rem, 2vw, 1.2rem);
    color: var(--dark-gray);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-role {
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    color: var(--medium-gray);
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--accent-green);
    background: rgba(255, 255, 255, 0.9);
    color: var(--accent-green);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all var(--transition-fast);
}

.testimonial-btn:hover {
    background: var(--accent-green);
    color: var(--pure-white);
    transform: scale(1.1);
}

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(144, 238, 144, 0.3);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.dot.active {
    background: var(--accent-green);
    transform: scale(1.2);
}

/* Contact Section - Improved Responsive */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 3rem);
    align-items: start;
    width: 100%;
}

.contact-title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.contact-description {
    color: var(--light-gray);
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.contact-details {
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(144, 238, 144, 0.2);
    border-radius: 15px;
    transition: all var(--transition-fast);
}

.contact-item:hover {
    background: rgba(144, 238, 144, 0.3);
    transform: translateX(10px);
}

.contact-icon {
    width: clamp(50px, 8vw, 60px);
    height: clamp(50px, 8vw, 60px);
    background: linear-gradient(45deg, var(--accent-green), var(--accent-pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    color: var(--pure-white);
    flex-shrink: 0;
}

.contact-text-info h4 {
    color: var(--dark-gray);
    font-size: clamp(1.1rem, 2vw, 1.2rem);
    margin-bottom: 0.5rem;
}

.contact-text-info p {
    color: var(--medium-gray);
    font-size: clamp(0.9rem, 1.8vw, 1rem);
}

.contact-text-info a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.contact-text-info a:hover {
    color: var(--accent-green);
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    width: clamp(40px, 6vw, 50px);
    height: clamp(40px, 6vw, 50px);
    background: rgba(144, 238, 144, 0.2);
    border: 1px solid var(--accent-blue);
    border-radius: 50%;
    color: var(--accent-green);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: clamp(1rem, 2vw, 1.2rem);
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--accent-blue);
    color: var(--pure-white);
    transform: translateY(-3px) scale(1.1);
}

/* Contact Form - Improved Responsive */
.contact-form-container {
    background: rgba(144, 238, 144, 0.2);
    padding: clamp(2rem, 4vw, 3rem);
    border-radius: 20px;
    border: 1px solid rgba(144, 238, 144, 0.3);
    backdrop-filter: blur(10px);
    width: 100%;
}

.contact-form {
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-input {
    width: 100%;
    padding: clamp(1rem, 2vw, 1.2rem);
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(144, 238, 144, 0.4);
    border-radius: 10px;
    color: var(--dark-gray);
    font-family: var(--font-secondary);
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    transition: all var(--transition-fast);
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-green);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 20px rgba(144, 238, 144, 0.3);
}

.form-input::placeholder {
    color: var(--medium-gray);
}

.form-textarea {
    resize: vertical;
    min-height: clamp(100px, 15vw, 120px);
}

.form-label {
    position: absolute;
    top: clamp(1rem, 2vw, 1.2rem);
    left: clamp(1rem, 2vw, 1.2rem);
    color: var(--medium-gray);
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    pointer-events: none;
    transition: all var(--transition-fast);
}

.form-input:focus+.form-label,
.form-input:not(:placeholder-shown)+.form-label {
    top: -0.5rem;
    left: 1rem;
    font-size: clamp(0.7rem, 1.5vw, 0.8rem);
    color: var(--accent-green);
    background: var(--pure-white);
    padding: 0 0.5rem;
}

.form-submit {
    width: 100%;
    margin-top: 1rem;
}

/* Footer - Improved Responsive */
.footer {
    background: rgba(244, 230, 215, 0.8);
    border-top: 1px solid rgba(144, 238, 144, 0.3);
    padding: clamp(3rem, 6vw, 4rem) 0 2rem;
    width: 100%;
}

.footer-content {
    width: 100%;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    margin-bottom: 3rem;
}

.footer-brand {
    width: 100%;
}

.footer-title {
    font-family: var(--font-primary);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.footer-subtitle {
    color: var(--accent-green);
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    margin-bottom: 1.5rem;
}

.footer-description {
    color: var(--light-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: clamp(0.9rem, 1.8vw, 1rem);
}

.footer-social {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-social-link {
    width: clamp(40px, 6vw, 45px);
    height: clamp(40px, 6vw, 45px);
    background: rgba(144, 238, 144, 0.2);
    border: 1px solid var(--accent-blue);
    border-radius: 50%;
    color: var(--accent-green);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all var(--transition-fast);
    font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.footer-social-link:hover {
    background: var(--accent-blue);
    color: var(--pure-white);
    transform: translateY(-3px);
}

.footer-newsletter {
    text-align: left;
    width: 100%;
}

.footer-column-title {
    color: var(--dark-gray);
    font-size: clamp(1.1rem, 2vw, 1.2rem);
    margin-bottom: 1.5rem;
}

.newsletter-text {
    color: var(--light-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: clamp(0.9rem, 1.8vw, 1rem);
}

.newsletter-form {
    width: 100%;
}

.newsletter-input-group {
    display: flex;
    gap: 0.5rem;
}

.newsletter-input {
    flex: 1;
    padding: clamp(0.7rem, 1.5vw, 0.8rem);
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(144, 238, 144, 0.4);
    border-radius: 8px;
    color: var(--dark-gray);
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
}

.newsletter-input::placeholder {
    color: var(--medium-gray);
}

.newsletter-btn {
    padding: clamp(0.7rem, 1.5vw, 0.8rem) clamp(0.8rem, 1.8vw, 1rem);
    background: linear-gradient(45deg, var(--accent-green), var(--accent-pink));
    border: none;
    border-radius: 8px;
    color: var(--pure-white);
    cursor: pointer;
    transition: all var(--transition-fast);
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(52, 152, 219, 0.2);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom--simple {
    justify-content: center;
    text-align: center;
}

.footer-copyright {
    color: var(--medium-gray);
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
}

.footer-legal {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.legal-link {
    color: var(--medium-gray);
    text-decoration: none;
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
    transition: color var(--transition-fast);
}

.legal-link:hover {
    color: var(--accent-green);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes loadingProgress {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

@keyframes lightning-strike {

    0%,
    90%,
    100% {
        opacity: 0;
        transform: scaleY(0);
    }

    5%,
    10% {
        opacity: 1;
        transform: scaleY(1);
    }
}

@keyframes cloud-drift {
    from {
        transform: translateX(-100px);
    }

    to {
        transform: translateX(calc(100vw + 100px));
    }
}

@keyframes rain-fall {
    from {
        transform: translateY(-100vh);
        opacity: 1;
    }

    to {
        transform: translateY(100vh);
        opacity: 0;
    }
}

@keyframes glitch-1 {

    0%,
    100% {
        transform: translate(0);
    }

    20% {
        transform: translate(-2px, 2px);
    }

    40% {
        transform: translate(-2px, -2px);
    }

    60% {
        transform: translate(2px, 2px);
    }

    80% {
        transform: translate(2px, -2px);
    }
}

@keyframes glitch-2 {

    0%,
    100% {
        transform: translate(0);
    }

    20% {
        transform: translate(2px, -2px);
    }

    40% {
        transform: translate(2px, 2px);
    }

    60% {
        transform: translate(-2px, -2px);
    }

    80% {
        transform: translate(-2px, 2px);
    }
}

@keyframes typewriter {
    from {
        width: 0;
    }

    to {
        width: 22ch;
    }
}

@keyframes blink {

    0%,
    50% {
        border-color: var(--accent-green);
    }

    51%,
    100% {
        border-color: transparent;
    }
}

@keyframes silhouette-sway {

    0%,
    100% {
        transform: rotate(-2deg);
    }

    50% {
        transform: rotate(2deg);
    }
}

@keyframes glow-pulse {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.7;
    }
}

@keyframes storm-aura {

    0%,
    100% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }
}

@keyframes storm-float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-10px) translateX(-50%);
    }

    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive Design - Mobile First Approach */
@media screen and (max-width: 1200px) {
    .container {
        padding: 0 15px;
    }

    .container-fluid {
        padding: 0 15px;
    }

    .hero-content,
    .about-content,
    .book-showcase,
    .contact-content {
        gap: 2rem;
    }

    .nav-list {
        gap: 1.5rem;
    }
}

/* Responsive styles for new sections */
@media screen and (max-width: 968px) {
    .hero-gallery {
        gap: 1rem;
    }

    .gallery-item {
        width: 100px;
        height: 100px;
        font-size: 2rem;
    }

    .reviews-grid,
    .blog-grid,
    .resources-grid,
    .poems-preview {
        grid-template-columns: 1fr;
    }

    .book-reader-container {
        max-height: 95vh;
        margin: 1rem;
    }

    .book-reader-header {
        padding: 1rem 1.5rem;
    }

    .book-reader-content {
        padding: 1.5rem;
    }

    .book-reader-controls {
        padding: 1rem 1.5rem;
        flex-wrap: wrap;
        gap: 1rem;
    }
}

@media screen and (max-width: 968px) {
    .custom-cursor {
        display: none;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: right var(--transition-fast);
        z-index: 1001;
    }

    .nav-menu.show-menu {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .nav-link {
        font-size: 1.5rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-close {
        display: block;
    }

    .hero-content,
    .about-content,
    .book-showcase,
    .contact-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-text {
        order: 2;
    }

    .hero-visual {
        order: 1;
    }

    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
    }

    .hero-buttons {
        justify-content: center;
        gap: 1rem;
    }

    .timeline-line {
        left: 2rem;
    }

    .timeline-marker {
        left: 2rem;
    }

    .timeline-content {
        width: calc(100% - 4rem);
        margin-left: 4rem;
        text-align: left;
    }

    .timeline-item:nth-child(even) .timeline-content {
        text-align: left;
        margin-left: 4rem;
        margin-right: 0;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .achievement-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .quote-item {
        position: static;
        margin-bottom: 1rem;
        opacity: 1;
        transform: none;
    }

    .floating-quotes {
        position: static;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: 1rem;
    }

    .brand-text {
        font-size: 1.3rem;
    }

    .brand-subtitle {
        font-size: 0.7rem;
    }
}

@media screen and (max-width: 768px) {
    .container {
        padding: 0 10px;
    }

    .container-fluid {
        padding: 0 10px;
    }

    .section {
        padding: 60px 0;
    }

    /* Hero background for mobile */
    .hero {
        background-attachment: scroll;
    }

    .hero-background-overlay {
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.25) 50%, rgba(0, 0, 0, 0.45) 100%);
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .testimonial-controls {
        gap: 1rem;
    }

    .book-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .social-links,
    .footer-social {
        justify-content: center;
    }

    .newsletter-input-group {
        flex-direction: column;
        gap: 1rem;
    }

    .newsletter-btn {
        width: 100%;
    }

    .brand-text {
        font-size: 1.2rem;
    }

    .brand-subtitle {
        font-size: 0.65rem;
    }
}

@media screen and (max-width: 576px) {
    .container {
        padding: 0 8px;
    }

    .container-fluid {
        padding: 0 8px;
    }

    .section {
        padding: 50px 0;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .contact-form-container {
        padding: 1.5rem;
    }

    .achievement-item {
        padding: 1rem;
    }

    .contact-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .timeline-content {
        padding: 1.5rem;
    }

    .audio-controls {
        bottom: 1rem;
        right: 1rem;
    }

    .scroll-indicator {
        bottom: 1rem;
    }

    .brand-text {
        font-size: 1.1rem;
    }

    .brand-subtitle {
        font-size: 0.6rem;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 0 5px;
    }

    .container-fluid {
        padding: 0 5px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .btn {
        width: 100%;
        max-width: 250px;
    }

    .testimonial-author {
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-legal {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .brand-text {
        font-size: 1rem;
    }

    .brand-subtitle {
        font-size: 0.55rem;
    }
}

@media screen and (max-width: 320px) {

    .container,
    .container-fluid {
        padding: 0 5px;
    }

    .section {
        padding: 40px 0;
    }

    .hero-content,
    .about-content,
    .book-showcase,
    .contact-content {
        gap: 1rem;
    }

    .testimonial-card,
    .contact-form-container,
    .achievement-item,
    .contact-item,
    .timeline-content {
        padding: 1rem;
    }

    .brand-text {
        font-size: 0.9rem;
    }

    .brand-subtitle {
        font-size: 0.5rem;
    }
}

/* Hero Gallery */
.hero-gallery {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease 2s forwards;
}

.gallery-item {
    width: clamp(120px, 15vw, 150px);
    height: clamp(120px, 15vw, 150px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--pure-white);
    box-shadow: var(--shadow-medium);
    transition: all var(--transition-fast);
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--shadow-heavy);
}

/* Book Reviews */
.book-reviews {
    margin-top: 4rem;
    width: 100%;
}

.reviews-title {
    font-family: var(--font-primary);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--dark-gray);
    text-align: center;
    margin-bottom: 3rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.review-card {
    background: rgba(255, 255, 255, 0.7);
    padding: clamp(1.5rem, 3vw, 2rem);
    border-radius: 15px;
    border: 1px solid rgba(144, 238, 144, 0.3);
    backdrop-filter: blur(10px);
    transition: all var(--transition-fast);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.review-stars {
    color: var(--accent-green);
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 1rem;
}

.review-text {
    color: var(--medium-gray);
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-style: italic;
}

.review-author {
    color: var(--dark-gray);
    font-weight: 600;
    font-size: clamp(0.9rem, 1.8vw, 1rem);
}

/* Book Reader Modal */
.book-reader-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(135, 206, 235, 0.85);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

.book-reader-modal.active {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.book-reader-container {
    background: var(--pure-white);
    border-radius: 20px;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-heavy);
    overflow: hidden;
}

.book-reader-header {
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-pink));
    color: var(--pure-white);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.book-reader-header h3 {
    font-family: var(--font-primary);
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    margin: 0;
}

.close-reader {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--pure-white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-reader:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.book-reader-content {
    flex: 1;
    overflow-y: auto;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-blue-lighter) 0%, var(--primary-green-lighter) 50%, var(--primary-pink-lighter) 100%);
    position: relative;
}

.book-reader-content::-webkit-scrollbar {
    width: 8px;
}

.book-reader-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}

.book-reader-content::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--accent-green), var(--accent-pink));
    border-radius: 10px;
}

.book-reader-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-blue));
}

.book-page {
    display: none;
    max-width: 700px;
    margin: 0 auto;
}

.book-page h2 {
    font-family: var(--font-primary);
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-green);
}

.book-page p {
    color: #000000;
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Book Sample Content Styling */
.book-sample-content {
    max-width: 800px;
    margin: 0 auto;
}

.book-intro {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(144, 238, 144, 0.3);
}

.book-intro h2 {
    font-family: var(--font-primary);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--dark-gray);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--accent-green), var(--accent-blue), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.intro-text {
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: #000000;
    line-height: 1.8;
}

.poem-section {
    margin-top: 2rem;
}

.poem-item {
    background: rgba(255, 255, 255, 0.8);
    padding: 2.5rem;
    border-radius: 20px;
    margin-bottom: 2.5rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(135, 206, 235, 0.3);
    box-shadow: 0 5px 20px rgba(144, 238, 144, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.poem-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(255, 182, 193, 0.25);
    border-color: var(--accent-pink);
    background: rgba(255, 255, 255, 0.95);
}

.poem-item .poem-title {
    font-family: var(--font-primary);
    font-size: clamp(1.5rem, 2.5vw, 1.8rem);
    color: var(--dark-gray);
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-green);
    position: relative;
}

.poem-item .poem-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-green), var(--accent-pink));
}

.poem-item .poem-content {
    font-family: var(--font-secondary);
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: #000000;
    line-height: 2;
    text-align: left;
    font-style: normal;
}

.poem-item .poem-content p.poem-line {
    margin-bottom: 0.5rem;
    color: #000000;
    line-height: 1.9;
    font-size: clamp(1rem, 2vw, 1.15rem);
}

.poem-item .poem-content p:empty {
    display: none;
}

.poem-item .poem-content br.poem-line-break {
    display: block;
    content: "";
    margin: 1rem 0;
    height: 0;
}

/* Book Sample Footer Note */
.book-sample-footer-note {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 182, 193, 0.3));
    border-radius: 15px;
    border: 2px solid rgba(144, 238, 144, 0.4);
    text-align: center;
    backdrop-filter: blur(10px);
}

.sample-note {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.sample-note i {
    font-size: 2.5rem;
    color: var(--accent-green);
    background: linear-gradient(135deg, var(--accent-green), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sample-note p {
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: #000000;
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
}

.book-reader-footer {
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, var(--primary-green-lighter), var(--primary-blue-lighter));
    border-top: 2px solid rgba(144, 238, 144, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.reader-progress {
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    color: var(--dark-gray);
    font-weight: 600;
}

.reader-progress span {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.poem-title {
    font-family: var(--font-primary);
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    color: var(--dark-gray);
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.poem-content {
    font-family: var(--font-secondary);
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: #000000;
    line-height: 2;
    font-style: normal;
    white-space: pre-line;
}

.book-reader-controls {
    padding: 1.5rem 2rem;
    background: var(--pure-white);
    border-top: 1px solid rgba(144, 238, 144, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.reader-btn {
    background: linear-gradient(135deg, var(--accent-green), var(--accent-blue), var(--accent-pink));
    color: var(--pure-white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    cursor: pointer;
    font-size: clamp(1rem, 2vw, 1.1rem);
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 4px 15px rgba(144, 238, 144, 0.3);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.reader-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.reader-btn:hover::before {
    left: 100%;
}

.reader-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 182, 193, 0.4);
}

.reader-btn:active {
    transform: translateY(-1px) scale(1.02);
}

.reader-btn i {
    font-size: 1.2rem;
}

.reader-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.page-indicator {
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    color: var(--dark-gray);
    font-weight: 600;
}

/* Poems Section */
.poems-content {
    width: 100%;
}

.poems-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.poems-intro p {
    color: var(--medium-gray);
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.poems-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.poem-preview-card {
    background: rgba(255, 255, 255, 0.7);
    padding: clamp(2rem, 3vw, 2.5rem);
    border-radius: 20px;
    border: 1px solid rgba(144, 238, 144, 0.3);
    text-align: center;
    transition: all var(--transition-fast);
    backdrop-filter: blur(10px);
}

.poem-preview-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
    border-color: var(--accent-green);
}

.poem-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--pure-white);
}

.poem-preview-card h3 {
    font-family: var(--font-primary);
    font-size: clamp(1.3rem, 2.5vw, 1.5rem);
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.poem-preview-card p {
    color: var(--medium-gray);
    font-size: clamp(0.9rem, 1.8vw, 1rem);
}

/* Blog Section */
.blog-content {
    width: 100%;
}

.blog-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.blog-intro p {
    color: var(--medium-gray);
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.8;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(144, 238, 144, 0.3);
    transition: all var(--transition-fast);
    backdrop-filter: blur(10px);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.blog-card-image {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--pure-white);
}

.blog-card-content {
    padding: clamp(1.5rem, 2.5vw, 2rem);
}

.blog-category {
    display: inline-block;
    background: linear-gradient(45deg, var(--accent-green), var(--accent-pink));
    color: var(--pure-white);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
    font-weight: 600;
    margin-bottom: 1rem;
}

.blog-card-content h3 {
    font-family: var(--font-primary);
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.blog-card-content p {
    color: var(--medium-gray);
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.blog-link {
    color: var(--accent-green);
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-fast);
}

.blog-link:hover {
    gap: 1rem;
    color: var(--accent-sky);
}

/* Coming Soon Section */
.coming-soon {
    background: linear-gradient(135deg, var(--primary-blue-lighter) 0%, var(--primary-green-lighter) 50%, var(--primary-pink-lighter) 100%);
    padding: var(--section-padding);
}

.coming-soon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 4rem;
    padding: 0 2rem;
}

.coming-soon-single-card-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.coming-soon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.coming-soon-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 30px;
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    border: 3px solid rgba(135, 206, 235, 0.4);
    backdrop-filter: blur(15px);
    width: 100%;
    max-width: 600px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(144, 238, 144, 0.2);
    max-width: 600px;
    width: 100%;
    animation: fadeInUp 0.8s ease-out;
}

.coming-soon-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s;
}

.coming-soon-card:hover::before {
    left: 100%;
}

.coming-soon-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 182, 193, 0.3);
    border-color: var(--accent-pink);
    background: rgba(255, 255, 255, 0.95);
}

.card-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--accent-green), var(--accent-blue), var(--accent-pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: var(--pure-white);
    box-shadow: 0 10px 30px rgba(144, 238, 144, 0.4);
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
}

.coming-soon-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(255, 182, 193, 0.4);
}

.card-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-blue));
    color: var(--pure-white);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 182, 193, 0.3);
    position: relative;
    z-index: 1;
}

.card-title {
    font-family: var(--font-primary);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, var(--accent-green), var(--accent-blue), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-description {
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    color: #000000;
    line-height: 1.9;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.card-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(144, 238, 144, 0.2);
    position: relative;
    z-index: 1;
}

.card-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: clamp(0.9rem, 1.6vw, 1rem);
    color: var(--dark-gray);
    font-weight: 600;
}

.card-date i {
    color: var(--accent-green);
    font-size: 1.1rem;
}

.coming-soon-card:nth-child(1) .card-icon {
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-blue));
}

.coming-soon-card:nth-child(2) .card-icon {
    background: linear-gradient(135deg, var(--accent-green), var(--accent-blue));
}

.coming-soon-card:nth-child(3) .card-icon {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-pink));
}

.coming-soon-card:nth-child(4) .card-icon {
    background: linear-gradient(135deg, var(--accent-green), var(--accent-pink));
}

.coming-soon-card:nth-child(5) .card-icon {
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-green));
}

.coming-soon-card:nth-child(6) .card-icon {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-green));
}

.section-description {
    max-width: 700px;
    margin: 1.5rem auto 0;
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: #000000;
    line-height: 1.8;
}

/* Resources Section */
.resources-content {
    width: 100%;
}

.resources-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.resources-intro p {
    color: var(--medium-gray);
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.8;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.resource-card {
    background: rgba(255, 255, 255, 0.7);
    padding: clamp(2rem, 3vw, 2.5rem);
    border-radius: 20px;
    border: 1px solid rgba(144, 238, 144, 0.3);
    text-align: center;
    transition: all var(--transition-fast);
    backdrop-filter: blur(10px);
}

.resource-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
    border-color: var(--accent-green);
}

.resource-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--pure-white);
}

.resource-card h3 {
    font-family: var(--font-primary);
    font-size: clamp(1.2rem, 2.5vw, 1.4rem);
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.resource-card p {
    color: var(--medium-gray);
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    line-height: 1.6;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mt-5 {
    margin-top: 3rem;
}

.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

/* Coming Soon Section */
.coming-soon-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-blue-lighter) 0%, var(--primary-green-lighter) 40%, var(--primary-pink-lighter) 80%, var(--pure-white) 100%);
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0;
}

.coming-soon-section .container-fluid {
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
}

.coming-soon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    width: 100%;
    margin: 0 auto;
}

.coming-soon-card {
    background: rgba(255, 255, 255, 0.9);
    padding: clamp(3rem, 5vw, 4rem);
    border-radius: 30px;
    border: 2px solid rgba(144, 238, 144, 0.3);
    text-align: center;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 15px 40px rgba(135, 206, 235, 0.2);
    backdrop-filter: blur(10px);
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.coming-soon-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(144, 238, 144, 0.1), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.coming-soon-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 182, 193, 0.3);
    border-color: var(--accent-green);
}

.coming-soon-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-green), var(--accent-pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--pure-white);
    box-shadow: 0 10px 30px rgba(144, 238, 144, 0.4);
    position: relative;
    z-index: 1;
    animation: comingSoonPulse 2s ease-in-out infinite;
}

@keyframes comingSoonPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.coming-soon-icon i {
    position: relative;
    z-index: 1;
}

.coming-soon-title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--dark-gray);
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, var(--accent-green), var(--accent-blue), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.coming-soon-text {
    font-family: var(--font-secondary);
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: #000000;
    line-height: 1.8;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    font-weight: 400;
}

.coming-soon-decoration {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.decoration-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-green), var(--accent-pink));
    animation: comingSoonBounce 1.5s ease-in-out infinite;
}

.decoration-dot:nth-child(1) {
    animation-delay: 0s;
}

.decoration-dot:nth-child(2) {
    animation-delay: 0.3s;
}

.decoration-dot:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes comingSoonBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Section Responsive Styles */
@media screen and (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: clamp(2rem, 5vw, 3rem);
    }
    
    .section-title {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
    }
    
    .section-subtitle {
        font-size: clamp(0.8rem, 2vw, 0.9rem);
    }
    
    /* About Section Responsive */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .image-container {
        max-width: 100%;
    }
    
    .about-name {
        text-align: center;
    }
    
    .about-role {
        text-align: center;
    }
    
    /* Books Section Responsive */
    .book-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .book-info {
        padding: 1.5rem;
    }
    
    .book-description {
        padding: 1rem;
    }
    
    .book-description::before {
        font-size: 3rem;
    }
    
    .book-actions {
        flex-direction: column;
    }
    
    .book-actions .btn {
        width: 100%;
    }
    
    .book-details {
        grid-template-columns: 1fr;
    }
    
    /* Testimonials Responsive */
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-controls {
        gap: 1rem;
    }
    
    .testimonial-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .coming-soon-section {
        padding: 60px 0;
    }
    
    .coming-soon-wrapper {
        min-height: 300px;
        padding: 0 15px;
    }
    
    .coming-soon-card {
        padding: clamp(2rem, 4vw, 3rem);
        max-width: 100%;
    }
    
    .coming-soon-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .coming-soon-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: 1rem;
    }
    
    .coming-soon-text {
        font-size: clamp(1rem, 3vw, 1.1rem);
        margin-bottom: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .section {
        padding: 40px 0;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: clamp(1.3rem, 7vw, 2rem);
        margin-bottom: 1rem;
    }
}

/* High DPI Display Support */
@media screen and (-webkit-min-device-pixel-ratio: 2),
screen and (min-resolution: 192dpi) {

    .book-cover img,
    .author-img,
    .author-avatar img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Print Styles */
@media print {

    .custom-cursor,
    .loading-screen,
    .lightning-container,
    .storm-clouds,
    .rain-container,
    .audio-controls,
    .nav-toggle,
    .storm-elements {
        display: none !important;
    }

    .hero,
    .section {
        page-break-inside: avoid;
    }

    body {
        background: white !important;
        color: black !important;
    }
}