/* Import Unique Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Crimson+Pro:wght@300;400;600&family=Libre+Baskerville:wght@400;700&family=Cormorant+Garamond:wght@300;400;600;700&display=swap');

/* Root Variables */
:root {
    --primary-color: #2c1810;
    --secondary-color: #8b4513;
    --accent-color: #d4af37;
    --accent-light: #f4e4c1;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-cream: #faf7f0;
    --bg-paper: #f5f1e8;
    --border-subtle: #e0d5c7;
    
    --font-display: 'Playfair Display', serif;
    --font-body: 'Crimson Pro', serif;
    --font-accent: 'Libre Baskerville', serif;
    --font-editorial: 'Cormorant Garamond', serif;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--bg-cream);
    overflow-x: hidden;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a0f08 100%);
    color: white;
    padding: 1.5rem 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    transform: translateY(100%);
    animation: slideUp 0.5s forwards 1s;
}

@keyframes slideUp {
    to { transform: translateY(0); }
}

.cookie-banner p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.cookie-banner a {
    color: var(--accent-color);
    text-decoration: underline;
}

.cookie-banner.hidden {
    display: none;
}

/* Navigation */
.navbar {
    background: linear-gradient(180deg, rgba(44,24,16,0.98) 0%, rgba(44,24,16,0.95) 100%);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color) !important;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    color: var(--accent-light) !important;
    transform: translateY(-2px);
}

.navbar-brand i {
    margin-right: 0.5rem;
    animation: float 3s ease-in-out infinite;
}

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

.nav-link {
    color: rgba(255,255,255,0.85) !important;
    font-family: var(--font-accent);
    font-size: 0.95rem;
    margin: 0 1rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
    color: var(--accent-color) !important;
}

.nav-link:hover::after {
    width: 80%;
}

.nav-link.active {
    color: var(--accent-color) !important;
}

.nav-link.active::after {
    width: 80%;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: 
        linear-gradient(135deg, rgba(44,24,16,0.92) 0%, rgba(139,69,19,0.88) 100%),
        url('images/banner.jpg') center/cover;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0,0,0,0.03) 2px,
        rgba(0,0,0,0.03) 4px
    );
    pointer-events: none;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(212,175,55,0.3);
}

.hero-subtitle {
    font-family: var(--font-editorial);
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 300;
    line-height: 1.8;
    max-width: 600px;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.9);
}

.hero-buttons .btn {
    margin: 0.5rem 0;
    padding: 1rem 2.5rem;
    font-family: var(--font-accent);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color) 0%, #b8941f 100%);
    border: none;
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(212,175,55,0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212,175,55,0.6);
}

.btn-outline-light {
    border: 2px solid rgba(255,255,255,0.6);
    color: white;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
    border-color: white;
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: rgba(255,255,255,0.6);
    animation: bounce 2s infinite;
}

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

/* Quote Section */
.quote-section {
    padding: 6rem 0;
    background: 
        linear-gradient(135deg, var(--bg-paper) 0%, var(--bg-cream) 100%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(212,175,55,0.02) 10px,
            rgba(212,175,55,0.02) 20px
        );
    position: relative;
}

.quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-subtle), transparent);
}

.quote-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    position: relative;
}

.quote-icon {
    font-size: 4rem;
    color: var(--accent-color);
    opacity: 0.2;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.quote-text {
    font-family: var(--font-editorial);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 2rem 0;
}

.quote-author {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 600;
}

/* Section Styling */
.section-header {
    margin-bottom: 4rem;
}

.section-label {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-color);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.section-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 2px;
    background: var(--accent-color);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-description {
    font-family: var(--font-editorial);
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Featured Section */
.featured-section {
    padding: 8rem 0;
    background: var(--bg-cream);
    position: relative;
}

.featured-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background: linear-gradient(180deg, rgba(212,175,55,0.05) 0%, transparent 100%);
    pointer-events: none;
}

/* Book Cards */
.book-card {
    background: white;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    height: 100%;
    position: relative;
}

.book-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid var(--accent-color);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.book-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.book-card:hover::before {
    opacity: 1;
}

.book-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    height: 400px;
    width: 100%;
}

