@import './app.css';

.nav-link {
    color: var(--white-color) !important;
}

.transparent-btn {
    background-color: transparent;
    border: 1px solid #ffffff4d;
    color: #ffffffef;
    border-radius: 0;
    padding: 10px 20px;
    font-weight: 500;
}

.transparent-btn:hover {
    background-color: #ffffff4d;
    color: #ffffffef;
}

.white-btn {
    background-color: var(--white-color);
    color: var(--primary-color);
    border-radius: 0;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    padding: 10px 20px;
    font-weight: 500;
}

.white-btn:hover {
    background-color: var(--white-color);
    color: var(--primary-color);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.212);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white-color);
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    padding: 15px 20px;
    font-weight: 500;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.btn-outline-secondary {
    background-color: transparent;
    color: var(--text-color);
    border: 1px solid var(--text-color);
    border-radius: 10px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    padding: 15px 20px;
    font-weight: 500;
}

.btn-outline-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background-color: transparent;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.hero-section {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding-top: 130px;
    padding-bottom: 130px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 600;
}

.hero-image {
    display: flex;
    justify-content: end;
    align-items: center;
}

.hero-image img {
    border-radius: 15px;
    width: 70%;
    object-fit: cover;
}

.courses-section {
    background-color: var(--secondary-color);
    padding-top: 50px;
    padding-bottom: 50px;
}

.courses-section h2 {
    font-size: 38px;
    font-weight: 600;
    color: var(--primary-color);
}

.course-card-wrapper {
    padding: 15px;
}

.course-card {
    background-color: var(--white-color);
    border-radius: 15px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.course-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.course-content {
    padding: 20px;
}

.course-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
}

.course-content p {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-color);
}

.packages-section {
    background: linear-gradient(to bottom, var(--secondary-color), #EDFBF9);
    padding-top: 50px;
    padding-bottom: 50px;
}

.packages-section h2 {
    font-size: 38px;
    font-weight: 600;
    background: linear-gradient(to right, var(--primary-color), #415CDA);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.package-card-wrapper {
    padding: 15px;
}

.package-card {
    background-color: var(--white-color);
    border-radius: 15px;
    box-shadow: 0 0 18px 0 rgba(45, 45, 45, 0.1);
}

.package-content {
    padding: 20px;
}

.package-content h3 {
    font-size: 18px;
    font-weight: 500;
}

.cta1-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
}

.cta1-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.938);
}

.cta1-content {
    position: relative;
    text-align: center;
}

.cta1-content span {
    font-size: 13px;
    font-weight: 500;
    color: var(--primary-color);
    background-color: #0283FF1A;
    border-radius: 15px;
    padding: 8px 10px;
}

.cta1-section h2 {
    font-size: 42px;
    font-weight: 600;
    color: var(--primary-color);
}

.features-section {
    background-color: var(--secondary-color);
    padding-top: 50px;
    padding-bottom: 50px;
}


.feature-card {
    background-color: var(--white-color);
    border-radius: 15px;
    padding: 20px;
}

.feature-card i {
    font-size: 26px;
    color: var(--primary-color);
    background-color: var(--secondary-color);
    border-radius: 15px;
    padding: 8px 16px;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--black-color);
}

.feature-card p {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-color);
}

.master-class-content {
    padding: 30px;
}

.master-class-content h2 {
    font-size: 36px;
    font-weight: 600;
    color: var(--white-color);
}

.master-class-meta p {
    font-size: 14px;
    font-weight: 400;
    color: var(--white-color);
    background-color: #2E8DFF;
    border-radius: 10px;
    padding: 10px 16px;
}


.testimonials-section {
    background-color: var(--secondary-color);
    padding-top: 0px;
    padding-bottom: 50px;
}

.testimonials-section h2 {
    font-size: 32px;
    font-weight: 600;
}

.instructors-section {
    background-image: linear-gradient(to bottom, var(--secondary-color), var(--white-color));
    padding-top: 50px;
    padding-bottom: 50px;
}

.instructors-section h2 {
    font-size: 32px;
    font-weight: 600;
}

