/* ============================================
   HOPE FOR KIDS — Design System & Styles
   Kawaii-Inspired Christian Kids Ministry
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Quicksand:wght@400;500;600;700&display=swap');

/* --- Design Tokens (CSS Custom Properties) --- */
:root {
    /* Primary Palette — soft kawaii pastels */
    --color-pink: #FFB6C1;
    --color-pink-deep: #FF8FAB;
    --color-pink-light: #FFD6E0;
    --color-lavender: #C3AED6;
    --color-lavender-light: #E8DAFB;
    --color-sky: #A8D8EA;
    --color-sky-light: #D4F0FF;
    --color-mint: #B5EAD7;
    --color-mint-light: #DAFCE8;
    --color-peach: #FFDAC1;
    --color-yellow: #FFF5BA;
    --color-yellow-warm: #FFE066;
    --color-coral: #FF6F61;

    /* Neutrals */
    --color-white: #FFFFFF;
    --color-cream: #FFF9F0;
    --color-gray-100: #F7F5F2;
    --color-gray-200: #E8E4DF;
    --color-gray-300: #C5C0BA;
    --color-gray-500: #8A8580;
    --color-gray-700: #5A5550;
    --color-dark: #3D3530;

    /* Semantic */
    --color-bg: #FFF5F7;
    --color-surface: var(--color-white);
    --color-text: var(--color-dark);
    --color-text-muted: var(--color-gray-500);
    --color-accent: var(--color-pink-deep);
    --color-accent-hover: #FF6B8A;

    /* Gradients */
    --gradient-hero: linear-gradient(135deg, #FFD6E0 0%, #E8DAFB 35%, #D4F0FF 70%, #DAFCE8 100%);
    --gradient-card: linear-gradient(145deg, #FFFFFF 0%, #FFF5F7 100%);
    --gradient-btn: linear-gradient(135deg, #FF8FAB 0%, #C3AED6 100%);
    --gradient-btn-hover: linear-gradient(135deg, #FF6B8A 0%, #A48BC6 100%);
    --gradient-footer: linear-gradient(135deg, #3D3530 0%, #5A4A42 100%);

    /* Typography */
    --font-heading: 'Nunito', 'Segoe UI', sans-serif;
    --font-body: 'Quicksand', 'Segoe UI', sans-serif;

    /* Sizes */
    --fs-xs: 0.75rem;
    --fs-sm: 0.875rem;
    --fs-base: 1rem;
    --fs-md: 1.125rem;
    --fs-lg: 1.25rem;
    --fs-xl: 1.5rem;
    --fs-2xl: 2rem;
    --fs-3xl: 2.5rem;
    --fs-4xl: 3.25rem;
    --fs-5xl: 4rem;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* Borders & Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(61, 53, 48, 0.06);
    --shadow-md: 0 4px 16px rgba(61, 53, 48, 0.08);
    --shadow-lg: 0 8px 32px rgba(61, 53, 48, 0.10);
    --shadow-xl: 0 16px 48px rgba(61, 53, 48, 0.12);
    --shadow-glow: 0 0 30px rgba(255, 143, 171, 0.25);
    --shadow-card: 0 8px 30px rgba(195, 174, 214, 0.15);

    /* Transitions */
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --duration-fast: 200ms;
    --duration-base: 350ms;
    --duration-slow: 600ms;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
}

img,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

ul,
ol {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.2;
}

/* --- Utility Classes --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.section-padding {
    padding: var(--space-4xl) 0;
}

.text-center {
    text-align: center;
}

.text-gradient {
    background: var(--gradient-btn);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Floating Decorations (Clouds, Stars, Hearts) --- */
.floating-decor {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.cloud {
    width: 120px;
    height: 50px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50px;
    position: absolute;
    animation: floatCloud 18s ease-in-out infinite;
}

.cloud::before,
.cloud::after {
    content: '';
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    position: absolute;
}

.cloud::before {
    width: 55px;
    height: 55px;
    top: -25px;
    left: 18px;
}

.cloud::after {
    width: 40px;
    height: 40px;
    top: -18px;
    right: 18px;
}

.cloud-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.cloud-2 {
    top: 25%;
    right: 8%;
    animation-delay: -6s;
    width: 90px;
    height: 38px;
}

.cloud-3 {
    top: 60%;
    left: 3%;
    animation-delay: -12s;
    width: 80px;
    height: 34px;
}

@keyframes floatCloud {

    0%,
    100% {
        transform: translateX(0) translateY(0);
    }

    25% {
        transform: translateX(30px) translateY(-10px);
    }

    50% {
        transform: translateX(15px) translateY(8px);
    }

    75% {
        transform: translateX(-15px) translateY(-5px);
    }
}

/* Floating hearts */
.floating-heart {
    position: absolute;
    font-size: 1.2rem;
    opacity: 0.3;
    animation: floatHeart 12s ease-in-out infinite;
}

.floating-heart:nth-child(1) {
    top: 15%;
    left: 12%;
    animation-delay: 0s;
}

.floating-heart:nth-child(2) {
    top: 40%;
    right: 10%;
    animation-delay: -3s;
    font-size: 0.9rem;
}

.floating-heart:nth-child(3) {
    top: 70%;
    left: 8%;
    animation-delay: -7s;
    font-size: 1.5rem;
}

.floating-heart:nth-child(4) {
    top: 30%;
    right: 20%;
    animation-delay: -10s;
    font-size: 0.7rem;
}

@keyframes floatHeart {

    0%,
    100% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0.3;
    }

    25% {
        transform: translateY(-20px) rotate(10deg) scale(1.1);
        opacity: 0.5;
    }

    50% {
        transform: translateY(-8px) rotate(-5deg) scale(1);
        opacity: 0.35;
    }

    75% {
        transform: translateY(-25px) rotate(8deg) scale(1.15);
        opacity: 0.45;
    }
}

/* Floating stars */
.sparkle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--color-yellow-warm);
    border-radius: 50%;
    animation: sparkle 3s ease-in-out infinite;
}

.sparkle:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.sparkle:nth-child(2) {
    top: 35%;
    right: 15%;
    animation-delay: -1s;
}

.sparkle:nth-child(3) {
    top: 55%;
    left: 15%;
    animation-delay: -2s;
}

.sparkle:nth-child(4) {
    top: 75%;
    right: 25%;
    animation-delay: -0.5s;
}

.sparkle:nth-child(5) {
    top: 10%;
    right: 30%;
    animation-delay: -1.5s;
}

@keyframes sparkle {

    0%,
    100% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        transform: scale(1.8);
        opacity: 0.8;
    }
}

/* --- HEADER / NAVBAR --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--space-md) 0;
    background: rgba(255, 245, 247, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 182, 193, 0.2);
    transition: all var(--duration-base) var(--ease-smooth);
}

.navbar.scrolled {
    padding: var(--space-sm) 0;
    box-shadow: var(--shadow-md);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.navbar__logo {
    height: 42px;
    width: auto;
    transition: transform var(--duration-base) var(--ease-bounce);
}

.navbar__logo:hover {
    transform: scale(1.05) rotate(-2deg);
}

.navbar__center-img {
    position: absolute;
    left: 50%;
    top: 60%;
    transform: translate(-50%, -50%);
    height: 32px;
    width: auto;
    transition: transform var(--duration-base) var(--ease-bounce), filter var(--duration-base) var(--ease-smooth);
    filter: drop-shadow(0 2px 6px rgba(195, 174, 214, 0.3));
}

.navbar__center-img:hover {
    transform: translate(-50%, -50%) scale(1.1);
    filter: drop-shadow(0 4px 12px rgba(255, 143, 171, 0.4));
}

.navbar__links {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.navbar__link {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: var(--fs-sm);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-gray-700);
    position: relative;
    padding: var(--space-xs) 0;
    transition: color var(--duration-fast) var(--ease-smooth);
}

.navbar__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-btn);
    border-radius: 2px;
    transition: width var(--duration-base) var(--ease-smooth);
}

.navbar__link:hover {
    color: var(--color-accent);
}

.navbar__link:hover::after {
    width: 100%;
}

.navbar__instagram {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--gradient-btn);
    color: var(--color-white);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: var(--fs-sm);
    transition: all var(--duration-base) var(--ease-smooth);
    box-shadow: var(--shadow-sm);
}

.navbar__instagram:hover {
    background: var(--gradient-btn-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.navbar__instagram svg {
    width: 18px;
    height: 18px;
    display: inline-block;
}

.navbar__social-btn {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-white);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: var(--fs-sm);
    transition: all var(--duration-base) var(--ease-smooth);
    box-shadow: var(--shadow-sm);
}

.navbar__social-btn svg {
    width: 18px;
    height: 18px;
    display: inline-block;
    flex-shrink: 0;
}

.navbar__social-btn--ig {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.navbar__social-btn--ig:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(220, 39, 67, 0.35);
    filter: brightness(1.1);
}

.navbar__social-btn--tg {
    background: linear-gradient(135deg, #2AABEE 0%, #229ED9 100%);
}

.navbar__social-btn--tg:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(42, 171, 238, 0.35);
    filter: brightness(1.1);
}

/* Mobile menu */
.navbar__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
}

.navbar__burger span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--color-dark);
    border-radius: 3px;
    transition: all var(--duration-base) var(--ease-smooth);
}

