:root {
    --primary-black: #000000;
    --secondary-black: #0a0a0a;
    --dark-blue: #0f1419;
    --pure-white: #ffffff;
    --off-white: #f8f9fa;
    --gray-dark: #1a1a1a;
    --gray-medium: #333333;
    --accent-white: #ffffff;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--pure-white);
    background-color: var(--primary-black);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--primary-black);
}

::-webkit-scrollbar-thumb {
    background: var(--pure-white);
    border-radius: 4px;
}

/* Navigation */
.navbar {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-medium);
    transition: all 0.3s ease;
    padding: 1.5rem 0;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.98);
    padding: 1rem 0;
}

.navbar-brand {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--pure-white) !important;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.navbar-nav .nav-link {
    color: var(--pure-white) !important;
    font-weight: 600;
    margin: 0 1.5rem;
    position: relative;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.navbar-nav .nav-link:hover {
    color: var(--off-white) !important;
}

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

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

/* Hero Section with Carousel */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(15, 20, 25, 0.7) 50%,
        rgba(0, 0, 0, 0.9) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    animation: heroFadeIn 2s ease;
}

.hero-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.hero-indicator {
    width: 12px;
    height: 12px;
    border: 2px solid var(--pure-white);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-indicator.active {
    background: var(--pure-white);
    transform: scale(1.2);
}

.hero-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--pure-white);
    z-index: 10;
    transform-origin: left;
    animation: progressBar 6s linear infinite;
}

@keyframes progressBar {
    0% { transform: scaleX(0); }
    100% { transform: scaleX(1); }
}

