﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #C8102E;
    --dark-red: #8B0000;
    --darker-red: #5a0000;
    --gold: #C8102E;
    --gold-light: #8B0000;
    --gold-dark: #5a0000;
    --bg-dark: #0d0505;
    --bg-card: #1a0a0a;
    --bg-section: #120808;
    --text-white: #ffffff;
    --text-cream: #f5e6d3;
    --text-muted: #d4a574;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Crimson Text', Georgia, serif;
    background: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(ellipse at 20% 20%, rgba(200, 16, 46, 0.15) 0%, transparent 50%), radial-gradient(ellipse at 80% 80%, rgba(139, 0, 0, 0.1) 0%, transparent 50%), radial-gradient(ellipse at 50% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 70%), var(--bg-dark);
}

.sparkles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    animation: sparkle 3s ease-in-out infinite;
    opacity: 0;
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.4s ease;
    background: transparent;
}

    .navbar.scrolled {
        background: rgba(13, 5, 5, 0.95);
        backdrop-filter: blur(20px);
        box-shadow: 0 4px 30px rgba(200, 16, 46, 0.3);
        padding: 10px 0;
    }

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo-emblem {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    position: relative;
    overflow: hidden;
}

    .logo-emblem::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
        animation: shine 3s infinite;
    }

@keyframes shine {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

.logo-emblem i {
    font-size: 28px;
    color: var(--gold);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

    .logo-text span {
        color: var(--gold);
    }

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

    .nav-links a {
        color: var(--text-cream);
        text-decoration: none;
        font-family: 'Montserrat', sans-serif;
        font-size: 0.95rem;
        font-weight: 500;
        letter-spacing: 1px;
        text-transform: uppercase;
        position: relative;
        padding: 5px 0;
        transition: all 0.3s ease;
    }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--gold), var(--gold-light));
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--gold);
        }

            .nav-links a:hover::after {
                width: 100%;
            }

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
}

    .mobile-menu-btn span {
        width: 30px;
        height: 3px;
        background: var(--gold);
        border-radius: 3px;
        transition: all 0.3s ease;
    }

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 40px 80px;
    position: relative;
    overflow: hidden;
}

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('/images/whatsapp-20image-202026-01-27-20at-207.jpeg') center/cover no-repeat;
        opacity: 0.15;
        filter: blur(3px);
    }

    .hero::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(13, 5, 5, 0.9) 0%, rgba(90, 0, 0, 0.7) 50%, rgba(13, 5, 5, 0.9) 100%);
    }

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fadeInLeft 1s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--bg-dark);
    padding: 10px 25px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 10px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
}

    .hero-title .red {
        color: var(--primary-red);
        display: block;
    }

    .hero-title .white {
        color: var(--text-white);
    }

    .hero-title .love {
        color: var(--gold);
        font-style: italic;
    }

.hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 30px;
    padding-left: 20px;
    border-left: 4px solid var(--gold);
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-cream);
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 550px;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    color: var(--text-cream);
}

    .hero-feature i {
        color: var(--gold);
        font-size: 1.2rem;
        width: 25px;
    }

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--bg-dark);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 40px rgba(212, 175, 55, 0.6);
    }

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--gold);
}

    .btn-secondary:hover {
        background: var(--gold);
        color: var(--bg-dark);
        transform: translateY(-3px);
    }

