@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');
/* General reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: linear-gradient(90deg, rgb(198, 131, 214), rgb(247, 165, 219));
    position: relative;
    z-index: 10;
}

/* Logo */
.logo img {
    width: 120px;
    height: auto;
}

/* Navbar Links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    transition: all 0.5s ease;
}

.nav-links li {
    display: inline-block;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.3s ease-in-out;
}

.nav-links a:hover {
    color: #ffd700; /* Golden color on hover */
    transform: translateY(-2px);
}

/* Menu Bar (Hamburger Icon) */
.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 25px;
    color: white;
}

/* Social Icons */
.social-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon {
    color: white;
    font-size: 20px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.icon:hover {
    color: #ffd700;
    transform: scale(1.2);
}

/* About Section */
.about-section {
    padding: 150px 30px 100px;
    background-color: #f9f9f9;
    text-align: center;
}

.about-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-section h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #333;
}

.about-section p {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Team Section */
.team-section {
    padding: 100px 30px;
    background-color: #fff;
    text-align: center;
}

.team-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.team-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: #333;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team-member {
    background-color: #f4f4f4;
    padding: 30px;
    border-radius: 10px;
    transition: transform 0.3s ease;
    text-align: center;
}

.team-member img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
}

.team-member h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
}

.team-member p {
    font-size: 18px;
    color: #666;
}

.team-member:hover {
    transform: translateY(-10px);
}

/* Footer */
.footer {
    background-color: #333;
    padding: 20px 30px;
    color: white;
    text-align: center;
}

.footer .social-icons {
    margin-top: 10px;
}

.footer .social-icons a {
    color: white;
    font-size: 20px;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.footer .social-icons a:hover {
    color: #eab0ff;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 15px 0;
        align-items: flex-start;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        gap: 20px;
        width: 100%;
        background: rgba(0, 0, 0, 0.8);
        position: absolute;
        left: 0;
        top: 70px;
        padding: 20px 0;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
        position: absolute;
        font-size: 25px;
        right: 30px;
        top: 50px;
    }

    .social-icons {
        display: none;
    }
}

@media screen and (max-width: 480px) {
    .about-section h1 {
        font-size: 30px;
    }

    .team-section h2 {
        font-size: 26px;
    }

    .team-member h3 {
        font-size: 20px;
    }

    .team-member p {
        font-size: 14px;
    }
}
