/*
Theme Name: TOKYOPOP Kids
Theme URI: https://tokyopopkids.com
Author: Reynoso Media
Author URI: https://reynosomedia.com
Description: A custom landing page theme for TOKYOPOP Kids imprint - manga and graphic novels for young readers ages 6-12.
Version: 1.5.3
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tokyopop-kids
Tags: one-column, custom-logo, featured-images
*/

/* ===== CSS Variables ===== */
:root {
    --orange: #E8673C;
    --orange-dark: #D55A32;
    --golden: #F9B233;
    --golden-dark: #E5A22D;
    --teal: #4ECDC4;
    --teal-dark: #3DB8B0;
    --purple: #9B59B6;
    --sky: #74B9FF;
    --cream: #FFFAF5;
    --cream-dark: #FFF3E8;
    --charcoal: #2D3436;
    --gray: #636E72;
    --white: #FFFFFF;
}

/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Nunito', sans-serif;
    background: var(--cream);
    color: var(--charcoal);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    width: 100%;
}

/* ===== Navigation ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

/* WordPress admin bar compatibility */
.admin-bar .nav {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar .nav {
        top: 46px;
    }
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.75rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo img {
    height: 45px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--charcoal);
    font-weight: 700;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--orange);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--orange) !important;
    color: white !important;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(232, 103, 60, 0.3);
}

.nav-cta:hover {
    background: var(--orange-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 103, 60, 0.4);
}

.nav-cta::after {
    display: none !important;
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    background: none;
    border: none;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--charcoal);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ===== Hero Section ===== */
.hero {
    display: flex;
    align-items: flex-start;
    padding: 6rem 2rem 3rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -15%;
    width: 60%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(249, 178, 51, 0.2) 0%, transparent 70%);
    animation: gentlePulse 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 50%;
    height: 60%;
    background: radial-gradient(ellipse, rgba(232, 103, 60, 0.15) 0%, transparent 70%);
    animation: gentlePulse 10s ease-in-out infinite reverse;
}

@keyframes gentlePulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-content {
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-logo {
    max-width: 450px;
    margin-bottom: 2rem;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.08));
}

.hero-tagline {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.1rem;
    color: var(--orange);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-tagline::before {
    content: '★';
    color: var(--golden);
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--charcoal);
}

.hero-title span {
    background: linear-gradient(135deg, var(--orange) 0%, var(--golden) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.btn:hover svg {
    transform: translateX(3px);
}

.btn-primary {
    background: var(--orange);
    color: white;
    box-shadow: 0 4px 20px rgba(232, 103, 60, 0.35);
}

.btn-primary svg {
    stroke: white;
}

.btn-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(232, 103, 60, 0.45);
}

.btn-secondary {
    background: white;
    color: var(--charcoal);
    border: 2px solid var(--charcoal);
}

.btn-secondary svg {
    stroke: var(--charcoal);
}

.btn-secondary:hover {
    background: var(--charcoal);
    color: white;
    transform: translateY(-3px);
}

.btn-secondary:hover svg {
    stroke: white;
}

/* ===== Hero Books Visual ===== */
.hero-visual {
    position: relative;
    animation: fadeInUp 1s ease 0.3s backwards;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-visual::before {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(249, 178, 51, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.hero-visual::after {
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(232, 103, 60, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    top: 30%;
    left: 60%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.hero-books {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 450px;
    z-index: 1;
}

.book-stack {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.book {
    position: absolute;
    width: 180px;
    height: 270px;
    border-radius: 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25), 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1), 
                box-shadow 0.6s cubic-bezier(0.25, 0.1, 0.25, 1),
                z-index 0s 0.3s;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
}

.book::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 12px;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.05) 50%, transparent 100%);
}

.book::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.6) 100%);
    pointer-events: none;
}

.book-1 {
    background-image: var(--book-cover-1);
    width: 222px;
    background-size: contain;
    background-color: #fff;
    transform: rotate(-12deg) translateX(-190px);
    z-index: 1;
}