.hero-visual {
    position: relative;
    animation: fadeInRight 1s ease-out 0.3s both;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.book-showcase {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.book-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.book-image {
    position: relative;
    width: 350px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 100px rgba(212, 175, 55, 0.2);
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

    .book-image:hover {
        transform: perspective(1000px) rotateY(-5deg) rotateX(2deg) scale(1.05);
    }

.floating-badge {
    position: absolute;
    background: var(--primary-red);
    color: var(--text-white);
    padding: 15px 25px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 10px 30px rgba(200, 16, 46, 0.5);
    animation: float 4s ease-in-out infinite;
}

    .floating-badge.top {
        top: -20px;
        right: -30px;
    }

    .floating-badge.bottom {
        bottom: 30px;
        left: -40px;
        background: linear-gradient(135deg, var(--gold), var(--gold-dark));
        color: var(--bg-dark);
    }

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Divider */
.section-divider {
    height: 100px;
    background: linear-gradient(180deg, var(--bg-dark), var(--bg-section));
    position: relative;
    overflow: hidden;
}

.divider-pattern {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    gap: 20px;
}

.divider-line {
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.divider-icon {
    color: var(--gold);
    font-size: 2rem;
}

/* Quote Section */
.quote-section {
    padding: 100px 40px;
    background: var(--bg-section);
    position: relative;
    overflow: hidden;
}

    .quote-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(ellipse at 30% 50%, rgba(200, 16, 46, 0.1) 0%, transparent 50%), radial-gradient(ellipse at 70% 50%, rgba(139, 0, 0, 0.1) 0%, transparent 50%);
    }

.quote-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.quote-card {
    background: linear-gradient(135deg, var(--bg-card), rgba(90, 0, 0, 0.3));
    border: 2px solid var(--gold);
    border-radius: 20px;
    padding: 60px 80px;
    position: relative;
    overflow: hidden;
}

    .quote-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('/images/whatsapp-20image-202026-01-27-20at-207.jpeg') center/cover no-repeat;
        opacity: 0.1;
    }

.quote-marks {
    font-family: 'Playfair Display', serif;
    font-size: 8rem;
    color: var(--gold);
    opacity: 0.3;
    position: absolute;
    line-height: 1;
}

    .quote-marks.open {
        top: 20px;
        left: 40px;
    }

    .quote-marks.close {
        bottom: -40px;
        right: 40px;
    }

.quote-text {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-style: italic;
    color: var(--text-white);
    text-align: center;
    line-height: 1.5;
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.quote-source {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

/* Inside the Book Section */
.inside-section {
    padding: 120px 40px;
    background: var(--bg-dark);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-label {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 20px;
}

    .section-title span {
        color: var(--gold);
    }

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.book-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: linear-gradient(135deg, var(--bg-card), var(--bg-section));
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

    .feature-card:hover {
        transform: translateY(-10px);
        border-color: var(--gold);
        box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
    }

.feature-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.feature-card:hover .feature-image {
    transform: scale(1.1);
}

.feature-image-wrapper {
    overflow: hidden;
    position: relative;
}

    .feature-image-wrapper::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 100px;
        background: linear-gradient(transparent, var(--bg-card));
    }

.feature-content {
    padding: 30px;
    text-align: center;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -50px auto 20px;
    position: relative;
    z-index: 1;
    border: 3px solid var(--gold);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

    .feature-icon i {
        font-size: 1.5rem;
        color: var(--gold);
    }

.feature-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 15px;
}

.feature-description {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Gallery Section */
.gallery-section {
    padding: 120px 40px;
    background: var(--bg-section);
    position: relative;
    overflow: hidden;
}

    .gallery-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(ellipse at 0% 50%, rgba(200, 16, 46, 0.15) 0%, transparent 50%), radial-gradient(ellipse at 100% 50%, rgba(139, 0, 0, 0.15) 0%, transparent 50%);
    }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 2;
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .gallery-item:hover img {
        transform: scale(1.1);
    }

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(13, 5, 5, 0.9) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-caption {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--text-white);
}

/* About Author Section */
.author-section {
    padding: 120px 40px;
    background: var(--bg-dark);
}

.author-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 80px;
    align-items: center;
}

.author-image-wrapper {
    position: relative;
}

.author-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    border: 4px solid var(--gold);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.author-frame {
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid var(--gold);
    border-radius: 20px;
    opacity: 0.5;
}

.author-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--text-white);
    margin-bottom: 30px;
}

    .author-content h2 span {
        color: var(--gold);
    }

.author-bio {
    font-size: 1.15rem;
    color: var(--text-cream);
    line-height: 1.9;
    margin-bottom: 30px;
}

.author-quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-style: italic;
    color: var(--text-muted);
    padding-left: 30px;
    border-left: 4px solid var(--gold);
    margin-bottom: 30px;
}

.author-signature {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-style: italic;
    color: var(--gold);
}

/* Testimonials Section */
.testimonials-section {
    padding: 120px 40px;
    background: linear-gradient(135deg, var(--dark-red), var(--primary-red));
    position: relative;
    overflow: hidden;
}

    .testimonials-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
        background-size: 50px 50px;
        opacity: 0.5;
    }

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.testimonial-banner {
    text-align: center;
    margin-bottom: 60px;
}

    .testimonial-banner h2 {
        font-family: 'Playfair Display', serif;
        font-size: 2.5rem;
        color: var(--text-white);
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.4s ease;
}

    .testimonial-card:hover {
        transform: translateY(-10px);
        border-color: var(--gold);
        box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    }

.testimonial-stars {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-cream);
    line-height: 1.7;
    margin-bottom: 25px;
}

.testimonial-author {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 1px;
}

/* Order Section */
.order-section {
    padding: 120px 40px;
    background: var(--bg-dark);
}

.order-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.order-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-red);
    color: var(--text-white);
    padding: 12px 30px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.order-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--text-white);
    margin-bottom: 20px;
}

    .order-title span {
        color: var(--gold);
    }

.order-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.order-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.order-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 40px;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.4s ease;
    min-width: 250px;
    justify-content: center;
}

    .order-btn.amazon {
        background: #FF9900;
        color: #000;
    }

        .order-btn.amazon:hover {
            background: #FFB84D;
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(255, 153, 0, 0.4);
        }

    .order-btn.barnes {
        background: #006241;
        color: var(--text-white);
    }

        .order-btn.barnes:hover {
            background: #008255;
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 98, 65, 0.4);
        }

    .order-btn i {
        font-size: 1.8rem;
    }

