/*
* eMaestro - Main Stylesheet
* This is the main stylesheet for the eMaestro SaaS application
*/

/* ======= Base Styles ======= */
:root {
    --primary-color: #313a6d;
    --primary-dark: #1565c0;
    --primary-light: #64b5f6;
    --secondary-color: #b04994;
    --text-color: #333333;
    --text-light: #757575;
    --text-white: #ffffff;
    --bg-light: #f5f7fa;
    --bg-dark: #2c3e50;
    --border-color: #e0e0e0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #ffffff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

.btn-home {
    display: inline-block;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary-home {
    background-color: var(--secondary-color);
    color: var(--text-white);
    border: 2px solid var(--primary-color);
}

.btn-primary-home:hover {
    background-color: #3a4793;
    border-color: white;
    color: var(--text-white);
}


.btn-secondary-home {
    background-color: var(--primary-color);
    color: var(--text-white);
    border: 2px solid var(--primary-color);
}

.btn-secondary-home:hover {
    background-color: #3a4793;
    border-color: white;
    color: var(--text-white);
}

.btn-outline-home {
    background-color: transparent;
    color: var(--text-white);
    border: 2px solid white;
}

.btn-outline-home:hover {
    background-color: #3a4793;
    color: var(--text-white);
}

.btn-light {
    background-color: var(--text-white);
    color: var(--primary-color);
    border: 2px solid var(--text-white);
}

.btn-light:hover {
    background-color: transparent;
    color: var(--text-white);
}

.section-header {
    margin-bottom: 50px;
}

.section-title {
    font-size: 36px;
    margin-bottom: 15px;
    position: relative;
}

.section-divider {
    width: 70px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 0 auto;
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-primary-home {
    background-color: var(--primary-color);
    color: var(--text-white);
}

section {
    padding: 80px 0;
}

/* ======= Header ======= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 15px 0;
    background-color: var(--primary-color);
    box-shadow: 5px 3px 20px white;
    z-index: 1000;
    transition: var(--transition);
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    max-height: 50px;
}

.main-navigation {
    display: flex;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0 15px;
    cursor: pointer;
}

.nav-menu li:last-of-type {
    a{
        color: white;
        font-weight: 500;
        padding: 8px;
        position: relative;
        text-decoration: none;
        background-color: var(--secondary-color);
        border-radius: 8px;
    }

    a:hover{
        background-color: #3a4793;
    }

    a:after{
        content: '';
        position: absolute;
        width: 0;
        height: 0;
        bottom: 0;
        left: 0;
    }
}

.nav-menu li a {
    color: white;
    font-weight: 500;
    padding: 5px 0;
    position: relative;
    text-decoration: none;
    cursor: pointer;
}

.nav-menu li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    bottom: 0;
    left: 0;
    transition: var(--transition);
    cursor: pointer;
}

.nav-menu li a:hover:after,
.nav-menu li a.active:after {
    width: 100%;
}

.header-buttons {
    display: flex;
    gap: 10px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    width: 30px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    height: 3px;
    width: 100%;
    background-color: white;
    margin: 3px 0;
    transition: var(--transition);
}

/* ======= Hero Section ======= */
.hero-section {
    padding: 180px 0 100px;
    background-color: #313a6d;
    position: relative;
    overflow: hidden;
}

.hero-content {
    padding-right: 30px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.hero-subtitle {
    font-size: 18px;
    color: white;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-image {
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

/* ======= About Section ======= */
.about-section {
    background-color: var(--bg-light);
}

.about-content {
    text-align: center;
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
}

/* ======= Features Section ======= */
.feature-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.feature-card-box{
    width: calc((100% / 3) - 12px);
}

.feature-card {
    background-color: var(--primary-color);
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
    height: 100%;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    text-align: center;
}
.feature-icon i{
    /*background-color: var(--text-white);*/
    /*padding: 12px;*/
    /*border-radius: 50%;*/
    /*width: 70px;*/
}

.feature-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-white);
    text-align: center;
}

.feature-description {
    color: var(--text-white);
    font-size: 16px;
    text-align: center;
}

/* ======= CTA Section ======= */
.cta-section {
    padding: 60px 0;
}

.cta-content h2 {
    font-size: 28px;
    margin-bottom: 0;
}

/* ======= Contact Section ======= */
.contact-section {
    background-color: #ffffff;
}

.contact-info {
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 48px;
}

.info-icon {
    font-size: 24px;
    color: white;
    margin-right: 20px;
    min-width: 40px;
    text-align: center;

    i{
        background-color: var(--secondary-color);
        padding: 12px;
        border-radius: 50%;
        width: 48px;
        height: 48px;
    }
}


.info-content h4 {
    font-size: 18px;
    margin-bottom: 0;
}

.info-content p {
    color: var(--text-light);
    margin-bottom: 0;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.2);
}

/* ======= Footer ======= */
.site-footer {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 70px 0 0;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    max-height: 100px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
}

.widget-title {
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.widget-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    text-decoration: none;
}

.footer-links li a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact p i {
    margin-right: 10px;
    color: white;
}

.footer-contact p a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.footer-contact p a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    transition: var(--transition);
    text-decoration: none;
}

.social-links a:hover {
    /*background-color: var(--primary-color);*/
    transform: translateY(-3px);
}

.copyright-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    margin-top: 30px;
}

.copyright-text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

/* ======= Responsive Styles ======= */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 42px;
    }
}