.book-2 {
    background-image: var(--book-cover-2);
    transform: rotate(0deg) translateY(-10px);
    z-index: 2;
}

.book-3 {
    background-image: var(--book-cover-3);
    transform: rotate(12deg) translateX(165px);
    z-index: 3;
}

.book:hover {
    z-index: 10;
    transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1), 
                box-shadow 0.6s cubic-bezier(0.25, 0.1, 0.25, 1),
                z-index 0s 0s;
}

.book-1:hover {
    transform: rotate(-6deg) translateX(-190px) translateY(-15px) scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.28), 0 10px 20px rgba(0, 0, 0, 0.18);
}

.book-2:hover {
    transform: rotate(0deg) translateY(-25px) scale(1.05);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3), 0 12px 24px rgba(0, 0, 0, 0.2);
}

.book-3:hover {
    transform: rotate(6deg) translateX(165px) translateY(-15px) scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.28), 0 10px 20px rgba(0, 0, 0, 0.18);
}

.book-content {
    text-align: center;
    color: white;
    padding: 1rem;
    position: relative;
    z-index: 2;
    width: 100%;
}

.book-content .age-badge {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    padding: 0.35rem 0.9rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    display: inline-block;
    text-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.book-content h4 {
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.book-content p {
    font-size: 0.75rem;
    opacity: 0.9;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* ===== Section Styles ===== */
.section-container {
    max-width: 1100px;
    margin: 0 auto;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-block;
    background: transparent;
    color: var(--orange);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

/* ===== About Section ===== */
.about {
    padding: 6rem 2rem;
    background: white;
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image-container {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-image-placeholder {
    background: linear-gradient(135deg, var(--orange) 0%, var(--golden) 100%);
    padding: 3rem;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.1);
}

.about-image-with-cover {
    padding: 2rem;
    border: none;
    box-shadow: none;
    background: linear-gradient(135deg, var(--orange) 0%, var(--golden) 100%);
    min-height: auto;
    position: relative;
    overflow: hidden;
}

.about-image-with-cover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 8%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.12) 0%, transparent 6%),
        radial-gradient(circle at 40% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 10%),
        radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.18) 0%, transparent 5%),
        radial-gradient(circle at 15% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 12%),
        radial-gradient(circle at 90% 75%, rgba(255, 255, 255, 0.14) 0%, transparent 7%),
        radial-gradient(circle at 50% 15%, rgba(255, 255, 255, 0.1) 0%, transparent 9%),
        radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.06) 0%, transparent 15%),
        radial-gradient(circle at 85% 45%, rgba(255, 255, 255, 0.12) 0%, transparent 6%),
        radial-gradient(circle at 10% 55%, rgba(255, 255, 255, 0.1) 0%, transparent 8%),
        radial-gradient(circle at 60% 85%, rgba(255, 255, 255, 0.08) 0%, transparent 11%),
        radial-gradient(circle at 25% 15%, rgba(255, 255, 255, 0.14) 0%, transparent 5%);
    pointer-events: none;
    z-index: 1;
}

.about-cover-image {
    width: 180px;
    height: auto;
    border-radius: 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.about-image-placeholder .icon-group {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.about-image-placeholder h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.about-image-placeholder p {
    opacity: 0.9;
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--golden);
    color: var(--charcoal);
    padding: 1.2rem 1.5rem;
    border-radius: 20px;
    font-weight: 800;
    font-size: 1rem;
    box-shadow: 0 10px 30px rgba(249, 178, 51, 0.4), 0 0 0 4px var(--white), 0 0 0 6px var(--golden);
    transform: rotate(5deg);
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--charcoal);
}

.about-text p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--cream);
    border-radius: 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--orange);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 600;
}

/* ===== Features Section ===== */
.features {
    padding: 6rem 2rem;
    background: var(--cream);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--golden), var(--teal), var(--purple), var(--sky));
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--orange), var(--golden));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    overflow: hidden;
}

