/* =============================================
   SECTION SPACING & TYPOGRAPHY HARMONY FIX
   Ensures all sections flow together smoothly
   ============================================= */

/* GLOBAL SECTION SPACING */
.full-section {
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

/* Remove weird gaps between sections */
body {
    margin: 0;
    padding: 0;
}

section {
    margin: 0;
    padding: 0;
}

/* CRISIS SECTION SPECIFIC FIXES */
.crisis-section {
    padding: 100px 60px !important;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.crisis-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.crisis-number {
    font-size: 6rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 30px;
    letter-spacing: -0.03em;
}

.crisis-statement {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 25px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.crisis-subtext {
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* SPLIT SECTION (PROBLEM/SOLUTION) TYPOGRAPHY FIX */
.split-section-apple {
    min-height: 100vh;
}

.split-half {
    padding: 80px 60px !important;
}

.split-content h2 {
    font-size: 2.8rem !important;
    font-weight: 900 !important;
    line-height: 1.1 !important;
    margin-bottom: 50px !important;
    letter-spacing: -0.03em !important;
    text-transform: uppercase;
}

.split-item {
    font-size: 1.2rem !important;
    font-weight: 500 !important;
    line-height: 1.7 !important;
    margin-bottom: 20px;
    padding-left: 40px;
}

/* TABLET ADJUSTMENTS (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
    .crisis-section {
        padding: 80px 50px !important;
    }
    
    .crisis-number {
        font-size: 5rem;
    }
    
    .crisis-statement {
        font-size: 1.9rem;
    }
    
    .crisis-subtext {
        font-size: 1.15rem;
    }
    
    .split-half {
        padding: 60px 50px !important;
    }
    
    .split-content h2 {
        font-size: 2.3rem !important;
        margin-bottom: 40px !important;
    }
    
    .split-item {
        font-size: 1.1rem !important;
    }
}

/* MOBILE ADJUSTMENTS (≤768px) */
@media (max-width: 768px) {
    .crisis-section {
        padding: 60px 30px !important;
        min-height: auto;
    }
    
    .crisis-number {
        font-size: 3.5rem;
        margin-bottom: 25px;
    }
    
    .crisis-statement {
        font-size: 1.5rem;
        margin-bottom: 20px;
        line-height: 1.4;
    }
    
    .crisis-subtext {
        font-size: 1.05rem;
        line-height: 1.6;
    }
    
    .split-section-apple {
        min-height: auto;
    }
    
    .split-half {
        padding: 50px 30px !important;
        min-height: 60vh;
    }
    
    .split-content h2 {
        font-size: 1.9rem !important;
        margin-bottom: 35px !important;
        line-height: 1.2;
    }
    
    .split-item {
        font-size: 1.05rem !important;
        line-height: 1.7;
        padding-left: 30px;
        margin-bottom: 18px;
    }
}

/* EXTRA SMALL MOBILE (≤480px) */
@media (max-width: 480px) {
    .crisis-section {
        padding: 50px 25px !important;
    }
    
    .crisis-number {
        font-size: 3rem;
        margin-bottom: 20px;
    }
    
    .crisis-statement {
        font-size: 1.3rem;
        margin-bottom: 18px;
    }
    
    .crisis-subtext {
        font-size: 1rem;
    }
    
    .split-half {
        padding: 40px 25px !important;
    }
    
    .split-content h2 {
        font-size: 1.7rem !important;
        margin-bottom: 30px !important;
    }
    
    .split-item {
        font-size: 1rem !important;
        padding-left: 25px;
        margin-bottom: 15px;
    }
}

/* ENSURE SMOOTH SECTION TRANSITIONS */
.full-section + .full-section {
    margin-top: 0 !important;
    border-top: none;
}

/* Remove any default spacing from browser */
* {
    margin-block-start: 0;
    margin-block-end: 0;
}