.order-btn-text {
    text-align: left;
}

.order-btn-label {
    font-size: 0.75rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.order-btn-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
}

.social-section {
    padding-top: 50px;
    border-top: 1px solid var(--border);
}

.social-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-link {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-white);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

    .social-link.facebook {
        background: #1877F2;
    }

    .social-link.twitter {
        background: #000;
    }

    .social-link.instagram {
        background: linear-gradient(135deg, #F58529, #DD2A7B, #8134AF);
    }

    .social-link.youtube {
        background: #FF0000;
    }

    .social-link:hover {
        transform: translateY(-5px) scale(1.1);
        border-color: var(--gold);
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    }

/* Footer */
.footer {
    background: var(--bg-card);
    padding: 60px 40px 30px;
    border-top: 3px solid var(--gold);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo-emblem {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--gold);
}

    .footer-logo-emblem i {
        font-size: 1.5rem;
        color: var(--gold);
    }

.footer-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-white);
}

.footer-slogan {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: var(--gold);
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 80px;
}

.footer-nav-column h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-nav-column ul {
    list-style: none;
}

    .footer-nav-column ul li {
        margin-bottom: 12px;
    }

    .footer-nav-column ul a {
        color: var(--text-cream);
        text-decoration: none;
        transition: color 0.3s ease;
        font-size: 1rem;
    }

        .footer-nav-column ul a:hover {
            color: var(--gold);
        }

.footer-contact {
    text-align: right;
}

    .footer-contact h4 {
        font-family: 'Montserrat', sans-serif;
        font-size: 0.9rem;
        color: var(--gold);
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: 20px;
    }

    .footer-contact p {
        color: var(--text-cream);
        margin-bottom: 10px;
        font-size: 1rem;
    }

    .footer-contact a {
        color: var(--gold);
        text-decoration: none;
    }

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-anthem {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 5, 5, 0.98);
    z-index: 999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

    .mobile-menu.active {
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu a {
        font-family: 'Playfair Display', serif;
        font-size: 2rem;
        color: var(--text-white);
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .mobile-menu a:hover {
            color: var(--gold);
        }

.mobile-menu-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 2rem;
    color: var(--gold);
    cursor: pointer;
}

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-dark);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 100;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

    .scroll-top.visible {
        opacity: 1;
        visibility: visible;
    }

    .scroll-top:hover {
        transform: translateY(-5px);
    }