.navbar__burger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(5.5px) translateX(5.5px);
}

.navbar__burger.active span:nth-child(2) {
    opacity: 0;
}

.navbar__burger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-5.5px) translateX(5.5px);
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    overflow: hidden;
    padding-top: 80px;
}

.hero__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4xl);
    position: relative;
    z-index: 1;
}

.hero__content {
    flex: 1;
    max-width: 560px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: var(--fs-xs);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    margin-bottom: var(--space-lg);
    box-shadow: var(--shadow-sm);
    animation: fadeSlideUp 0.8s var(--ease-smooth) both;
}

.hero__badge .emoji {
    font-size: 1rem;
}

.hero__title {
    font-size: var(--fs-4xl);
    font-weight: 900;
    color: var(--color-dark);
    margin-bottom: var(--space-md);
    animation: fadeSlideUp 0.8s var(--ease-smooth) 0.15s both;
}

.hero__title span {
    display: block;
}

.hero__subtitle {
    font-family: var(--font-body);
    font-size: var(--fs-xl);
    color: var(--color-gray-700);
    font-weight: 600;
    margin-bottom: var(--space-md);
    animation: fadeSlideUp 0.8s var(--ease-smooth) 0.3s both;
}

.hero__tagline {
    font-size: var(--fs-md);
    color: var(--color-gray-500);
    margin-bottom: var(--space-2xl);
    animation: fadeSlideUp 0.8s var(--ease-smooth) 0.45s both;
}

