:root {
    --primary-dark: #1a2a26;
    --accent-orange: #d97706;
    --light-bg: #fbfaf5;
    --text-muted: #6b7280;
    --serif-font: 'Playfair Display', serif;
    --sans-font: 'Inter', sans-serif;
}

body {
    font-family: var(--sans-font);
    color: var(--primary-dark);
    background-color: #fff;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.serif {
    font-family: var(--serif-font);
}

a {
    text-decoration: none;
}

/* Navbar */
.navbar {
    padding: 0.45rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-link {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-dark) !important;
}

.navbar-brand {
    font-family: var(--serif-font);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 1.5rem;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('https://images.unsplash.com/photo-1495446815901-a7297e633e8d?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: white;
    position: relative;
}

.hero-label {
    color: var(--accent-orange);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title span {
    color: var(--accent-orange);
    font-style: italic;
}

.hero-desc {
    max-width: 450px;
    font-size: 1rem;
    opacity: 0.9;
}

.btn-orange {
    background-color: var(--accent-orange);
    color: white;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    border: none;
    transition: 0.3s;
}

.btn-play {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-left: 20px;
}

.book-img-main {
    width: 100%;
    max-width: 200px;
    box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.5);
    transform: rotate(15deg);
}

.quote-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 10px;
    font-size: 0.85rem;
    max-width: 250px;
    position: absolute;
    top: 5%;
    right: 15%;
}

/* Mission Section */
.mission-section {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.arched-img-container {
    position: relative;
    padding: 10px;
    background: #FFF;
    border-radius: 215px 215px 0px 0px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.25);
}

.arched-img {
    width: 100%;
    border-top-left-radius: 200px;
    border-top-right-radius: 200px;
    object-fit: cover;
    height: 500px;
}

.floating-quote {
    position: absolute;
    bottom: 0;
    right: -20px;
    background: var(--primary-dark);
    color: white;
    padding: 30px;
    max-width: 250px;
    font-family: var(--serif-font);
    font-style: italic;
    border-top-left-radius: 30px;
}

.feature-box {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.feature-box i {
    color: var(--accent-orange);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Books Section */
.books-section {
    padding: 80px 0;
}

.book-card {
    text-align: center;
    padding: 20px;
    transition: 0.3s;
    background: #faf7f2;
}

.book-card img {
    width: 100%;
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    height: 200px;
    width: auto;
}

.book-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.book-genre {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.btn-outline-buy {
    border: 1px solid var(--accent-orange);
    color: var(--accent-orange);
    padding: 5px 25px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
}

/* Journal Section */
.journal-section {
    background-color: var(--primary-dark);
    color: white;
    padding: 100px 0;
}

.journal-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.journal-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-orange);
    flex-shrink: 0;
}

.who-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 15px;
}

.who-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.9rem;
}

.impact-chart {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    height: 150px;
    margin-top: 40px;
    justify-content: center;
}

.bar {
    width: 100px;
    border-radius: 4px;
}

.bar-1 {
    height: 60%;
    background: #c2410c;
}

.bar-2 {
    height: 90%;
    background: #a8a29e;
}

.bar-3 {
    height: 100%;
    background: #10b981;
}

.bar-4 {
    height: 75%;
    background: #b45309;
}

/* Testimonials */
.testimonial-section {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    position: relative;
    height: 100%;
    border-top: 5px solid var(--accent-orange);
}

.quote-mark {
    position: absolute;
    top: -15px;
    left: 30px;
    background: var(--accent-orange);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.user-info img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

/* Footer */
footer {
    background-color: var(--primary-dark);
    color: #9ca3af;
    padding: 80px 0 20px;
    font-size: 0.85rem;
}

.footer-logo {
    color: white;
    font-family: var(--serif-font);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 20px;
    display: block;
}

.footer-title {
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: inherit;
    text-decoration: none;
}

.newsletter-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 10px 15px;
    width: 100%;
    border-radius: 4px;
}

.social-icons a {
    width: 35px;
    height: 35px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
    color: white;
}

.slider-card {
    background: #faf7f2;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    height: 100%;
}

.slider-card img {
    max-height: 180px;
    margin-bottom: 20px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

.book-title {
    font-size: 18px;
    font-weight: 600;
}

.book-category {
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
}

.btn-buy {
    border: 1px solid #ff6b2c;
    color: #ff6b2c;
    padding: 6px 18px;
    border-radius: 6px;
    background: transparent;
}

.btn-buy:hover {
    background: #ff6b2c;
    color: #fff;
}

.sliderArrow {
    border-radius: 30px;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

@media (max-width: 768px) {
    .mobileView {
        position: absolute;
        background: #FFF;
        min-width: 300px;
        padding: 0.85rem;
        top: 62px;
        z-index: 99;
    }

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

    .arched-img {
        height: 350px;
    }

    .floating-quote {
        position: relative;
        right: 0;
        margin-top: -30px;
    }

    .quote-box {
        display: none;
    }
}