﻿@font-face {
    font-family: 'Filson Pro';
    src: url('/fonts/FilsonPro-Regular.woff2') format('woff2'), url('/fonts/FilsonPro-Regular.woff') format('woff');
    font-style: normal;
    font-display: swap;
}

/* Single, consistent :root block */
:root {
    font-family: 'Filson Pro', sans-serif;
    font-style: normal;
}

body {
    font-family: inherit;
    font-style: normal;
}

.hero-section {
    position: relative;
    height: 500px;
    width: 100%;
    background-image: url('../Images/WhyUS/image (2).jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;

}

    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
       
    }

.hero-title {
    font-family: "Filson Pro";
    font-size: 70px;
    font-weight: 500;
    line-height: 84px;
    color: #a5ec5b;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.hero-text {
    font-family: "Filson Pro";
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    max-width: 865px;
    position: relative;
    z-index: 2;
    
}

.content-section {
    font-family: "Filson Pro";
    padding: 60px 150px;
    color: #223532;
}

.approach-title, .join-title {
    font-family: "Filson Pro";
    font-size: 40px;
    font-weight: 700;
    line-height: 45px;
    color: var(--Grape-Lavender, #B1A0FF);
}

.approach-text {
    color: var(--Imperial-green, #243837);
    font-family: "Filson Pro";
    font-size: 24px;
    font-weight: 400;
    line-height: 45px;
    margin-bottom: 30px;
}

.approach-list {
    font-family: "Filson Pro";
    list-style-type: none;
    margin-bottom: 30px;
    color: var(--Imperial-green, #243837);
}

    .approach-list li {
        font-family: "Filson Pro";
        position: relative;
        padding-left: 20px;
        margin-bottom: 20px;
        font-size: 24px;
        font-weight: 400;
        line-height: 45px;
    }

        .approach-list li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--light-green, #4A917E);
        }
    .approach-list strong {
        color: var(--light-green, #4A917E);
    }

.join-title {
    font-family: "Filson Pro";
    font-size: 32px;
    font-weight: 400;
    line-height: 45px;
    color: #a698ea;
    margin-bottom: 20px;
}

.join-text {
    color: var(--Imperial-green, #243837);
    font-family: "Filson Pro";
    font-size: 24px;
    font-weight: 400;
    line-height: 45px;
    margin-bottom: 40px;
}

.action-buttons {
    display: flex;
    gap: 45px;
    margin-top: 60px;
    justify-content: center;
}

.about-btn {
    background-color: #a698ea;
    border-radius: 12px;
    padding: 16px 54px;
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    color: #ffffff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .about-btn:hover {
        background-color: #b1a0ff;
    }

.contact-btn4 {
    background-color: transparent;
    border-radius: 12px;
    padding: 16px 44px;
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    color: #2c3c3d;
    border: 2px solid #b1a0ff;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

    .contact-btn4:hover {
        background-color: #b1a0ff;
        color: #ffffff;
    }

.tagline-section {
    background-color: #2d3d3f;
    padding: 141px 0;
    text-align: center;
    color: #ffffff;
}

.tagline {
    font-size: 70px;
    font-weight: 500;
    line-height: 84px;
    margin-bottom: 15px;
}

    .tagline span {
        color: #a5ec5b;
    }

.sub-tagline {
    font-size: 25px;
    font-weight: 400;
    line-height: 30px;
}

.button-image {
    margin: 30px auto 0;
    max-width: 100%;
    width: 300px;
    height: auto;
    display: block;
    padding-bottom: 200px;
}


.footer {
    font-family: "Filson Pro";
    background-color: #a698ea;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
}

@media (max-width: 1200px) {
    .content-section {
        padding: 60px 100px;
    }

    .hero-title, .tagline {
        font-size: 60px;
        line-height: 72px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 10px !important;
    }

    .header {
        padding: 0 20px;
        flex-direction: column;
        height: auto;
        padding: 20px;
    }
   
    .nav-links {
        margin: 20px 0;
    }

    .content-section {
        padding: 40px 30px;
    }

    .hero-title, .tagline {
        font-size: 30px !important;
        line-height: 48px;
    }
    .approach-title, .join-title {
        font-size: 25px !important;
    }
        .approach-text, .approach-list li, .join-text {
        font-size: 18px !important;
        line-height: 36px;
    }

    .action-buttons {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    .about-btn, .contact-btn4 {
        width: 100%;
        text-align: center;
        max-width: 200px; /* Optional: Control maximum width */
    }


}