.hero__tagline .dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--color-pink);
    border-radius: 50%;
    margin: 0 10px;
    vertical-align: middle;
}

.hero__actions {
    display: flex;
    gap: var(--space-md);
    animation: fadeSlideUp 0.8s var(--ease-smooth) 0.6s both;
}

.hero__visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero__image-wrapper {
    position: relative;
    width: 400px;
    height: 400px;
}

.hero__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(195, 174, 214, 0.3));
    animation: gentleBounce 4s ease-in-out infinite;
}

.hero__image-bg {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(255, 214, 224, 0.5) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 6s ease-in-out infinite;
}

@keyframes gentleBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Wave divider */
.wave-divider {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: var(--fs-base);
    border: none;
    cursor: pointer;
    transition: all var(--duration-base) var(--ease-smooth);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: var(--gradient-btn);
    color: var(--color-white);
    box-shadow: 0 4px 20px rgba(255, 143, 171, 0.35);
}

.btn--primary:hover {
    background: var(--gradient-btn-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 143, 171, 0.45);
}

.btn--primary:active {
    transform: translateY(-1px);
}

.btn--outline {
    background: rgba(255, 255, 255, 0.6);
    color: var(--color-dark);
    border: 2px solid rgba(195, 174, 214, 0.4);
    backdrop-filter: blur(6px);
}

.btn--outline:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: var(--color-lavender);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* --- ABOUT / MISSION SECTION --- */
.about {
    background: var(--color-white);
    position: relative;
}

.about__header {
    max-width: 600px;
    margin: 0 auto var(--space-3xl);
    text-align: center;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: var(--fs-xs);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-accent);
    margin-bottom: var(--space-md);
}

.section-title {
    font-size: var(--fs-3xl);
    color: var(--color-dark);
    margin-bottom: var(--space-md);
}

.section-desc {
    font-size: var(--fs-md);
    color: var(--color-gray-500);
    max-width: 500px;
    margin: 0 auto;
}

.about__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.about__card {
    background: var(--gradient-card);
    border: 1px solid rgba(195, 174, 214, 0.15);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    text-align: center;
    transition: all var(--duration-base) var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

.about__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-btn);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--duration-base) var(--ease-smooth);
}