.book-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.book-card:hover .book-card-image img {
    transform: scale(1.1);
}

.book-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.book-card:hover .book-card-overlay {
    opacity: 1;
}

.book-card-content {
    padding: 2rem;
}

.book-badge {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.4rem 1rem;
    background: var(--accent-light);
    color: var(--primary-color);
    border-radius: 2px;
    margin-bottom: 1rem;
}

.book-badge.badge-gold {
    background: linear-gradient(135deg, var(--accent-color) 0%, #d4a017 100%);
    color: white;
}

.book-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.book-author {
    font-family: var(--font-editorial);
    font-size: 1rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1rem;
}

.book-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.book-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-subtle);
}

.book-price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.book-rating {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.book-rating i {
    margin-right: 2px;
}

/* Featured Card Special Styling */
.featured-card {
    position: relative;
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--accent-color) 0%, #d4a017 100%);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(212,175,55,0.4);
}

.featured-badge i {
    margin-right: 0.5rem;
}

/* Bestseller Carousel */
.bestseller-section {
    padding: 8rem 0;
    background: 
        linear-gradient(135deg, var(--primary-color) 0%, #1a0f08 100%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 20px,
            rgba(212,175,55,0.05) 20px,
            rgba(212,175,55,0.05) 40px
        );
    color: white;
}

