/* Base styles */
:root {
    --primary-purple: #7f5c8d;
    --secondary-bg: #f5f7fa;
    --light-purple: #edeefb;
    --dark-purple: #5f3c6d;
    --white: #ffffff;
    --text-dark: #333333;
    --text-light: #ffffff;
    --font-family: 'Arial', sans-serif;
}

body, html {
    margin: 0;
    padding: 0;
    font-family: var(--font-family);
    background-color: var(--white);
    color: var(--text-dark);
}

/* Navigation Styles */
header nav {
    background-color: var(--light-purple);
    padding: 0 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

nav ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}


nav ul li:not(:first-child) {
    margin-left: auto;
}

nav ul li a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--primary-purple);
    text-decoration: underline;
}

nav ul li a:target {
    color: var(--primary-purple);
    text-decoration: underline;
}

nav button {
    background-color: var(--primary-purple);
    color: var(--text-light);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

nav button:hover {
    background-color: var(--dark-purple);
}

/* Hero Section */
.hero-section {
    background-color: rgba(245, 247, 250, 1);
    position: relative;
}
.hero-section p {
    color: var(--dark-purple);
}
.hero-section .search-input {
    position: absolute;
    right: 5%;
    top: 5%;
}
.hero-section .text-wrapper-2 {
    font-size: 56px; /* adjust as needed */
    margin-bottom: 20px;
    margin-top: 20px;
    color: var(--dark-purple);
}
/* Update the color of the Register button */
.hero-section .label-wrapper {
    background-color: var(--dark-purple);
}

.hero-section .label-wrapper:hover {
    background-color: var(--primary-purple);
}
.hero-section .frame {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px; /* adjust as needed */
}

.hero-section .DALLE {
    margin-bottom: 20px; /* adjust as needed */
}

.hero-section .label-wrapper {
    background-color: var(--primary-purple);
    color: var(--text-light);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 20px;
}

.hero-section .label-wrapper:hover {
    background-color: var(--dark-purple);
}

.hero-section .unlock-the-power-of {
    text-align: center;
    width: 60%;
}

.search-bar .content {
    flex-direction: column;
    width: 237px;
    height: 105px;
    gap: 11.14px;
    padding: 11.14px;
    margin-top: -66.82px;
    background-color: var(--neutralsilver);
    border-radius: 5.57px;
    box-shadow: 0px 5.57px 11.14px #abbed166;
    display: flex;
    align-items: center;
    position: relative;
}

.search-bar .text-wrapper-3 {
    position: relative;
    width: 214px;
    height: 42px;
    margin-top: -0.7px;
    font-family: "Inter", Helvetica;
    font-weight: 600;
    color: var(--neutralgrey);
    font-size: 13.9px;
    text-align: center;
    letter-spacing: 0;
    line-height: 19.5px;
}

/* Students Section */
.clients {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.clients header {
    margin-top: 5%;
}


.clients .section-title {
    font-size: 2em; /* adjust as needed */
    text-align: center;
    margin-bottom: 1em;
    color: var(--dark-purple);
}

.clients .description {
    text-align: center;
    margin-bottom: 2em;
    color: var(--dark-purple);
}

/* Styles for the student profiles section */
.student-profiles {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.member {
    width: calc(33.33% - 6em);
    margin: 3em;
    border: 1px solid var(--primary-purple);
    padding: 20px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}
.member:hover {
    transform: scale(1.05);
}

.member .icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1em;
}

.member .img {
    width: 50%; /* adjust as needed */
}

.member .student-name {
    text-align: center;
    font-size: 1.5em; /* adjust as needed */
    margin-bottom: 1em;
}

.member .student-description {
    text-align: center;
}

.course-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.course-card {
    width: calc(33.33% - 2em);
    margin: 1em;
    position: relative;
}

.course-content{
    position: absolute;
    bottom: 0;
    background-color: var(--white);
    padding: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: var(--dark-purple);
}
.course-content:hover {
    background-color: var(--light-purple);
}

.course-image {
    width: 100%;
}

.course-goto {
    width: fit-content;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 2%;
    margin-bottom: 2%;
    color: var(--dark-purple);


}

.button-2 {
    background-color: var(--primary-purple); /* Use the primary purple color for the button background */
    color: var(--text-light); /* White text */
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.button-2:hover {
    background-color: var(--dark-purple);
}

.button-2 img {
    margin-left: 10px; /* Add some space between the text and the arrow */
}

.course-link {
    display: flex;
    align-items: center;
    color: var(--dark-purple)
}

.course-arrow {
    margin-left: 0.5em;
}


/* Footer Styles */
footer {
    background-color: var(--dark-purple);
    color: var(--white);
    padding: 20px;
    text-align: center;
}

.footer-big {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    flex-wrap: wrap;
}

.footer-big .col,
.footer-big .col-2 {
    display: flex;
    flex-direction: column;
    padding: 10px;
}

.footer-big .col a,
.footer-big .col-2 a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-big .col a:hover,
.footer-big .col-2 a:hover {
    color: var(--primary-purple);
}
.footer .links {
    display: flex;
    gap: 20px;
}

.footer .links section ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.footer .links ul li a {
    color: var(--white);
    text-align: left;
}
.site-nav {
    margin-right: 10%;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section p {
        padding: 0 10%;
    }

    .search-bar .content {
        width: 80%;
    }

    .div-3 {
        flex-direction: column;
        align-items: center;
    }

    .member {
        width: 80%;
        margin-bottom: 20px;
    }

    .footer-big {
        flex-direction: column;
    }
}
