/* =========================================
   MELTDOWN MASTERY WELCOME
   /meltdown-mastery-welcome/
   ========================================= */

/* ─────────────────────────────────────
   LAYOUT
   ───────────────────────────────────── */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ─────────────────────────────────────
   HERO SECTION
   ───────────────────────────────────── */
section.hero {
    background-image: url(https://calmthechaos.co/wp-content/uploads/2025/10/background-gradient.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius: 25px;
    margin: 25px auto 0;
    max-width: 1100px;
    padding: 60px 40px;
    text-align: center;
}

section.hero h1 {
    font-family: 'IvyPresto Display', Georgia, serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 600;
    line-height: 1.3;
    color: #223759;
    margin-bottom: 20px;
}

section.hero .hero-lead {
    font-family: 'Europa', sans-serif;
    font-size: 1.15rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 30px;
}

/* ─────────────────────────────────────
   VIDEO CONTAINER
   ───────────────────────────────────── */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    border-radius: 15px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

/* ─────────────────────────────────────
   WORKBOOK CTA
   ───────────────────────────────────── */
.workbook-cta {
    background: #ffffff;
    padding: 60px 0;
    text-align: center;
}

.workbook-cta h2 {
    font-family: 'IvyPresto Display', Georgia, serif;
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    color: #223759;
    margin-bottom: 16px;
}

.workbook-cta p {
    font-family: 'Europa', sans-serif;
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 24px;
}

/* ─────────────────────────────────────
   CTA BUTTON
   ───────────────────────────────────── */
.btn-cta {
    display: inline-block;
    background: #ffcd57;
    color: #223759;
    font-family: 'Europa', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 20px 40px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(255, 205, 87, 0.4);
}

.btn-cta:hover {
    background: #f5c244;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 205, 87, 0.5);
}

/* ─────────────────────────────────────
   FOOTER
   ───────────────────────────────────── */
.footer {
    background: #223759;
    padding: 40px 0;
    text-align: center;
}

.footer p {
    font-family: 'Europa', sans-serif;
    font-size: 0.9rem;
    color: #ffffff;
    opacity: 0.8;
}

/* ─────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────── */
@media (max-width: 768px) {
    section.hero {
        margin: 16px;
        padding: 40px 24px;
        border-radius: 20px;
    }

    section.hero h1 {
        font-size: 1.6rem;
    }

    section.hero .hero-lead {
        font-size: 1rem;
    }

    .btn-cta {
        font-size: 0.95rem;
        padding: 16px 28px;
        display: block;
        max-width: 400px;
        margin: 0 auto;
    }

    section {
        padding: 48px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .video-container {
        border-radius: 10px;
    }

    .video-container iframe {
        border-radius: 10px;
    }
}
