/* ======== GLOBAL STYLES & VARIABLES ======== */
:root {
    --primary-color: #E63946;   /* Hero Red */
    --secondary-color: #F1C40F; /* Comic Yellow */
    --accent-color: #007BFF;    /* Power Blue */
    --pop-color: #8E44AD;       /* Energetic Purple */
    --background-color: #FDFBFB;/* Soft Off-White */
    --text-color: #2C2C2C;      /* Charcoal Black */
    --white-color: #FFFFFF;
    --border-radius: 12px;
    --font-headline: 'Bangers', cursive;
    --font-body: 'Inter', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: var(--font-body);
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 25px;
}

h1, h2, h3 { font-family: var(--font-headline); line-height: 1.1; letter-spacing: 1px; }
h1 { font-size: 4.5rem; text-transform: uppercase; text-shadow: 3px 3px 0px var(--text-color); }
h2 { font-size: 3rem; text-align: center; margin-bottom: 2rem; color: var(--text-color); text-transform: uppercase;}
h3 { font-size: 1.8rem; color: var(--primary-color); }

/* ======== SECTION STYLES ======== */
section { padding: 80px 0; }

/* Hero Section */
.hero-section {
    padding: 60px 0;
    background-image: url('hero_background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 80vh;
    display: flex;
    align-items: center;
}
.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2px;
    align-items: stretch; 
    width: 100%;
}
.hero-content {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center; 
}
.hero-content .logo {
    text-align: left;
    margin-bottom: 1rem;
}
.hero-content .main-headline {
    text-align: left;
    margin-bottom: 1rem;
    color: var(--white-color);
    text-shadow: 3px 3px 0px var(--text-color);
    font-size: 3rem; /* <-- TWEAK THIS VALUE (e.g., 5rem, 6rem, 80px) */
}
.hero-content .subhead {
    text-align: left;
    font-size: 1.2rem;
    max-width: 100%;
    margin: 0 0 2rem 0;
    color: var(--white-color);
    font-family: var(--font-body);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}
