﻿/* Hero Section */
.hero {
    position: relative;
    min-height: 500px;
    background-image: url('../img/home-background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 1;
}

.hero__container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.hero__content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.hero__logo-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__logo {
    max-width: 100%;
    height: auto;
    width: 450px;
}

.hero__text-wrapper {
    flex: 1;
    color: #144562;
    text-align: center;
}

.hero__title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero__content-md h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #144562;
}

.hero__content-md p {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 500;
    color: #144562;
    line-height: 1.4;
    margin-bottom: 30px;
}

.hero__button {
    display: inline-block;
    padding: 16px 40px;
    background-color: #2c5671;
    color: #fff;
    text-decoration: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    transition: background-color 0.2s ease;
    letter-spacing: 0.5px;
}

.hero__button:hover {
    background-color: #DA4528;
    color: #ffffff;
    text-decoration: none;
}

/* Assistance Section */
.assistance {
    background-color: #e65c3b;
    padding: 40px 20px;
}

.assistance__container {
    max-width: 1200px;
    margin: 0 auto;
}

.assistance__content h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 16px 0;
}

.assistance__content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #fff;
    line-height: 1.6;
    margin: 0;
}

.assistance__content a {
    color: #fff;
    text-decoration: underline;
}

.assistance__content a:hover {
    text-decoration: none;
}

/* Sign-up Instructions */
.sign-up-instructions {
    margin-top: 3em;
}

.sign-up-instructions p {
    color: #888;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero__content {
        flex-direction: column;
        gap: 40px;
    }

    .hero__logo {
        width: 350px;
    }

    .hero__title {
        font-size: 40px;
        text-align: center;
    }

    .hero__text-wrapper {
        text-align: center;
    }

    .assistance__content h4 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 400px;
    }

    .hero__container {
        padding: 40px 20px;
    }

    .hero__logo {
        width: 280px;
    }

    .hero__title {
        font-size: 32px;
    }

    .hero__button {
        padding: 14px 32px;
        font-size: 16px;
    }

    .assistance {
        padding: 30px 20px;
    }

    .assistance__content h4 {
        font-size: 24px;
    }

    .assistance__content p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 26px;
    }

    .hero__logo {
        width: 220px;
    }

    .assistance__content h4 {
        font-size: 20px;
    }
}