/* Responsive */
@media (max-width: 1200px) {
    .hero-container {
        gap: 50px;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .book-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        order: 2;
    }

    .hero-visual {
        order: 1;
    }

    .hero-subtitle {
        border-left: none;
        padding-left: 0;
        border-bottom: 4px solid var(--gold);
        padding-bottom: 20px;
    }

    .hero-description {
        max-width: 100%;
    }

    .hero-features {
        align-items: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .book-image {
        width: 280px;
        transform: none;
    }

        .book-image:hover {
            transform: scale(1.05);
        }

    .author-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .author-image-wrapper {
        max-width: 350px;
        margin: 0 auto;
    }

    .author-content {
        text-align: center;
    }

    .author-quote {
        border-left: none;
        padding-left: 0;
        border-top: 4px solid var(--gold);
        padding-top: 20px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-nav {
        flex-direction: column;
        gap: 30px;
    }

    .footer-contact {
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    .hero {
        padding: 100px 20px 60px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .quote-card {
        padding: 40px 30px;
    }

    .quote-text {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .book-features-grid {
        grid-template-columns: 1fr;
    }

    .order-buttons {
        flex-direction: column;
        align-items: center;
    }

    .order-btn {
        width: 100%;
        max-width: 300px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item.large {
        grid-column: span 1;
    }
}

/* Animations on Scroll */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

    .animate-on-scroll.animated {
        opacity: 1;
        transform: translateY(0);
    }


/* =========================
   Inside the Book v2 (Tabs)
========================= */

.inside-v2 {
    position: relative;
    overflow: hidden;
}

.inside-wrap {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* 3 background images collage */
.inside-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.inside-bg-layer {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.14;
    filter: blur(1px);
    transform: scale(1.05);
}

    .inside-bg-layer.bg-1 {
        background-image: url('/images/anfield-stadium.jpg');
        clip-path: polygon(0 0, 55% 0, 45% 100%, 0 100%);
    }

    .inside-bg-layer.bg-2 {
        background-image: url('/images/liverpool-fans.jpg');
        clip-path: polygon(40% 0, 100% 0, 100% 60%, 55% 100%, 30% 100%);
        opacity: 0.12;
    }

    .inside-bg-layer.bg-3 {
        background-image: url('/images/liverpool-legends.jpg');
        clip-path: polygon(60% 35%, 100% 15%, 100% 100%, 45% 100%);
        opacity: 0.10;
    }

.inside-bg-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 40%, rgba(200, 16, 46, 0.22) 0%, transparent 55%), radial-gradient(ellipse at 70% 60%, rgba(139, 0, 0, 0.18) 0%, transparent 55%), linear-gradient(180deg, rgba(13, 5, 5, 0.88), rgba(13, 5, 5, 0.92));
}

.inside-bg-grain {
    position: absolute;
    inset: 0;
    opacity: 0.10;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
    mix-blend-mode: overlay;
}

/* Buttons */
.inside-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    max-width: 1000px;
    margin: 0 auto 26px;
}

.inside-tab {
    border: 1px solid rgba(212, 175, 55, 0.25);
    background: linear-gradient(135deg, rgba(26, 10, 10, 0.75), rgba(18, 8, 8, 0.55));
    color: var(--text-cream);
    padding: 16px 18px;
    border-radius: 16px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.82rem;
    cursor: pointer;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

    .inside-tab::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, transparent, rgba(212,175,55,0.18), transparent);
        transform: translateX(-120%);
        transition: transform 0.55s ease;
    }

    .inside-tab:hover::before {
        transform: translateX(120%);
    }

    .inside-tab:hover {
        transform: translateY(-3px);
        border-color: rgba(212, 175, 55, 0.55);
        box-shadow: 0 14px 35px rgba(0,0,0,0.35);
    }

    .inside-tab.active {
        background: linear-gradient(135deg, rgba(200, 16, 46, 0.92), rgba(139, 0, 0, 0.75));
        color: var(--text-white);
        border-color: rgba(212,175,55,0.75);
        box-shadow: 0 18px 45px rgba(200,16,46,0.18);
    }

/* Panel */
.inside-panel {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(212,175,55,0.25);
    background: linear-gradient(135deg, rgba(26, 10, 10, 0.82), rgba(18, 8, 8, 0.65));
    backdrop-filter: blur(14px);
    box-shadow: 0 25px 70px rgba(0,0,0,0.45);
}

.inside-panel-head {
    padding: 28px 28px 18px;
    border-bottom: 1px solid rgba(212,175,55,0.18);
    position: relative;
}

.inside-panel-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--bg-dark);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 0.75rem;
    margin-bottom: 14px;
}

.inside-panel-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.1rem;
    color: var(--text-white);
    margin-bottom: 6px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.45);
}

.inside-panel-hint {
    color: var(--text-muted);
    font-size: 0.98rem;
}

.inside-panel-body {
    padding: 24px 28px 30px;
    max-height: 520px;
    overflow: auto;
    scroll-behavior: smooth;
}

    /* Nice scrollbar */
    .inside-panel-body::-webkit-scrollbar {
        width: 10px;
    }

    .inside-panel-body::-webkit-scrollbar-thumb {
        background: rgba(212,175,55,0.25);
        border-radius: 999px;
    }

        .inside-panel-body::-webkit-scrollbar-thumb:hover {
            background: rgba(212,175,55,0.4);
        }

/* Excerpts */
.excerpt-list {
    list-style: none;
    display: grid;
    gap: 14px;
}

    .excerpt-list li {
        padding: 16px 16px;
        border-radius: 16px;
        border: 1px solid rgba(212,175,55,0.18);
        background: rgba(0,0,0,0.22);
        color: var(--text-cream);
        line-height: 1.85;
    }

.excerpt-poem {
    margin: 14px 0;
    padding: 14px 16px;
    border-left: 3px solid var(--gold);
    background: rgba(13,5,5,0.45);
    border-radius: 14px;
    color: var(--text-white);
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

.excerpt-stack {
    display: grid;
    gap: 14px;
}

.excerpt-card {
    padding: 18px 18px;
    border-radius: 18px;
    border: 1px solid rgba(212,175,55,0.18);
    background: rgba(0,0,0,0.22);
    color: var(--text-cream);
    line-height: 1.9;
}

.excerpt-letter p {
    margin-bottom: 12px;
}

.excerpt-sign {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--gold);
    margin-top: 4px;
}

/* Smooth content swap animation */
.inside-panel-body.swap-out {
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.18s ease;
}

.inside-panel-body.swap-in {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.28s ease;
}

/* Responsive */
@media (max-width: 992px) {
    .inside-tabs {
        grid-template-columns: repeat(2, 1fr);
    }

    .inside-panel-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .inside-tabs {
        grid-template-columns: 1fr;
    }

    .inside-panel-body {
        max-height: 520px;
        padding: 18px 18px 22px;
    }

    .inside-panel-head {
        padding: 20px 18px 14px;
    }
}