/* ------------*
   GLOBAL STYLES
 *------------ */
body {
    font-family: 'Poppins', sans-serif;
    color: white;
    background: linear-gradient(to right, black 45%, #F0C86C 100%);
    text-align: center;
}

/* ------------*
   HEADER (Updated Image Path)
 *------------ */
header {
    position: relative;
    background: url('sosBanner.jpg') no-repeat center center;
    background-size: contain;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Site Title */
.site-title {
    font-family: 'Dancing Script', cursive;
    font-size: 64px;
    color: #F0C86C;
}

/* Subtitle */
.subtitle {
    font-size: 28px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

.certification {
    font-size: 18px;
    margin-top: 5px;
}

/* ------------*
   BUTTON
 *------------ */
.apply-button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 20px;
    font-weight: bold;
    color: white;
    background-color: #F0C86C;
    border: 2px solid white;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
}

    .apply-button:hover {
        background-color: black;
        color: #F0C86C;
        border-color: #F0C86C;
    }

/* Floating Button */
.apply-top {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
}

/* Contact & Services */
.services h2,
.contact h2 {
    font-size: 28px;
    font-weight: 600;
    color: #F0C86C;
    margin-bottom: 15px;
}

.subtext {
    font-size: 20px;
    line-height: 1.6;
    color: white;
}

.services ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    text-align: center;
    display: inline-block;
}

.about p {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Apply Callout */
.apply-callout {
    margin: 40px 0;
    text-align: center;
}

/* Footer */
footer {
    padding: 20px 0;
    background: rgba(0,0,0,0.5);
}

/* ------------*
   MOBILE RESPONSIVENESS
 *------------ */
@media (max-width: 600px) {
    .site-title {
        font-size: 42px;
    }

    .subtitle {
        font-size: 20px;
    }

    .certification {
        font-size: 16px;
    }

    .apply-button {
        font-size: 18px;
        padding: 10px 20px;
        width: 90%;
        margin: 10px auto;
    }

    .services ul {
        display: block;
    }

    .about p, .subtext {
        font-size: 18px;
    }

    .apply-top {
        position: static;
        margin-top: 20px;
        width: 90%;
    }

    header {
        background-size: cover;
        min-height: 300px;
    }
}