.feature-icon-cover {
    width: 120px;
    height: 170px;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background: none;
}

.feature-icon-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.feature-icon-large {
    width: 140px;
    height: 200px;
    flex-shrink: 0;
}

.feature-card:nth-child(1) .feature-icon:not(.feature-icon-cover) {
    background: linear-gradient(135deg, rgba(232, 103, 60, 0.15), rgba(232, 103, 60, 0.05));
    color: var(--orange);
}

.feature-card:nth-child(2) .feature-icon:not(.feature-icon-cover) {
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.15), rgba(78, 205, 196, 0.05));
    color: var(--teal);
}

.feature-card:nth-child(3) .feature-icon:not(.feature-icon-cover) {
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.15), rgba(155, 89, 182, 0.05));
    color: var(--purple);
}

.feature-card:nth-child(4) .feature-icon:not(.feature-icon-cover) {
    background: linear-gradient(135deg, rgba(249, 178, 51, 0.3), rgba(249, 178, 51, 0.1));
    color: #D4940A;
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    color: var(--charcoal);
}

.feature-description {
    color: var(--gray);
    line-height: 1.7;
}

.feature-card.highlight {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 2.5rem;
    background: linear-gradient(135deg, var(--charcoal) 0%, #1a1a2e 100%);
    color: white;
    text-align: left;
}

.feature-card.highlight .feature-icon {
    margin: 0;
}

.feature-card.highlight .feature-icon-cover {
    width: 140px;
    height: 200px;
    flex-shrink: 0;
    border-radius: 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.feature-card.highlight .feature-title {
    color: white;
    font-size: 1.6rem;
}

.feature-card.highlight .feature-description {
    color: rgba(255, 255, 255, 0.8);
}

.feature-card.highlight::before {
    display: none;
}

/* ===== Trusted Section ===== */
.trusted {
    display: none; /* Hidden for now — remove to re-enable */
    padding: 6rem 2rem;
    background: white;
}

.trusted-content {
    max-width: 800px;
    margin: 3rem auto 0;
    text-align: center;
}

.trusted-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.trusted-logo {
    background: transparent;
    padding: 1rem 2rem;
    border-radius: 16px;
}

.trusted-logo img {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.trusted-logo:hover img {
    transform: scale(1.05);
}

.trusted-quote {
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
    padding: 3rem;
    border-radius: 24px;
    position: relative;
}

.trusted-quote::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 5rem;
    color: var(--orange);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.trusted-quote blockquote {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--charcoal);
    margin: 0 0 1rem 0;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.trusted-quote cite {
    color: var(--gray);
    font-size: 0.95rem;
    font-style: normal;
}

/* ===== Disney Manga Section ===== */
.disney-manga {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, white 0%, var(--cream) 100%);
}

.disney-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.disney-books {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    padding: 2rem 1rem 3rem;
    max-width: 780px;
}

.disney-book {
    flex: 0 0 auto;
    width: 140px;
    transition: all 0.4s ease;
    border-radius: 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), 0 15px 40px rgba(0, 0, 0, 0.1);
}

.disney-book:nth-child(1) {
    transform: rotate(-3deg);
}

.disney-book:nth-child(2) {
    transform: translateY(-15px);
    z-index: 2;
}

.disney-book:nth-child(3) {
    transform: translateY(-15px);
    z-index: 2;
}

.disney-book:nth-child(4) {
    transform: translateY(-15px);
    z-index: 2;
}

.disney-book:nth-child(5) {
    transform: rotate(3deg);
}

.disney-book:hover {
    transform: translateY(-10px) scale(1.05);
    z-index: 3;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2), 0 25px 50px rgba(0, 0, 0, 0.12);
}

.disney-book img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
}

