:root {
    /* Don't Board Me Aesthetic Colors */
    --bg-primary: #FFECE5;
    /* Soft Peach */
    --bg-secondary: #111111;
    /* Almost Black */
    --bg-accent: #FF3B30;
    /* Vibrant Red */

    --text-primary: #111111;
    --text-light: #FFECE5;
    --text-accent: #FF3B30;

    --font-main: 'Outfit', sans-serif;

    --spacing-xs: 0.5rem;
    --spacing-sm: 1.5rem;
    --spacing-md: 3rem;
    --spacing-lg: 6rem;
    --spacing-xl: 10rem;

    --border-radius: 24px;
    --border-radius-lg: 48px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-main);
    line-height: 1.6;
    font-size: 18px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img,
video {
    max-width: 100%;
}

section {
    scroll-margin-top: 6.5rem;
}

/* =========================================================================
   TYPOGRAPHY
   ========================================================================= */
h1,
h2,
h3,
h4 {
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(4rem, 12vw, 10rem);
    color: var(--bg-accent);
}

h2 {
    font-size: clamp(3rem, 8vw, 6rem);
    margin-bottom: var(--spacing-md);
}

h3 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: var(--spacing-sm);
    font-weight: 800;
}

p {
    margin-bottom: var(--spacing-sm);
    font-weight: 400;
    max-width: 60ch;
    font-size: 1.25rem;
}

.subtitle {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-primary);
}

/* =========================================================================
   LAYOUT & NAVIGATION
   ========================================================================= */
.container {
    width: 95%;
    max-width: 1600px;
    margin: 0 auto;
    padding: var(--spacing-lg) 0;
}

header {
    padding: var(--spacing-sm) 2.5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(255, 236, 229, 0.9);
    backdrop-filter: blur(10px);
}

.logo span {
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--text-accent);
    letter-spacing: -1px;
}

nav.main-nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    font-weight: 600;
}

nav.main-nav a {
    text-decoration: none;
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    transition: all 0.3s ease;
}

nav.main-nav a:hover {
    background-color: var(--bg-accent);
    color: var(--text-light);
}

/* =========================================================================
   HERO 
   ========================================================================= */
.hero {
    min-height: 65vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: calc(var(--spacing-lg) * 1.5);
    padding-bottom: var(--spacing-lg);
    position: relative;
    overflow: hidden;
}

.hero-video-wrapper {
    position: relative;
    transform: rotate(-2deg);
    width: 640px;
    height: 360px;
    border-radius: 20px;
    overflow: hidden;
    z-index: 1;
    opacity: 1;
    box-shadow: 10px 10px 0px 0px var(--text-accent);
    border: 3px solid var(--text-primary);
    margin: 2rem 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.5) contrast(1.1);
}

.hero h1 {
    position: relative;
    z-index: 2;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.hero-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.55);
    border: 2px solid var(--text-primary);
    border-radius: 20px;
    box-shadow: 8px 8px 0 var(--text-accent);
    position: relative;
    z-index: 2;
}

