@charset "utf-8";
/* ============================================================
   FONT IMPORTS
============================================================ */
/* Nunito Sans — Variable (100–900) */
@font-face {
    font-family: 'Nunito Sans';
    font-style: normal;
    font-weight: 100 900;
    src: url('/fonts/NunitoSans-Variable.woff2') format('woff2');
    font-display: swap;
}

/* ============================================================
   PAGE WRAPPER (used only for centered content pages)
============================================================ */
.page-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

/* ============================================================
   HERO TEXT
============================================================ */
.hero-text {
    text-align: left;
    color: white;
    text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

.hero-text h1 {
    font-family: 'Lato', sans-serif;
    font-weight: 900;
    font-size: clamp(1.8rem, 4vw, 3.5rem);
    margin: 0;
}

.hero-text h2 {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
 font-size: clamp(1.2rem, 3vw, 1.8rem);
	margin: 10px 0 0;

    opacity: 0;
    animation: heroH2SlideUp 0.6s ease-out 0.15s forwards;
}

@keyframes heroH2SlideUp {
    0% {
        transform: translateY(40px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}


/* ============================================================
   CONTENT SECTION — FULL WIDTH BACKGROUND BELOW HERO
============================================================ */
.content-section {
    width: 100%;
    background-color: #384744;
    padding-top: 10px;
    padding-bottom: 40px;
    margin-top: 0;

    line-height: 1.75;
    color: white;

    /* Removed duplicate font-weight */
    min-height: calc(100vh - 300px);
}

.content-section-inner {
    width: 100%;
    padding-left: clamp(12px, 8vw, 180px);
    padding-right: clamp(12px, 8vw, 180px);
    max-width: none;
    margin: 0;

    text-align: justify;
    color: white;
    font-family: 'Nunito Sans', sans-serif;

    /* Keep typography here */
    font-size: clamp(1.15rem, 2.2vw, 1.25rem);
    font-weight: 300;
}

/* Desktop: two columns */
.content-row {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.content-col {
    flex: 1;
}



.highlight {
    font-weight: 800;
}

.content-logo {
    width: 100%;
    text-align: center;
    margin-top: 40px;
}


.content-logo img {
    width: clamp(50px, 6vw, 90px);
    height: auto;
    display: inline-block;
}


.bullet-elsl {
    list-style: none;
    padding-left: 0;
}

.bullet-elsl li {
    background-image: url(../imgs/bullet-embrace-life-sober-living.svg);
    background-repeat: no-repeat;
    background-position: 0 6px;
    background-size: 12px 12px;
    padding-left: 20px;
}

/* Desktop: two columns */
/* Mobile: stack into one column */
@media (max-width: 870px) {
    .content-row {
        flex-direction: column;
    }
}

