* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: white;
    background-color: #000; 
}

/* Background Canvas Container */
.canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
}

#hero-lightpass {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Dark gradient so white text is highly readable across all sections */
    background: linear-gradient(
        to bottom, 
        rgba(0, 0, 0, 0.6) 0%, 
        rgba(0, 0, 0, 0.3) 30%, 
        rgba(0, 0, 0, 0.7) 100%
    );
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 60px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent);
}

.logo {
    font-family: 'Playfair Display', serif; 
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.7;
}

.social-icons {
    display: flex;
    gap: 20px;
    margin-left: 20px;
}

.social-icons a {
    font-size: 1.25rem;
}

/* Scroll Content Container */
.scroll-content {
    position: relative;
    z-index: 10;
    width: 100%;
}

/* Hero Content */
.hero-content {
    padding: 0 60px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-left {
    max-width: 750px;
    margin-top: 50px;
}

.trusted-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.avatars {
    display: flex;
    gap: 2px;
}

.trusted-text {
    font-size: 0.95rem;
    line-height: 1.4;
    opacity: 0.9;
    font-weight: 500;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 5.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: -1px;
    line-height: 1.1;
}

.hero-desc {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 45px;
    opacity: 0.95;
    color: #ffffff;
    max-width: 600px;
    font-weight: 400;
}

.cta-button {
    background-color: white;
    color: #1a1a1a;
    border: none;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 35px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: transform 0.2s ease, background-color 0.2s ease;
    width: max-content;
}

.cta-button i {
    font-size: 1rem;
}

.cta-button:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

/* New Page Sections */
.page-section {
    min-height: 80vh;
    padding: 120px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-inner {
    max-width: 1200px;
    width: 100%;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 40px;
}

.section-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

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

/* Glassmorphism Panel */
.glass-panel {
    background: rgba(20, 20, 20, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* About Layout */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.text-col p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #e0e0e0;
}

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

.author-img {
    width: 100%;
    max-width: 450px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

/* Books Layout */
.books-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.book-card {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.book-card:hover {
    transform: translateY(-10px);
}

.book-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 25px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

.book-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.book-card p {
    font-size: 1rem;
    line-height: 1.5;
    color: #ccc;
    margin-bottom: 20px;
}

.read-more {
    color: white;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    border-bottom: 1px solid white;
    padding-bottom: 2px;
}

/* Newsletter Form */
.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 25px;
    border-radius: 35px;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(0,0,0,0.5);
    color: white;
    font-size: 1.1rem;
    outline: none;
}

.newsletter-form input::placeholder {
    color: #aaa;
}

.newsletter-form input:focus {
    border-color: white;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px;
    font-size: 0.9rem;
    color: #888;
    background: #050505;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .navbar {
        padding: 20px 30px;
    }
    
    .hero-content, .page-section {
        padding: 80px 30px;
    }

    .hero-title {
        font-size: 4rem;
    }

    .nav-links a:not(.social-icons a) {
        display: none;
    }
    
    .two-col, .books-grid {
        grid-template-columns: 1fr;
    }
    
    .author-img {
        margin-top: 40px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form .cta-button {
        width: 100%;
    }
}