.disney-text h3 {
    font-size: 2rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.disney-text p {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.disney-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.disney-features li {
    padding: 0.5rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: var(--gray);
}

.disney-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: bold;
}

/* ===== Age Groups Section ===== */
.age-groups {
    padding: 6rem 2rem;
    background: white;
}

.age-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.age-card {
    text-align: center;
    padding: 3rem 2rem;
    border-radius: 24px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.age-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.08;
    transition: opacity 0.4s ease;
}

.age-card:hover::before {
    opacity: 0.15;
}

.age-card:nth-child(1) {
    background: linear-gradient(180deg, rgba(232, 103, 60, 0.1) 0%, rgba(232, 103, 60, 0.02) 100%);
}
.age-card:nth-child(1)::before {
    background: var(--orange);
}

.age-card:nth-child(2) {
    background: linear-gradient(180deg, rgba(249, 178, 51, 0.1) 0%, rgba(249, 178, 51, 0.02) 100%);
}
.age-card:nth-child(2)::before {
    background: var(--golden);
}

.age-card:nth-child(3) {
    background: linear-gradient(180deg, rgba(78, 205, 196, 0.1) 0%, rgba(78, 205, 196, 0.02) 100%);
}
.age-card:nth-child(3)::before {
    background: var(--teal);
}

.age-card:nth-child(4) {
    background: linear-gradient(180deg, rgba(232, 103, 60, 0.1) 0%, rgba(232, 103, 60, 0.02) 100%);
}
.age-card:nth-child(4)::before {
    background: var(--orange);
}

.age-card:nth-child(5) {
    background: linear-gradient(180deg, rgba(249, 178, 51, 0.1) 0%, rgba(249, 178, 51, 0.02) 100%);
}
.age-card:nth-child(5)::before {
    background: var(--golden);
}

.age-card:nth-child(6) {
    background: linear-gradient(180deg, rgba(78, 205, 196, 0.1) 0%, rgba(78, 205, 196, 0.02) 100%);
}
.age-card:nth-child(6)::before {
    background: var(--teal);
}

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

.age-icon {
    width: 120px;
    height: 170px;
    margin: 0 auto 1.5rem;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.age-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.age-range {
    font-size: 1.3rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    color: var(--orange);
}

.age-label {
    color: var(--gray);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.age-formats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.format-tag {
    background: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* ===== CTA Section ===== */
.cta {
    padding: 6rem 2rem 3rem;
    background: linear-gradient(135deg, var(--charcoal) 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(232, 103, 60, 0.1) 0%, transparent 50%);
    animation: rotateBg 30s linear infinite;
}

@keyframes rotateBg {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
}

.cta-title span {
    background: linear-gradient(90deg, var(--orange), var(--golden));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn-cta {
    background: var(--orange);
    color: white;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

.btn-cta svg {
    stroke: white;
}

.btn-cta:hover {
    background: var(--orange-dark);
}

/* Klaviyo Inline Form */
.klaviyo-inline-form {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.klaviyo-form-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.klaviyo-form-row {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
}

.klaviyo-inline-form .klaviyo-input,
input.klaviyo-input[type="email"] {
    flex: 1;
    padding: 0.9rem 1.2rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
    -webkit-appearance: none;
    appearance: none;
}

.klaviyo-inline-form .klaviyo-input::placeholder,
input.klaviyo-input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.klaviyo-inline-form .klaviyo-input:focus,
input.klaviyo-input[type="email"]:focus {
    border-color: var(--orange);
}

.klaviyo-submit {
    white-space: nowrap;
    padding: 0.9rem 1.8rem !important;
    font-size: 1rem !important;
}

.klaviyo-message {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    min-height: 1.4em;
}

.klaviyo-success {
    color: var(--teal);
}

.klaviyo-error {
    color: #ff6b6b;
}

.klaviyo-consent {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    max-width: 500px;
    margin: 0.75rem auto 0;
    cursor: pointer;
    text-align: left;
}

.klaviyo-consent input[type="checkbox"] {
    margin-top: 0.2rem;
    flex-shrink: 0;
    accent-color: var(--orange);
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.klaviyo-consent span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    line-height: 1.4;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline svg {
    stroke: white;
}

.btn-outline:hover {
    background: white;
    color: var(--charcoal);
    border-color: white;
}

.btn-outline:hover svg {
    stroke: var(--charcoal);
}

/* ===== Footer ===== */
.site-footer {
    background: #0d0d14;
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-main {
    display: flex;
    justify-content: center;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-brand img {
    height: 80px;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

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

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--orange);
    transform: translateY(-3px);
}

.footer-links h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-links ul {
    list-style: none;
}

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

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

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

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

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-logo {
        margin: 0 auto 2rem;
    }

    .hero-tagline {
        justify-content: center;
    }

    .hero-description {
        margin: 0 auto 1.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
    }

    .hero-visual::before {
        width: 280px;
        height: 280px;
    }

    .hero-visual::after {
        width: 220px;
        height: 220px;
    }

    .hero-books {
        min-height: auto;
        height: 280px;
        margin-bottom: 1rem;
    }

    .book-stack {
        transform: scale(0.7);
        height: 300px;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .about-image {
        max-width: 350px;
        margin: 0 auto;
    }

    .about-badge {
        bottom: -15px;
        right: 10px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card.highlight {
        flex-direction: column;
        text-align: center;
    }

    .feature-card.highlight .feature-icon {
        margin: 0 auto 1.5rem;
    }

    .feature-card.highlight .feature-icon-cover {
        width: 120px;
        height: 170px;
    }

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

    .feature-icon {
        margin: 0 auto 1.5rem;
    }

    .age-cards {
        grid-template-columns: 1fr;
    }

    .disney-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .disney-books {
        order: -1;
    }

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

    .disney-features {
        display: inline-block;
        text-align: left;
    }

    .disney-text .btn {
        margin: 0 auto;
    }

    .feature-icon-large {
        width: 100px;
        height: 140px;
        margin: 0 auto 1.5rem;
    }

}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 4.5rem 1.5rem 1.5rem;
    }

    .about,
    .features,
    .disney-manga,
    .trusted,
    .age-groups,
    .cta {
        padding: 4rem 1.5rem 2rem;
        max-width: 100vw;
        overflow: hidden;
    }

    .hero-visual::before {
        width: 220px;
        height: 220px;
    }

    .hero-visual::after {
        width: 180px;
        height: 180px;
        top: 25%;
        left: 65%;
    }

    .hero-books {
        height: 240px;
        margin-bottom: 0.5rem;
    }

    .book-stack {
        transform: scale(0.6);
        height: 280px;
    }

    .hero-logo {
        max-width: 280px;
        margin-bottom: 1rem;
    }

    .hero-tagline {
        margin-bottom: 0.75rem;
    }

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

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .cta-title {
        font-size: 2rem;
    }

    .klaviyo-form-row {
        flex-direction: column;
    }


    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .trusted-quote blockquote {
        font-size: 1.05rem;
    }

    .about-cover-image {
        width: 150px;
    }

    .about-badge {
        position: relative;
        bottom: auto;
        right: auto;
        display: inline-block;
        margin-top: 1rem;
        transform: rotate(0deg);
    }

    .about-image-container {
        text-align: center;
    }

    .feature-card.highlight {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }

    .feature-card.highlight .feature-icon-cover {
        width: 120px;
        height: 170px;
        margin: 0 auto 1.5rem;
    }

    .feature-card.highlight .feature-content {
        text-align: center;
    }

    .disney-book {
        width: 80px;
    }

    .disney-books {
        gap: 0.5rem;
        justify-content: center;
        width: 100%;
        padding: 0 0.5rem;
        box-sizing: border-box;
    }

    .disney-book:nth-child(1),
    .disney-book:nth-child(5) {
        transform: rotate(0);
    }

    .disney-book:nth-child(2),
    .disney-book:nth-child(3),
    .disney-book:nth-child(4) {
        transform: translateY(-10px);
    }

    .disney-text h3 {
        font-size: 1.6rem;
    }

    .disney-manga .section-container {
        padding: 0;
        max-width: 100%;
        overflow: hidden;
    }
}

/* ===== Animation Classes ===== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}