.hero-banner-label {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-banner-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.hero-banner-link:hover {
    transform: translateY(-2px);
}

.hero-banner-image {
    display: block;
    width: 234px;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

/* =========================================================================
   MARQUEE / KINETIC TYPOGRAPHY
   ========================================================================= */
.marquee-wrapper {
    background-color: var(--text-accent);
    color: var(--text-light);
    padding: 1rem 0;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    transform: rotate(-2deg) scale(1.05);
    margin: var(--spacing-xl) 0;
    box-shadow: 0 10px 30px rgba(255, 59, 48, 0.2);
}

.marquee-content {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    animation: marquee 20s linear infinite;
    display: flex;
    gap: 2rem;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.marquee-wrapper.reverse {
    background-color: var(--text-primary);
    color: var(--bg-primary);
    transform: rotate(2deg) scale(1.05);
}

.marquee-wrapper.reverse .marquee-content {
    animation: marquee-reverse 25s linear infinite;
}

@keyframes marquee-reverse {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.therapy-section {
    padding: var(--spacing-xl) 5%;
    text-align: center;
}

.therapy-text {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-primary);
    max-width: 900px;
    margin: 0 auto;
}

/* =========================================================================
   PROFILE INFO (CHUNKY CARDS)
   ========================================================================= */
.profile-section {
    background-color: var(--bg-secondary);
    color: var(--text-light);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl) 5%;
    margin: var(--spacing-lg) 2.5%;
}

.profile-section h2 {
    color: var(--text-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: var(--spacing-md);
}

.stat-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    background-color: var(--bg-accent);
}

.stat-value {
    font-size: 3rem;
    font-weight: 900;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* =========================================================================
   SERVICES DIRECTORY
   ========================================================================= */
.services-section {
    padding: 0 2.5%;
}

.service-category {
    background-color: darkorange;
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.service-category h3 {
    color: var(--text-accent);
    border-bottom: 4px solid var(--bg-primary);
    padding-bottom: 1rem;
}

.services-list {
    list-style: none;
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}

@media (min-width: 992px) {
    .services-list {
        grid-template-columns: 1fr 1fr;
    }
}

.services-list li {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background-color: var(--bg-primary);
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all 0.2s;
    overflow-wrap: anywhere;
}

.services-list li:hover {
    background-color: var(--bg-accent);
    color: var(--text-light);
}

.service-price {
    background-color: var(--bg-accent);
    color: var(--text-light);
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    font-weight: 800;
    font-size: 0.9rem;
}

/* =========================================================================
   FEES
   ========================================================================= */
.fees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    padding: 0 2.5%;
}

.fee-card {
    background-color: var(--text-accent);
    color: var(--text-light);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
}

.fee-card:hover {
    transform: scale(1.02);
}

.fee-title {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.fee-price {
    font-size: 3.5rem;
    font-weight: 900;
    margin: 1.5rem 0;
    display: block;
}

.fee-card-fostering {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.fee-options {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.btn-solid {
    background-color: var(--text-light);
    color: var(--text-accent);
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 100px;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
    margin-top: auto;
    transition: all 0.2s;
}

.btn-solid:hover {
    background-color: var(--bg-accent);
    color: var(--text-light);
}

/* =========================================================================
   FOOTER
   ========================================================================= */
footer {
    background-color: var(--bg-secondary);
    color: var(--text-light);
    text-align: center;
    padding: var(--spacing-xl) 2.5% var(--spacing-md);
    border-top-left-radius: var(--border-radius-lg);
    border-top-right-radius: var(--border-radius-lg);
    margin-top: var(--spacing-xl);
}

footer h2 {
    color: var(--text-accent);
}

.footer-btn {
    display: inline-block;
    background-color: var(--text-accent);
    color: white;
    text-decoration: none;
    padding: 1.5rem 4rem;
    border-radius: 100px;
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    margin: var(--spacing-md) 0;
    transition: transform 0.2s;
}

.footer-btn:hover {
    transform: scale(1.05);
}

/* =========================================================================
   PASSWORD GATE
   ========================================================================= */
#password-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--bg-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.password-container {
    background-color: var(--bg-secondary);
    padding: 4rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    border: 2px solid var(--text-accent);
    box-shadow: 10px 10px 0px 0px var(--text-accent);
}

.password-container h2 {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.password-container input {
    padding: 1rem;
    font-size: 1.5rem;
    background-color: transparent;
    border: 2px solid var(--text-light);
    color: var(--text-light);
    outline: none;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 2rem;
    width: 100%;
}

.password-container input:focus {
    border-color: var(--text-accent);
}

.password-container button {
    background-color: var(--text-accent);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.5rem;
    font-weight: 900;
    cursor: pointer;
    text-transform: uppercase;
    transition: transform 0.2s;
    width: 100%;
}

.password-container button:hover {
    transform: scale(1.05);
}

/* =========================================================================
   RESPONSIVE (MOBILE / iPHONE)
   ========================================================================= */
@media (max-width: 992px) {
    .logo span {
        font-size: 1.7rem;
    }

    .hero {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .hero-video-wrapper {
        width: min(92vw, 560px);
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .marquee-content {
        font-size: 2.2rem;
    }

    .therapy-section,
    .services-section {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .profile-section {
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .fees-grid {
        gap: 1.25rem;
        padding: 0 1rem;
    }

    .fee-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: clamp(2.7rem, 14vw, 4rem);
    }

    h2 {
        font-size: clamp(2rem, 9.5vw, 2.8rem);
    }

    p {
        font-size: 1.05rem;
    }

    header {
        padding: 0.9rem 4%;
    }

    .logo span {
        font-size: clamp(1.2rem, 6.5vw, 1.5rem);
        letter-spacing: -0.02em;
    }

    .hero {
        min-height: auto;
        padding-top: 7rem;
        padding-bottom: 2.5rem;
    }

    .hero-video-wrapper {
        width: min(94vw, 420px);
        height: auto;
        aspect-ratio: 16 / 9;
        transform: rotate(-2deg);
        margin: 1.25rem 0;
        box-shadow: 6px 6px 0px 0px var(--text-accent);
    }

    .hero .subtitle {
        margin-bottom: 1.25rem !important;
        padding: 0 0.25rem;
        line-height: 1.4;
    }

    .therapy-text {
        font-size: clamp(1.35rem, 6vw, 1.8rem);
        line-height: 1.25;
    }

    .hero-banner {
        width: min(92vw, 340px);
        padding: 1rem;
        margin-bottom: 1.25rem;
        box-shadow: 5px 5px 0 var(--text-accent);
    }

    .hero-banner-label {
        font-size: 0.8rem;
        letter-spacing: 0.12em;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .stat-card {
        padding: 1rem 0.75rem;
    }

    .stat-value {
        font-size: 2.2rem;
    }

    .profile-section {
        border-radius: 24px;
        padding: 2.5rem 1rem;
    }

    .profile-section p[style] {
        font-size: 1.05rem !important;
        margin-top: 1rem !important;
    }

    .fees-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
        gap: 1rem;
    }

    .fee-card {
        padding: 1.25rem;
        border-radius: 24px;
    }

    .fee-title {
        font-size: 1.7rem;
        margin-bottom: 0.75rem;
    }

    .fee-card-fostering {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .fee-options {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
        align-items: stretch;
    }

    .fee-options .btn-solid {
        grid-column: 1 / -1;
    }

    .marquee-content span {
        font-size: 1.35rem;
    }

    .marquee-wrapper {
        margin: 3.5rem 0;
        transform: rotate(-1deg) scale(1.01);
    }

    .services-section {
        padding: 2.5rem 1rem 0;
    }

    .service-category {
        padding: 1.5rem 0.9rem;
        border-radius: 24px;
        margin-bottom: 1.25rem;
    }

    .services-list {
        gap: 0.75rem;
    }

    .services-list li {
        padding: 0.9rem;
        line-height: 1.35;
    }

    .btn-solid {
        width: 100%;
        padding: 0.9rem 1.1rem;
        font-size: 0.86rem;
        line-height: 1.2;
    }

    footer {
        margin-top: 3rem;
        padding-top: 3rem;
        border-top-left-radius: 24px;
        border-top-right-radius: 24px;
    }

    footer p[style] {
        font-size: 1rem !important;
    }

    .footer-btn {
        width: min(100%, 420px);
        padding: 1rem 1.25rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .hero-banner {
        border-radius: 16px;
    }

    .marquee-content span {
        font-size: 1.1rem;
    }

    .service-category h3 {
        font-size: 1.45rem;
    }

    .fee-title {
        font-size: 1.5rem;
    }
}
