*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

.hamburger-menu {
    display: none;
    cursor: pointer;
    font-size: 30px;
}

.sidebar {
    display: none; 
    position: fixed;
    background-image: url(../images/Wall-03.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    top: 0;
    right: 0; 
    height: 100%;
    width: 250px;
    z-index: 1000;
    flex-direction: column;
    padding: 20px;
    text-align: left;
    transform: translateX(100%); 
    transition: transform 0.3s ease;
}


.sidebar.active {
    transform: translateX(0); 
    display: flex; 
    justify-content: space-between;
}

.sidebar .logo{
    flex-direction: column;
    margin-top: 50px;
}

.sidebar.active a{
    color: #fff;
    width: max-content;
}

.sidebar.active a.active{
    color: #01AF78;
}

.sidebar.active .login{
    color: #fff;
}

.nav-items {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.close-btn {
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 20px;
}

a{
    text-decoration: none;
}

.navbar .container{
    display: flex;
    justify-content: space-between;
    padding: 15px 50px;
}

.navbar{
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 2;
    background: #fff;
}

.nav-links, .logo{
    display: flex;
    align-items: center;
    gap: 50px;
}

.logo{
    gap: 10px;
}

nav a{
    color: #212121;
    font-weight: 600;
    font-size: 14px;
    transition: all ease 0.3s;
    display: flex;
    gap: 7px;
}

nav a:hover{
    color: #01AF78;
}

.logo img{
    width: 35px;
    height: auto;
}

.logo-btn{
    font-size: 20px;
    font-family: 'Montserrat Alternates';
}

.logoBtn{
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #212121;
    text-align: center;
}

.auth-buttons button{
    padding: 10px 25px;
    border: none;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all ease 0.3s;
}

.signup{
    color: #fff;
    background-color: #212121;
}

.login{
    background-color: transparent;
}

.login:hover{
    background-color: #f1f1f1;
}

.signup:hover, .cta:hover{
    opacity: 0.9;
    transition: all ease 0.3s;
}

.active{
    color: #01AF78;
}

.hero {
    background-color: #f1f1f1;
    padding: 60px 0;
    text-align: center;
    color: #333;
}

.hero h1 {
    font-size: 30px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 14px;
    color: #666;
}

p{
    font-size: 14px;
}

/* About, Mission, and Values Section */
.about-section, .mission-section, .values-section {
    padding: 60px 20px;
    text-align: center;
}

.about-section h2, .mission-section h2, .values-section h2 {
    font-size: 30px;
    color: #333;
    margin-bottom: 20px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
    padding: 0px 20px;
}

.value-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.1);
}

.value-item h3 {
    font-size: 15px;
    padding-bottom: 10px;
}

.value-item p {
    font-size: 14px;
}

/* Team Section */
.team-section {
    background-color: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px;
}

.team-member {
    background-color: #fff;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.team-member img {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin-bottom: 10px;
}

.team-member h3 {
    font-size: 16px;
    margin-bottom: 5px;
}

.team-member p {
    font-size: 14px;
}

/* Call to Action Section */
.cta-section {
    background-color: #27C291;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 25px;
    margin-bottom: 10px;
}

.cta-section p {
    font-size: 14px;
    margin-bottom: 20px;
}

.cta-btn {
    background-color: #fff;
    color: #27C291;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 12px;
}

.footer {
    background-color: #f9f9f9;
    color: #212121;
    padding: 40px 0 20px 0;
}

.footer-section {
    margin-bottom: 20px;
}

.footer .container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
    justify-content: space-between;
}

.footer .logo-description p {
    max-width: 250px;
    font-size: 13px;
    margin-top: 10px;
    color: #6a6a6a;
}

.footer .logo-description a{
    font-size: 18px;
    font-weight: 600;
}

.footer .logo-description img{
    width: 35px;
    height: auto;
}


.footer-section h4 {
    color: #01AF78;
    font-size: 13px;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin: 5px 0;
}

.footer-section a {
    color: #212121;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
}

.contact-info{
    font-size: 13px;
}

.contact-info p{
    margin: 5px 0;
}

.footer-section a:hover {
    text-decoration: underline;
}

.social-links a {
    margin-right: 10px;
    color: #212121;
    font-size: 17px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    font-size: 13px;
}


@media (min-width: 360px) and (max-width: 700px) {
    .nav-links {
        display: none;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .desktop{
        display: none !important;
    }

    .sidebar {
        display: flex; 
    }

    .sidebar.active .nav a{
        color: #fff;
    }

    .logo{
        gap: 10px;
    }

    .auth-buttons{
        display: flex;
        flex-direction: column;
    }

    .logoBtn{
        display: none;
    }

    .hamburger-menu {
        display: block;
    }

    .navbar .container {
        position: relative;
        padding: 10px 15px;
    }

    .nav-links.active {
        display: flex;
    }

   

    
}

@media (min-width: 700px) and (max-width: 1000px){
    .logo{
        gap: 10px;
    }

    .nav-links{
        gap: 20px;
    }

    .navbar .container{
        padding: 15px 30px;
    }

    
}