@keyframes heroFadeIn {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 6rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--pure-white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    line-height: 0.9;
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--off-white);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.hero-tagline {
    font-size: 1.3rem;
    margin-bottom: 4rem;
    font-style: italic;
    color: var(--pure-white);
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-custom {
    background: var(--pure-white);
    border: 2px solid var(--pure-white);
    color: var(--primary-black);
    font-weight: 700;
    padding: 1.2rem 3rem;
    border-radius: 0;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Oswald', sans-serif;
    text-decoration: none;
}

.btn-primary-custom:hover {
    background: transparent;
    color: var(--pure-white);
    transform: translateY(-3px);
}

.btn-secondary-custom {
    background: transparent;
    border: 2px solid var(--pure-white);
    color: var(--pure-white);
    font-weight: 700;
    padding: 1.2rem 3rem;
    border-radius: 0;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Oswald', sans-serif;
    text-decoration: none;
}

.btn-secondary-custom:hover {
    background: var(--pure-white);
    color: var(--primary-black);
    transform: translateY(-3px);
}

/* Shows & Podcasts Section */
.shows-section {
    background: var(--secondary-black);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.shows-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.shows-header h2 {
    font-size: 4rem;
    color: var(--pure-white);
    margin-bottom: 1rem;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.shows-header p {
    font-size: 1.3rem;
    color: var(--off-white);
    margin-bottom: 3rem;
    font-weight: 300;
}

.shows-navigation {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.shows-nav-btn {
    width: 50px;
    height: 50px;
    background: transparent;
    border: 2px solid var(--pure-white);
    color: var(--pure-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.shows-nav-btn:hover {
    background: var(--pure-white);
    color: var(--primary-black);
    transform: scale(1.1);
}

.shows-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.shows-nav-btn:disabled:hover {
    background: transparent;
    color: var(--pure-white);
    transform: none;
}

.shows-container {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.shows-wrapper {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
    padding: 0 2rem;
}

.show-card {
    min-width: 300px;
    background: var(--gray-dark);
    border: 2px solid var(--gray-medium);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
}

.show-card:hover {
    transform: translateY(-15px) scale(1.03);
    border-color: var(--pure-white);
    box-shadow: 0 25px 50px rgba(255, 255, 255, 0.15);
}

.show-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.show-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.2);
    transition: all 0.4s ease;
}

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

.show-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

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

.show-overlay i {
    font-size: 3rem;
    color: var(--pure-white);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.show-card:hover .show-overlay i {
    transform: scale(1);
}

.show-info {
    padding: 2rem;
    text-align: center;
}

.show-info h4 {
    color: var(--pure-white);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.show-info p {
    color: var(--off-white);
    font-size: 0.9rem;
    margin: 0;
    font-weight: 300;
}

/* Parallax and Scroll Animations */
.parallax-element {
    transition: transform 0.1s ease-out;
}

.scroll-fade {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.scroll-fade.animate {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.scroll-slide-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 1s ease;
}

.scroll-slide-left.animate {
    opacity: 1 !important;
    transform: translateX(0) !important;
}

.scroll-slide-right {
    opacity: 0;
    transform: translateX(100px);
    transition: all 1s ease;
}

.scroll-slide-right.animate {
    opacity: 1 !important;
    transform: translateX(0) !important;
}

.scroll-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s ease;
}

.scroll-scale.animate {
    opacity: 1 !important;
    transform: scale(1) !important;
}

/* Enhanced Hover Effects */
.dynamic-hover {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dynamic-hover:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1);
}

/* Floating Animation */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

/* Text Reveal Animation */
.text-reveal {
    overflow: hidden;
    position: relative;
    opacity: 1; /* Ensure text stays visible */
}

.text-reveal::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-black);
    transform: translateX(-100%);
    z-index: 1;
}

.text-reveal.animate::after {
    animation: textReveal 1.5s ease forwards;
}

@keyframes textReveal {
    0% { transform: translateX(-100%); }
    50% { transform: translateX(0%); }
    100% { transform: translateX(100%); opacity: 0; }
}

/* Pulse Animation for CTAs */
.pulse-glow {
    animation: pulseGlow 2s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 20px rgba(255, 255, 255, 0.3); }
    100% { box-shadow: 0 0 40px rgba(255, 255, 255, 0.6); }
}

/* Stagger Animation */
.stagger-animation {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.stagger-animation.animate {
    opacity: 1;
    transform: translateY(0);
}

.stagger-animation:nth-child(1) { transition-delay: 0.1s; }
.stagger-animation:nth-child(2) { transition-delay: 0.2s; }
.stagger-animation:nth-child(3) { transition-delay: 0.3s; }
.stagger-animation:nth-child(4) { transition-delay: 0.4s; }

/* Background Parallax */
.bg-parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Mouse Tracking Elements */
.mouse-track {
    transition: transform 0.1s ease;
}

/* Assessment Quiz Banner */
.quiz-banner {
    background: var(--dark-blue);
    padding: 4rem 0;
    text-align: center;
    border-top: 3px solid var(--pure-white);
    border-bottom: 3px solid var(--pure-white);
}

.quiz-content h3 {
    color: var(--pure-white);
    margin-bottom: 2rem;
    font-size: 3rem;
}

.quiz-content p {
    margin-bottom: 2rem;
    color: var(--off-white);
    font-size: 1.2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Section Styling */
.section-dark {
    background: var(--primary-black);
    padding: 8rem 0;
}

.section-blue {
    background: var(--pure-white) !important;
    padding: 8rem 0;
}

.section-blue .section-title h2 {
    color: var(--primary-black) !important;
}

.section-blue .section-title p {
    color: var(--gray-medium) !important;
}

.section-blue .quote-block {
    background: var(--primary-black);
    border-left: 5px solid var(--primary-black);
    color: var(--pure-white);
}

.section-blue .quote-block p {
    color: var(--pure-white) !important;
}

.section-title {
    text-align: center;
    margin-bottom: 6rem;
}

.section-title h2 {
    font-size: 4rem;
    color: var(--pure-white);
    margin-bottom: 2rem;
    line-height: 0.9;
}

.section-title p {
    font-size: 1.3rem;
    color: var(--off-white);
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
}

/* Large Text Blocks */
.large-text {
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.3;
    margin: 3rem 0;
    text-align: center;
}

.huge-text {
    font-size: 4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
    margin: 4rem 0;
    font-family: 'Oswald', sans-serif;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.about-text h3 {
    color: var(--pure-white);
    margin-bottom: 2rem;
    font-size: 3rem;
    text-align: center;
}

.about-text p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
    line-height: 1.8;
    text-align: center;
    color: var(--off-white);
}

/* Services Section */
.service-card {
    background: var(--pure-white);
    border: 2px solid var(--gray-medium);
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 2rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    border-color: var(--primary-black);
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-card-image {
    height: 250px;
    overflow: hidden;
    border-bottom: 2px solid var(--primary-black);
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.2);
    transition: transform 0.4s ease;
}

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

.service-card-content {
    padding: 3rem 2rem;
    text-align: center;
}

.service-card-content h4 {
    color: var(--primary-black);
    margin-bottom: 2rem;
    font-size: 2rem;
}

.service-card-content p {
    color: var(--gray-medium);
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Featured Story Section */
.story-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.story-text h3 {
    color: var(--pure-white);
    font-size: 4rem;
    margin-bottom: 3rem;
    line-height: 0.9;
}

.story-text p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    color: var(--off-white);
}

.story-highlight {
    background: var(--gray-dark);
    padding: 3rem;
    border: 2px solid var(--pure-white);
    margin: 4rem auto;
    max-width: 800px;
}

.story-highlight p {
    font-style: italic;
    margin: 0;
    color: var(--pure-white);
    font-size: 1.5rem;
    font-weight: 300;
}

/* Testimonials */
.testimonial-card {
    background: var(--gray-dark);
    padding: 4rem 2rem;
    border: 2px solid var(--gray-medium);
    text-align: center;
    height: 100%;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--pure-white);
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.7;
    color: var(--off-white);
}

.testimonial-author {
    color: var(--pure-white);
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Books Section */
.books-section {
    margin: 6rem 0;
    position: relative;
    overflow: hidden;
}

.books-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.books-header h3 {
    font-size: 3rem;
    color: var(--pure-white);
    margin-bottom: 1rem;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.books-header p {
    font-size: 1.2rem;
    color: var(--off-white);
    margin-bottom: 3rem;
    font-weight: 300;
}

.books-navigation {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.books-nav-btn {
    width: 50px;
    height: 50px;
    background: transparent;
    border: 2px solid var(--pure-white);
    color: var(--pure-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    border-radius: 8px;
}

.books-nav-btn:hover {
    background: var(--pure-white);
    color: var(--primary-black);
    transform: scale(1.1);
}

.books-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.books-nav-btn:disabled:hover {
    background: transparent;
    color: var(--pure-white);
    transform: none;
}

.books-container {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.books-wrapper {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
    padding: 0 2rem;
}

.book-card {
    min-width: 240px;
    width: 240px;
    background: var(--gray-dark);
    border: 2px solid var(--gray-medium);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.book-card:hover {
    transform: translateY(-15px) scale(1.05);
    border-color: var(--pure-white);
    box-shadow: 0 25px 50px rgba(255, 255, 255, 0.15);
}

.book-image {
    position: relative;
    height: 320px;
    overflow: hidden;
    border-radius: 18px 18px 0 0;
}

.book-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
    filter: brightness(0.9) contrast(1.1);
}

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

.book-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 18px 18px 0 0;
}

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

.book-overlay i {
    font-size: 3rem;
    color: var(--pure-white);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.book-card:hover .book-overlay i {
    transform: scale(1);
}

.book-info {
    padding: 2rem 1.5rem;
    text-align: center;
    background: var(--gray-dark);
    border-radius: 0 0 18px 18px;
}

.book-info h5 {
    color: var(--pure-white);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.book-info p {
    color: var(--off-white);
    font-size: 0.9rem;
    margin: 0;
    font-weight: 300;
    line-height: 1.4;
}
.resource-card {
    background: var(--gray-dark);
    border: 2px solid var(--gray-medium);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.resource-card:hover {
    border-color: var(--pure-white);
    transform: translateY(-5px);
}

.resource-card-image {
    height: 250px;
    overflow: hidden;
    border-bottom: 2px solid var(--pure-white);
}

.resource-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.2);
    transition: transform 0.4s ease;
}

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

.resource-content {
    padding: 3rem 2rem;
    text-align: center;
}

.resource-content h5 {
    color: var(--pure-white);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.resource-content p {
    color: var(--off-white);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: var(--primary-black);
    padding: 6rem 0 3rem;
    border-top: 3px solid var(--pure-white);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-section h5 {
    color: var(--pure-white);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.footer-section a {
    color: var(--off-white);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-section a:hover {
    color: var(--pure-white);
}

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

.social-links a {
    width: 50px;
    height: 50px;
    background: transparent;
    border: 2px solid var(--pure-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--pure-white);
    color: var(--primary-black);
}

.footer-bottom {
    border-top: 1px solid var(--gray-medium);
    padding-top: 3rem;
    text-align: center;
    color: var(--off-white);
}

/* Quote Blocks */
.quote-block {
    background: var(--gray-dark);
    border-left: 5px solid var(--pure-white);
    padding: 3rem;
    margin: 4rem 0;
    text-align: center;
}

.quote-block p {
    font-size: 1.8rem;
    font-style: italic;
    color: var(--pure-white);
    margin: 0;
    font-weight: 300;
}

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

.fade-in-up {
    animation: fadeInUp 1s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .section-title h2 {
        font-size: 2.5rem;
    }

    .huge-text {
        font-size: 2.5rem;
    }

    .large-text {
        font-size: 1.8rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .story-text h3 {
        font-size: 2.5rem;
    }

    .quiz-content h3 {
        font-size: 2rem;
    }

    .shows-header h2 {
        font-size: 2.5rem;
    }

    .show-card {
        min-width: 250px;
    }

    .shows-wrapper {
        padding: 0 1rem;
    }
}

/* Floating elements */
.floating-element {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.chat-button {
    width: 60px;
    height: 60px;
    background: var(--pure-white);
    border: 2px solid var(--pure-white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-black);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.chat-button:hover {
    background: transparent;
    color: var(--pure-white);
}

/* Image Styling */
.about-image-container,
.story-image-container,
.service-image-container,
.resource-hero-image {
    position: relative;
    overflow: hidden;
    border: 3px solid var(--pure-white);
}

.about-main-image,
.about-secondary-image,
.story-main-image,
.story-secondary-image,
.service-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.4s ease;
    filter: grayscale(100%) contrast(1.2);
}

.about-image-container:hover img,
.story-image-container:hover img,
.service-image-container:hover img {
    transform: scale(1.05);
}

.resource-hero-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.2);
}

/* Ripple Animation */
@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.hero-content h1 {
    animation-delay: 0.5s;
}

.hero-content .hero-subtitle {
    animation-delay: 0.8s;
}

.hero-content .hero-tagline {
    animation-delay: 1.1s;
}

.hero-content .cta-buttons {
    animation-delay: 1.4s;
}

/* Book Modal */
.book-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.book-modal.show {
    opacity: 1;
    visibility: visible;
}

.book-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.book-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: var(--gray-dark);
    border: 2px solid var(--pure-white);
    border-radius: 20px;
    max-width: 800px;
    width: 90%;
    max-height: 80vh;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.book-modal.show .book-modal-content {
    transform: translate(-50%, -50%) scale(1);
}

.book-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--pure-white);
    border: none;
    border-radius: 50%;
    color: var(--primary-black);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.book-modal-close:hover {
    background: var(--primary-black);
    color: var(--pure-white);
    transform: scale(1.1);
}

.book-modal-body {
    display: flex;
    gap: 3rem;
    padding: 3rem;
    align-items: center;
}

.book-modal-image {
    flex: 0 0 280px;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.book-modal-info {
    flex: 1;
    color: var(--pure-white);
}

.book-modal-info h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    color: var(--pure-white);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
}

.book-modal-description {
    font-size: 1.3rem;
    color: var(--off-white);
    line-height: 1.7;
    margin-bottom: 3rem;
    font-weight: 300;
}

.book-modal-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.book-modal-actions .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* Mobile responsive for modal */
@media (max-width: 768px) {
    .book-modal-content {
        width: 95%;
        max-height: 90vh;
    }
    
    .book-modal-body {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem;
        text-align: center;
    }
    
    .book-modal-image {
        flex: none;
        width: 200px;
        height: 280px;
        margin: 0 auto;
    }
    
    .book-modal-info h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .book-modal-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .book-modal-actions {
        justify-content: center;
    }
    
    .book-modal-close {
        top: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* Book Modal Animation Enhancement */
@keyframes modalSlideIn {
    from {
        transform: translate(-50%, -50%) scale(0.8) rotate(5deg);
        opacity: 0;
    }
    to {
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
        opacity: 1;
    }
}

.book-modal.show .book-modal-content {
    animation: modalSlideIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}