.about__card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card);
    border-color: rgba(195, 174, 214, 0.3);
}

.about__card:hover::before {
    transform: scaleX(1);
}

.about__card-icon {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto var(--space-lg);
    position: relative;
}

.about__card-icon--teach {
    background: var(--color-pink-light);
}

.about__card-icon--inspire {
    background: var(--color-lavender-light);
}

.about__card-icon--support {
    background: var(--color-sky-light);
}

.about__card-title {
    font-size: var(--fs-lg);
    color: var(--color-dark);
    margin-bottom: var(--space-sm);
}

.about__card-text {
    font-size: var(--fs-sm);
    color: var(--color-gray-500);
    line-height: 1.8;
}

/* --- CHARACTERS SECTION --- */
.characters {
    background: var(--color-bg);
    position: relative;
    overflow: hidden;
}

.characters__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--space-xl);
}

.character-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--duration-base) var(--ease-smooth);
    border: 2px solid transparent;
}

.character-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-pink-light);
}

.character-card__image {
    width: 100%;
    height: 260px;
    overflow: hidden;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
}

.character-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform var(--duration-slow) var(--ease-smooth);
}

.character-card:hover .character-card__image img {
    transform: scale(1.08);
}

.character-card__body {
    padding: var(--space-lg);
    text-align: center;
}

.character-card__name {
    font-size: var(--fs-lg);
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: var(--space-xs);
}

.character-card__role {
    font-size: var(--fs-sm);
    color: var(--color-accent);
    font-weight: 600;
}

/* --- CTA / BANNER SECTION --- */
.cta {
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.cta__inner {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta__title {
    font-size: var(--fs-3xl);
    color: var(--color-dark);
    margin-bottom: var(--space-md);
}

.cta__text {
    font-size: var(--fs-md);
    color: var(--color-gray-700);
    max-width: 500px;
    margin: 0 auto var(--space-2xl);
}

.cta__btn-group {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* --- FOOTER --- */
.footer {
    background: var(--gradient-footer);
    color: rgba(255, 255, 255, 0.8);
    padding: var(--space-3xl) 0 var(--space-xl);
}

.footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xl);
}

.footer__logo {
    height: 36px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer__text {
    font-size: var(--fs-sm);
    text-align: center;
    max-width: 400px;
    line-height: 1.8;
}

.footer__social {
    display: flex;
    gap: var(--space-md);
}

.footer__social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all var(--duration-base) var(--ease-smooth);
}

.footer__social-link:hover {
    background: var(--color-accent);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(255, 143, 171, 0.4);
}

.footer__social-link svg {
    width: 20px;
    height: 20px;
}

.footer__divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.footer__bottom {
    font-size: var(--fs-xs);
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
}

.footer__bottom span {
    color: var(--color-pink);
}

/* --- SCROLL REVEAL ANIMATIONS --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .hero__inner {
        flex-direction: column;
        text-align: center;
        gap: var(--space-2xl);
    }

    .hero__content {
        max-width: 100%;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__image-wrapper {
        width: 320px;
        height: 320px;
    }

    .about__grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero__title {
        font-size: var(--fs-3xl);
    }

    .navbar__center-img {
        height: 24px;
    }
}

@media (max-width: 768px) {
    :root {
        --fs-4xl: 2.5rem;
        --fs-3xl: 2rem;
        --fs-2xl: 1.5rem;
    }

    .navbar {
        padding: var(--space-sm) 0;
    }

    .navbar__logo {
        height: 32px;
    }

    .navbar__center-img {
        height: 18px;
    }

    .navbar__links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background: rgba(255, 245, 247, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: var(--space-2xl);
        transition: right var(--duration-base) var(--ease-smooth);
        box-shadow: -8px 0 30px rgba(0, 0, 0, 0.1);
    }

    .navbar__links.open {
        right: 0;
    }

    .navbar__burger {
        display: flex;
    }

    .hero__image-wrapper {
        width: 260px;
        height: 260px;
    }

    .section-padding {
        padding: var(--space-3xl) 0;
    }

    .characters__grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .hero__actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }

    .hero__title {
        font-size: var(--fs-2xl);
    }

    .section-title {
        font-size: var(--fs-2xl);
    }

    .hero__image-wrapper {
        width: 220px;
        height: 220px;
    }
}