/**
Theme Name: Astra Child Theme
Theme URI: https://wpastra.com/
Author: wsa
Author URI: https://wpastra.com/about/?utm_source=theme_preview&utm_medium=author_link&utm_campaign=astra_theme
Description: Astra Child theme
Version: 1.0
Template: astra
/* Note: The CSS files are loaded from assets/css/ folder. */

.site-info:after {
    content: none !important;
}

.ast-footer-copyright {
    content: none !important;
}

/**
 * BOF to make the header fixed.
 */
#ast-desktop-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    /* Adjust the z-index as needed */
    /*    background-color: #000000;*/
}

#ast-mobile-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    /* Adjust the z-index as needed */
    margin-bottom: 500px;
    /*    background-color: #000000;*/
}

/*Adjust body padding to prevent content from hiding behind the fixed header */
body {
    padding-top: 1%;

}



/* Next Styling*/
/* Next Styling*/
.homepage-div {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    padding-left: 5%;
    padding-right: 5%;
    margin-top: 0;
    min-height: 60vh;
}


.homepage-text-div {
    max-width: 50%;
    width: 100%;
    line-height: 1.5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    font-size: 30px;
}

.headtextspan-homepage-text-div {
    width: 100%;
    font-size: 50px;
}

.focus-headtextspan-homepage-text-div {
    color: #D7FF81;
    /*green yellow*/
    font-weight: bold;
}

.subtextspan-homepage-text-div {
    margin-top: 20px;
    margin-bottom: 20px;
    width: 100%;
}

.homepage-buy-now-button {
    display: inline-block;
    padding: 12px 28px;
    background-color: #0073e6;
    color: #fff;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    margin-top: 8px;
}

.homepage-images-div {
    max-width: 50%;
    width: 100%;
}

.homepage-images-div .app-ss-image {
    display: block;
    max-height: 500px;
    margin: 20px auto;
    width: auto;

}

/* Store buttons styling */
.homepage-images-div .download-links {
    text-align: center;
    margin-top: 20px;
}

.homepage-images-div .store-button {
    margin: 5px;
    width: auto;
    height: 50px;
    /* Ensure the buttons aren't too large */
}

.mobile-social-icons-div {
    margin-top: 50px;
    display: none;
}

.mobile-download-buttons {
    display: none;
}

.download-buttons {
    display: block;
}

/* For body text */
.custom-center-div {
    width: 100%;
    text-align: center;
}


/* For about us and contact us image div */
.wp-block-uagb-container {
    max-height: 300px;
    margin-bottom: 50px;
}




/* BOF Media query for mobile devices */
@media (max-width: 767px) {
    .homepage-div {
        margin-top: 6%;
        padding-left: 5%;
        padding-right: 5%;
        padding-top: 0;
        flex-direction: column;
    }

    .homepage-div .custom-center-div {
        display: none;
    }

    .homepage-text-div {
        text-align: center;
        /* Ensure text is left-aligned */
        font-size: 16px;
        margin-bottom: 5%;
    }

    .headtextspan-homepage-text-div {
        font-size: 25px;
    }

    .subtextspan-homepage-text-div {
        margin-bottom: 24px;
    }

    .homepage-buy-now-button {
        display: block;
        width: 100%;
        max-width: 320px;
        box-sizing: border-box;
        margin: 24px auto 0 auto;
    }

    .mobile-social-icons-div {
        display: block;
    }

    .mobile-download-buttons {
        display: block;
    }

    .download-buttons {
        display: none;
    }

    .ast-separate-container {
        padding-top: 8%;
    }


}

/* EOF Media query for mobile devices */


/* Team page shortcode */
.team-page-section {
    width: 100%;
    max-width: 900px;
    padding: 0 5%;
    margin: 2rem auto;
}

.team-grid {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.team-member-card {
    flex: 1 1 0;
    min-width: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0.5rem;
    text-align: center;
}

.team-member-photo {
    width: 220px;
    height: 220px;
    border-radius: 999px;
    border: 4px solid #8a8a8a;
    object-fit: cover;
    margin: 0 auto 1rem;
    display: block;
}

.team-member-name {
    /* color: var(--primarytextcolor); */
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 0.12rem 0;
}

.team-member-role {
    color: var(--primarytextcolor);
    font-size: 1rem;
    line-height: 1.25;
    margin: 0 0 0.6rem 0;
}

.team-member-linkedin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primarytextcolor);
}

.team-member-linkedin-icon {
    width: 5rem;
    /* height: 28px; */
    display: block;
}

.team-member-linkedin:hover {
    color: #93d89d;
    opacity: 0.9;
}