.instructor-card-wrapper {
    padding: 15px;
}

.instructor-card {
    box-shadow: 0 4px 10px 0 rgba(88, 88, 88, 0.082);
}

.instructor-card-body {
    padding: 5px;
}


.faq-section {
    background-color: var(--white-color);
    padding-top: 50px;
    padding-bottom: 50px;
}

.faq-section h2 {
    font-size: 32px;
    font-weight: 600;
}


footer {
    background-color: var(--dark-color);
    color: var(--white-color);
    padding-top: 50px;
    padding-bottom: 15px;
}

.footer-links li {
    color: #d8d8d8ef;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 10px;
}

.footer-text {
    color: #d8d8d8ef;
    font-size: 15px;
    font-weight: 400;
}

.footer-links li a {
    color: #d8d8d8ef;
    font-size: 15px;
    font-weight: 400;
}

.footer-copyright {
    font-size: 14px;
    font-weight: 400;
    text-align: left;
}

.footer-watermark {
    font-size: 14px;
    font-weight: 400;
    text-align: right;
}

.footer-watermark a {
    font-size: 15px;
    font-weight: 400;
    color: var(--text-color);
    text-decoration: none;
}


/* Bundle Page */

.bundle-badge {
    font-size: 14px;
    font-weight: 400;
    color: var(--white-color);
    background-color: #2E8DFF;
    border-radius: 15px;
    padding: 10px 16px;
    width: fit-content;
}

.regular-price {
    font-size: 24px;
    font-weight: 300;
    color: #d8d8d8ef;
}

.sale-price {
    font-size: 24px;
    font-weight: 600;
    color: var(--white-color);
}

.small-text {
    font-size: 14px;
    font-weight: 400;
    color: #d8d8d8ef;
    margin-top: -10px;
}

.enroll-btn {
    width: fit-content;
}


/* Login Section */

.login-section {
    background-color: var(--secondary-color);
    padding-top: 50px;
    padding-bottom: 50px;
}

.login-form {
    width: 100%;
    padding: 30px;
}

.login-form .form-group {
    margin-bottom: 10px;
}

.login-form .form-group label {
    font-size: 14px;
    font-weight: 400;
}

.login-form .form-group input {
    border-radius: 10px;
    border: 1px solid #a8a8a84d;
    padding: 10px 16px;
}

.login-form .btn-primary {
    width: 100%;
    padding: 10px 16px;
    margin-top: 10px;
}


/* Responsive */

@media (max-width: 768px) {
    p {
        font-size: 14px;
    }
    .mob-hide {
        display: none !important;
    }

    #menu-icon {
        font-size: 32px;
        cursor: pointer;
    }

    .offcanvas-nav-link {
        margin-left: 10px;
        font-size: 18px;
        font-weight: 400;
        color: var(--dark-color) !important;
    }

    .offcanvas-nav-link:hover {
        color: var(--primary-color) !important;
    }

    .hero-section {
        padding-bottom: 50px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-image img {
        width: 100%;
        margin-top: 35px;
    }

    .courses-section {
        padding-bottom: 20px;
    }

    .courses-section h2 {
        font-size: 28px;
        margin-bottom: 20px !important;
    }

    .packages-section {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .packages-section h2 {
        font-size: 28px;
        margin-bottom: 20px !important;
    }

    .cta1-section h2 {
        font-size: 28px;
    }

    .cta1-section a {
        font-size: 14px;
        width: 100%;
    }

    .features-section h2 {
        font-size: 28px;
        margin-bottom: 20px !important;
    }

    .feature-card {
        margin-bottom: 20px;
    }

    .master-class-content h2 {
        font-size: 24px;
    }

    .testimonials-section {
        padding-bottom: 10px;
    }

    .testimonials-section h2 {
        font-size: 26px;
    }

    .instructors-section {
        padding-bottom: 10px;
    }

    .instructors-section h2 {
        font-size: 28px;
    }

    .faq-section h2 {
        font-size: 26px;
    }

    .login-form {
        width: 100%;
    }
}