.carousel-book-img {
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.carousel-content {
    padding: 2rem;
}

.carousel-number {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 900;
    color: var(--accent-color);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 1rem;
    display: block;
}

.carousel-content h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.carousel-author {
    font-family: var(--font-editorial);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.carousel-description {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
    margin-bottom: 1.5rem;
}

.carousel-stats {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
}

.carousel-stats span {
    font-family: var(--font-accent);
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

.carousel-stats i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(212,175,55,0.2);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(212,175,55,0.4);
}

/* Subscription Section */
.subscription-section {
    padding: 8rem 0;
    background: 
        linear-gradient(135deg, var(--bg-paper) 0%, white 100%);
    position: relative;
    overflow: hidden;
}

.subscription-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 150%;
    background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.subscription-content {
    padding-right: 3rem;
}

.subscription-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.subscription-features {
    margin: 3rem 0;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.feature-item i {
    font-size: 2rem;
    color: var(--accent-color);
    min-width: 40px;
}

.feature-item h4 {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.feature-item p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
}

.subscription-pricing {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 2rem;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.price-tag {
    display: flex;
    align-items: baseline;
    color: white;
}

.price-amount {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-color);
}

.price-period {
    font-family: var(--font-accent);
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    margin-left: 0.5rem;
}

.subscription-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.subscription-image {
    position: relative;
}

.subscription-image img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

/* Author Section */
.author-section {
    padding: 8rem 0;
    background: var(--bg-cream);
}

.author-card {
    background: white;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    height: 100%;
}

.author-card:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.author-image {
    aspect-ratio: 1/1;
    overflow: hidden;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
    transition: all 0.5s ease;
}

.author-card:hover .author-image img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.author-info {
    padding: 2rem;
}

.author-info h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.author-genre {
    font-family: var(--font-accent);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.author-bio {
    font-family: var(--font-editorial);
    font-size: 1.05rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.author-link {
    font-family: var(--font-accent);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.author-link:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

/* Poll Section */
.poll-section {
    padding: 6rem 0;
    background: 
        linear-gradient(135deg, var(--bg-paper) 0%, var(--bg-cream) 100%);
}

.poll-container {
    background: white;
    padding: 3rem;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 0 auto;
}

.poll-header {
    text-align: center;
    margin-bottom: 2rem;
}

.poll-header i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.poll-header h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.poll-header p {
    color: var(--text-light);
}

.poll-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.poll-option {
    background: var(--bg-paper);
    border: 2px solid var(--border-subtle);
    padding: 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.poll-option:hover {
    border-color: var(--accent-color);
    transform: translateX(5px);
}

.poll-option i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.poll-option span:first-of-type {
    font-family: var(--font-accent);
    font-weight: 600;
    color: var(--primary-color);
    flex: 1;
}

.poll-bar {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    z-index: 0;
}

.poll-fill {
    height: 100%;
    background: linear-gradient(90deg, rgba(212,175,55,0.1) 0%, rgba(212,175,55,0.2) 100%);
    transition: width 0.5s ease;
}

.poll-percentage {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--accent-color);
    z-index: 1;
}

.poll-option > * {
    position: relative;
    z-index: 1;
}

/* Events Section */
.events-section {
    padding: 8rem 0;
    background: var(--bg-cream);
}

.event-card {
    background: white;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.event-date {
    background: linear-gradient(135deg, var(--accent-color) 0%, #d4a017 100%);
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.event-day {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    display: block;
    line-height: 1;
}

.event-month {
    font-family: var(--font-accent);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.event-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.event-type {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.event-content h4 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.event-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.event-meta i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

/* Testimonials */
.testimonials-section {
    padding: 8rem 0;
    background: 
        linear-gradient(135deg, var(--bg-paper) 0%, white 100%);
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 4px;
    border-left: 4px solid var(--accent-color);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.testimonial-stars {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-family: var(--font-editorial);
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

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

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-light);
}

.testimonial-author h5 {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.2rem;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Reviews Section */
.reviews-section {
    padding: 8rem 0;
    background: var(--bg-cream);
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.review-info h5 {
    font-family: var(--font-accent);
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.review-stars {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.review-book {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.review-date {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
}

/* Newsletter */
.newsletter-section {
    padding: 6rem 0;
    background: 
        linear-gradient(135deg, var(--primary-color) 0%, #1a0f08 100%);
    color: white;
}

.newsletter-container {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 4px;
    border: 1px solid rgba(212,175,55,0.2);
}

.newsletter-container h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.newsletter-container p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
}

.newsletter-form {
    margin-top: 1.5rem;
}

.newsletter-form .input-group {
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.newsletter-form .form-control {
    padding: 1rem 1.5rem;
    font-family: var(--font-body);
    font-size: 1rem;
    border: none;
    border-radius: 2px 0 0 2px;
}

.newsletter-form .btn {
    padding: 1rem 2rem;
    border-radius: 0 2px 2px 0;
}

.newsletter-form small {
    display: block;
    margin-top: 1rem;
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0d0806 100%);
    color: rgba(255,255,255,0.8);
    padding: 5rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(212,175,55,0.1);
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
}

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

.footer-links li,
.footer-contact li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-contact li {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.footer-contact i {
    color: var(--accent-color);
    margin-top: 3px;
    min-width: 18px;
}

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

.footer-bottom p {
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--accent-color);
}

/* Modal Styling */
.modal-content {
    border-radius: 4px;
    border: none;
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border-radius: 4px 4px 0 0;
    padding: 1.5rem;
}

.modal-title {
    font-family: var(--font-display);
    font-weight: 700;
}

.modal-body {
    padding: 2rem;
}

.form-label {
    font-family: var(--font-accent);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.form-control,
.form-select {
    font-family: var(--font-body);
    border: 2px solid var(--border-subtle);
    border-radius: 2px;
    padding: 0.75rem 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(212,175,55,0.15);
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .subscription-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .subscription-pricing {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .newsletter-container h2 {
        font-size: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .nav-link {
        margin: 0.5rem 0;
    }
    
    .hero-buttons .btn {
        width: 100%;
        margin: 0.5rem 0;
    }
    
    .quote-text {
        font-size: 1.3rem;
    }
    
    .carousel-content {
        padding: 1rem;
    }
    
    .carousel-number {
        font-size: 3rem;
    }
    
    .carousel-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Utility Classes */
.btn-outline-primary {
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
}

.btn-outline-primary:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    border-color: var(--accent-color);
}

/* Loading Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}





.navbar-brand img{
    max-width: 250px;
    width: 250px;
    object-fit: contain;
}

html{
    overflow-x: hidden;
}


footer .navbar-brand img{
    filter: brightness(0) invert(1);
}

.footer-text{
    margin-top: 20px;
}