.hero-placeholder {
    width: 100%;
    height: 100%; 
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-placeholder img {
    height: 90%; 
    width: auto;  
    max-height: 75vh; 
    object-fit: contain; 
    /* UPDATED: The shadow and rotation effects have been removed */
}

/* Waitlist Form */
.waitlist-form .form-label { font-weight: 600; margin-bottom: 0.5rem; text-align: left;}
.hero-content .waitlist-form .form-label {
    text-align: center;
    color: var(--white-color);
    font-family: var(--font-body);
    font-size: 1rem;
}
.form-group {
    display: flex;
    gap: 10px;
    max-width: 100%;
    margin: 0;
}
.hero-content .form-group {
    justify-content: center;
    max-width: 1450px;
    margin: 0 auto;
}
.form-group input[type="email"] {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--text-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: var(--font-body);
}
.form-group button {
    padding: 15px 30px;
    border: none;
    border-radius: var(--border-radius);
    background-color: var(--pop-color);
    color: var(--white-color);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s;
    text-transform: uppercase;
    white-space: nowrap;
}
.form-group button:hover { transform: scale(1.05); background-color: #7d3c98; }
.form-message { margin-top: 1rem; font-weight: 600; height: 20px;}
.hero-content .form-message {
    text-align: center;
}
.form-message.success { color: #b8ffc8; }
.form-message.error { color: #ffb8b8; }

/* Why MySuperFam Section */
#why-mysuperfam { text-align: center; }
#why-mysuperfam .section-subhead { max-width: 700px; margin: 0 auto; font-size: 1.2rem; }

/* How It Works Section */
#how-it-works {
    background-image: url('bg-comic-dots.png');
    background-repeat: repeat;
}
#how-it-works h2 { color: var(--text-color); }
.comic-panels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 3rem;
}
.comic-panel {
    background-image: url('panel-box.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}
.comic-panel:hover { transform: scale(1.05); }
.panel-content { text-align: center; padding: 15%; }
.comic-panel h3 {
    font-family: var(--font-headline);
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}
.comic-panel p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.5;
    margin-bottom: 0;
}

/* Visual Proof Section */
.comparison-container { display: flex; justify-content: center; align-items: center; gap: 2rem; margin-bottom: 2rem; }
.comparison-item img { width: 100%; max-width: 300px; border: 4px solid var(--text-color); border-radius: var(--border-radius); }
.arrow { font-family: var(--font-headline); font-size: 5rem; color: var(--primary-color); }
.tagline { text-align: center; font-family: var(--font-headline); font-size: 2.5rem; color: var(--accent-color); text-shadow: 2px 2px 0 var(--text-color);}

/* Perfect Gift Section */
#perfect-gift { background-color: var(--white-color); }
.gift-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px 30px; max-width: 900px; margin: 0 auto; }
.gift-item { display: flex; align-items: center; gap: 20px; text-align: left; }
.gift-item img {
    width: 180px;
    height: auto;
    flex-shrink: 0;
}
.gift-item h3 { font-size: 1.5rem; margin: 0 0 0.25rem 0; color: var(--text-color); }
.gift-description { font-size: 1rem; color: #555; line-height: 1.4; margin-bottom: 0;}

/* Other Worlds Section */
.carousel-container { position: relative; width: 100%; }
.carousel-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    background-color: var(--white-color); border: 2px solid var(--text-color);
    border-radius: 50%; width: 45px; height: 45px; cursor: pointer;
    z-index: 10; display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; color: var(--text-color); transition: transform 0.2s, background-color 0.2s;
}
.carousel-btn:hover { transform: translateY(-50%) scale(1.1); background-color: var(--secondary-color); }
.carousel-btn:disabled { opacity: 0.4; cursor: not-allowed; transform: translateY(-50%); }
#prev-btn { left: -20px; }
#next-btn { right: -20px; }
.story-worlds-carousel { 
    display: flex; gap: 30px; overflow-x: auto; 
    padding: 20px 10px; scroll-behavior: smooth; scrollbar-width: none;
}
.story-worlds-carousel::-webkit-scrollbar { display: none; }
.story-world-card {
    min-width: 300px; background: var(--white-color);
    border-radius: var(--border-radius); border: 3px solid var(--text-color);
    overflow: hidden; text-align: center; transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}
.story-world-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.story-world-card img { width: 100%; height: 320px; object-fit: cover; }
.story-world-card .card-content {
    padding: 1rem 15px 15px 15px;
}
.story-world-card h3 { margin: 0 0 0.5rem 0; }
.story-world-card p { margin-bottom: 0; }
.story-world-card.coming-soon {
    background: none;
    border: none;
    padding: 0;
}
.story-world-card.coming-soon img {
    object-fit: fill;
    height: 100%;
}
.story-world-card.coming-soon .card-content {
    display: none;
}

/* Final CTA Section */
#final-cta { text-align: center; background-color: var(--secondary-color); }
#final-cta .form-group { justify-content: center; }

/* Footer */
footer { background-color: var(--text-color); color: var(--white-color); padding: 30px 0; text-align: center; }
.footer-links a { color: var(--white-color); text-decoration: none; font-weight: 600; margin: 0 15px; }
.socials { margin: 1rem 0; }
.socials a { color: var(--white-color); font-size: 1.5rem; margin: 0 10px; }
.made-with { font-size: 0.9rem; opacity: 0.8; }

/* ======== RESPONSIVE DESIGN ======== */
@media (max-width: 900px) {
    .gift-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.2rem; }

    .hero-section {
        padding: 80px 0;
        min-height: auto;
    }
    .hero-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content,
    .hero-content .logo,
    .hero-content .main-headline,
    .hero-content .subhead {
        text-align: center;
    }
    .hero-content .waitlist-form .form-label {
        text-align: center;
    }
    .hero-content .form-group {
        justify-content: center;
    }
    .form-group input[type="email"] {
        width: 100%;
        max-width: 100%;
    }
    .hero-placeholder {
        height: auto;
        margin-top: 30px;
    }
    .hero-placeholder img {
        height: auto;
        width: 60%;
        max-height: none;
    }

    .comic-panels-grid { grid-template-columns: 1fr; gap: 30px; }
    .comic-panel h3 { font-size: 1.8rem; }
    .comic-panel p { font-size: 1rem; }

    .comparison-container { flex-direction: column; }
    
    .gift-item img {
        width: 120px;
    }

    #prev-btn { left: 5px; }
    #next-btn { right: 5px; }
}