@media (max-width: 1024px) {
    .section-title {
        font-size: 28px;
    }

    .registration-section{
        padding: 100px 0;

        .section-subtitle{
            margin-top: 12px;
        }
    }

    .hero-title {
        font-size: 32px;
    }

    .nav-menu {
        display: none;
    }

    .header-buttons {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-active .nav-menu {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background-color: #ffffff;
        box-shadow: var(--shadow);
        padding: 20px;
    }

    .mobile-menu-active .nav-menu li {
        margin: 10px 0;
    }

    .feature-cards {
        gap: 12px;
    }

    .feature-card-box{
        width: calc((100% / 2) - 12px);
    }


    .footer-logo{
        display: flex;
        justify-content: center;
    }

    .footer-description{
        text-align: center;
    }

    .widget-title, .footer-links{
        text-align: center;
    }

    .footer-contact p{
        justify-content: center;
    }

    .social-links{
        justify-content: center;
        margin-top: 48px;
    }

    .nav-menu li{
        text-align: center;
    }

    .nav-menu li a{
        color: black;
    }
}

@media (max-width: 991px) {
    section {
        padding: 60px 0;
    }

    .hero-section {
        padding: 150px 0 80px;
    }

    .hero-image img{
        max-width: 55%;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .feature-card {
        margin-bottom: 30px;
    }

    .cta-content {
        text-align: center;
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    /*.section-title {*/
    /*    font-size: 28px;*/
    /*}*/

    /*.hero-title {*/
    /*    font-size: 32px;*/
    /*}*/

    /*.nav-menu {*/
    /*    display: none;*/
    /*}*/

    /*.header-buttons {*/
    /*    display: none;*/
    /*}*/

    /*.mobile-menu-toggle {*/
    /*    display: flex;*/
    /*}*/

    /*.mobile-menu-active .nav-menu {*/
    /*    display: flex;*/
    /*    flex-direction: column;*/
    /*    position: absolute;*/
    /*    top: 80px;*/
    /*    left: 0;*/
    /*    right: 0;*/
    /*    background-color: #ffffff;*/
    /*    box-shadow: var(--shadow);*/
    /*    padding: 20px;*/
    /*}*/

    /*.mobile-menu-active .nav-menu li {*/
    /*    margin: 10px 0;*/
    /*}*/

    /*.feature-cards {*/
    /*    gap: 0px;*/
    /*}*/

    .feature-cards {
        gap: 12px;
    }

    .feature-card-box{
        width: 100%;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 24px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}
