@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

/* Hero Section Styles */
.hero-section {
    border-bottom: 1px solid white;
    background: #FCEAEF;
    position: relative;
    height: 703px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-background {
    background-image: url('/images/home-hero-background.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1.0;
}

.hero-content {
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    padding: 95px 20px 60px;
    width: 100%;
}

.hero-logo {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
}

.hero-logo img {
    max-width: 1368.32px;
    width: 100%;
    height: auto;
    max-height: 132px;
}

/* Responsive Logo Styles */
.hero-logo .logo-mobile {
    display: none;
}

.hero-logo .logo-desktop {
    display: block;
}

@media (max-width: 768px) {
    .hero-logo .logo-mobile {
        display: block;
    }

    .hero-logo .logo-desktop {
        display: none;
    }
}

.hero-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    flex-wrap: wrap;
    padding: 25px 25px 0px;
    gap: 40px;
}

.hero-text {
    flex: 1;
    min-width: 300px;
    max-width: 420px;
    max-height: 288px;
    z-index: 20;
}


.hero-title {
    font-family: 'Cal Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 60px;
    line-height: 72px;
    color: #000000;
    margin-bottom: 20px;
    flex: none;
    order: 0;
    flex-grow: 0;
}

.hero-title .color-primary {
    color: #E62D5B;
}

.hero-title .color-accent {
    color: #5EC6C8;
}

.hero-description {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    color: #000000;
    margin-bottom: 30px;
    flex: none;
    order: 1;
    flex-grow: 0;
}

.hero-girl {
    position: absolute;
    left: 51%;
    bottom: -65px;
    transform: translateX(-50%);
    z-index: 15;
    width: 545px;
    height: 585px;
}

.hero-girl img {
    width: 545px;
    height: 585px;
    object-fit: contain;
    object-position: center;
}

.hero-stats {
    margin-top: 50px;
    margin-right: 50px;
    flex: 0 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
    min-width: 300px;
    max-width: 300px;
    z-index: 20;
    justify-items: center;
    align-items: center;
    display: none;
}

.hero-stats .stat-box:nth-child(3) {
    grid-column: 1 / -1;
    justify-self: center;
}

.stat-box {
    width: 141px;
    height: 138px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 15px;
}

.stat-box img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 8px;
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: black;
    margin-bottom: 2px;
}

.stat-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #000000;
    line-height: 1.2;
}

.hero-footer {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    z-index: 20;
    position: relative;
}

.hero-cta {
    display: inline-block;
    background: #E62D5B;
    color: white;
    padding: 18px 36px;
    border-radius: 100px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    ;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 45, 91, 0.3);
}

.hero-contact {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-item svg {
    flex-shrink: 0;
}

.contact-hours {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    ;
    font-size: 14px;
    color: #000000;
}

.contact-phone,
.contact-email {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #000000;
}

@media (max-width: 768px) {
    .hero-content {
        padding: 0px 20px 40px !important;
        height: 100%;
    }

    .hero-section {
        height: 869px;
    }

    .hero-main {
        display: inherit;
        height: 100%;
    }

    .hero-girl {
        bottom: 400px;
        z-index: 15;
    }

    .hero-text {
        z-index: 16;
        position: absolute;
        top: 80px;
    }

    .stat-box {
        width: 112px;
        height: 108px;
    }

    .hero-stats {
        z-index: 16;
        position: absolute;
        bottom: 400px;
        margin: auto;
        max-width: 367px;
    }

    .hero-logo {
        height: 184px;
        margin-top: 92px;
    }

    .hero-stats {
        margin-top: 0px;
    }

    .hero-title {
        font-size: 40px !important;
        line-height: 44px !important;
    }

    .hero-description {
        font-size: 18px !important;
    }

    .hero-girl img {
        width: 100.5% !important;
        height: 756px !important;
        object-fit: contain !important;
    }

    .hero-stats {
        display: inline-flex;
        display: none;
        min-width: none;
        min-height: none;
        margin: auto;
    }

    .hero-section {
        align-items: end;
    }

    .hero-stats .stat-box:nth-child(3) {
        grid-column: 1 / -1 !important;
        justify-self: center !important;
    }

    .stat-box {
        width: 120px !important;
        height: 120px !important;
    }

    .hero-contact {
        flex-direction: column !important;
        gap: 15px !important;
    }

}

@media (max-width: 440px) {
    .hero-title {
        font-size: 40px !important;
        line-height: 100% !important;
    }

    .hero-description {
        font-size: 18px !important;
    }

    .stat-box img {
        width: 64px !important;
        height: 64px !important;
    }

    .hero-desktop {
        display: none;
    }

    .hero-mobile {
        display: block;
    }

    .hero-background {
        background-image: url('/images/hero-mobile.png');
        background-repeat: no-repeat;
        background-position: center;
    }

    .hero-main {
        background: rgba(255, 255, 255, 0.5);
        box-shadow: 10px 19px 30px rgb(255 255 255 / 100%);
        padding: 0px 5px 0px;
    }

    .hero-logo img {
        max-width: 100% !important;
        height: 184px;
        max-height: 184px;
    }

}