*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
}

:root{
    --purple-color: #C271FF;
    --light-color: #FFFFFF;
    --font: "Source Sans 3", sans-serif;
    
}

body {
    font-family: var(--font);
    color: var(--light-color);
}

.start {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: wrap;
    width: 100%;
    padding: 10px 45px 80px;
}

.hero-section {
    background-image: url(Images/Object.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}


.links {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

header nav ul li a {
    text-decoration: none;
    color: var(--light-color);
}

.hero-board {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

h1 {
    /*width: 100%;*/
    text-align: center;
    font-weight: 700;
    font-size: clamp(2rem, 8vw, 7rem);
}

.board {
    display: flex;
    justify-content: center;
    gap: 4em;
    margin-top: -20px;
}

.button-container {
    background-color: #C271FF;
    border-radius: 20px;
    /*padding: 15px 10px;*/
    color: #FFFFFF;
    margin: 20px 0px 100px;
    width: 160px;
    height: 45px;
}

.team {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding: 40px;
}

.H2 {
    font-weight: 300;
}

.span1 {
    color: var(--purple-color) ;
    font-weight: 700;
}
.people {
    display: flex;
    flex-direction: row;
    margin-top: 75px;
    gap: 100px;
    text-align: center;
    flex-wrap: wrap;
}

.pic {
    border-radius: 100px;
}

/* Quote Section */
.quote-sec {
    background-color: var(--purple-color);
    display: flex;
    justify-content: center;
    padding: 70px 0;
    gap: 25px;
}

.Quote2 {
    display: flex;
    flex-direction: column;
    max-width: 60%;
    gap: 7px;

}

/* Tutorials */
.tutorials-section{
    display: flex;
    justify-content: center;
    flex-direction: column;
    color: black;
    text-align: center;
    padding: 50px;
}

.main-tut{
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 50px;
    gap: 20px;
    flex-wrap: wrap;
}

.tut-card {
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 5px;


} 

.tutor{
    display: flex;
    flex-direction: row;
    gap: 20px;
    text-align: center;
    color: #C271FF;
    align-items: center;
    margin-top: 15px;
}

.tutor img {
    width: 15%;
    height: auto%;
}


.min-likes {
    display: flex;
    flex-direction: row;
    /* justify-content: flex-end; */
    justify-content: space-around;
    
}

.likes {
    display: flex;
    flex-direction: row;
    justify-self: flex-start;
    /* color: #C271FF; */
}

.pink {
    color: #C271FF;
}

.grey {
    color: grey;
}

/* membership */
 
.membership {
    background-color: #071629;
    display: flex;
    flex-direction: column;
    /* justify-content: space-evenly; */
    align-items: center;
    padding: 50px 0 10px;
}

.members {
    display: flex;
    flex-direction: row;
    margin: 50px;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.members div {
    text-align: center;
    max-width: 20%;
    align-items: center;
}


/* faq sections */
.faq-section {
    padding: 50px 0;

}

.faq-section h2 {
    text-align: center;
    font-size: 60px;
    font-weight: 300;
    color: #071629;
    margin-bottom: 50px;
}



.faq {
    /* color: #071629; */
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 0 20px;
}

.faq > div {
    flex-basis: 400px;
    flex-grow: 1;
}

.faq > div h3 {
    font-weight: 700;
    font-size: 16px;
    color: #071629;
    padding-bottom: 15px;
}

.faq > div p {
    font-size: 14px;
    line-height: 1.5;
    color: #071629;
}


/* footer styles */
.footer {
     background-color: #071629;
     display: flex;
     justify-content: space-around;

}
.footer-section {
    /* background-color: #071629; */
    display: flex;
    justify-content: flex-end;
    flex-direction: row;
    height: auto;
    gap: 650px;
}

.footer-section div {
   padding: 50px;
}

.copyright {
    background-color: #071629;
    text-align: center;
    /* color: #071629; */
    color: gray;
    font-size: 0.8rem;
    padding: 25px;
}

    /* Universal responsive image styles */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Ensure flex containers wrap */
    .people, .main-tut, .members, .faq {
        flex-wrap: wrap;
    }

    /* Responsive Design */
    @media (max-width: 600px) {
        .start {
            flex-direction: column;
            padding: 10px 10px 40px;
        }
        .links {
            display: none;
            flex-direction: column;
            gap: 1rem;
            align-items: center;
        }
        .hamburger-menu {
            display: block;
            cursor: pointer;
        }
        .hamburger-menu span {
            display: block;
            width: 25px;
            height: 3px;
            margin: 5px;
            background-color: var(--light-color);
        }
        .links.active {
            display: flex;
        }
        h1 {
            font-size: 2.5rem;
        }
        .board {
            gap: 1em;
            flex-direction: column;
            margin-top: 0;
        }
        .team {
            padding: 20px;
        }
        .people {
            flex-direction: column;
            gap: 30px;
            margin-top: 30px;
        }
        .quote-sec {
            flex-direction: column;
            padding: 30px 0;
            gap: 15px;
            align-items: center;
        }
        .Quote2 {
            max-width: 100%;
        }
        .tutorials-section {
            padding: 20px;
        }
        .main-tut {
            flex-direction: column;
            margin: 20px 0;
            gap: 20px;
        }
        .tut-card {
            text-align: center;
        }
        .members {
            flex-direction: column;
            margin: 20px 0;
            gap: 20px;
        }
        .members div {
            max-width: 100%;
            margin-bottom: 20px;
        }
        .faq {
            flex-direction: column !important;
            gap: 30px;
            margin: 10px 0;
        }
        .faq-section {
            padding: 10px 1rem;
        }
        .footer {
            flex-direction: column;
            align-items: center;
        }
        .footer-section {
            flex-direction: column;
            gap: 30px;
            height: auto;
            justify-content: center;
            align-items: center;
        }
        .footer-section div {
            padding: 20px;
        }
    }

    @media (min-width: 601px) and (max-width: 1024px) {
        .start {
            padding: 10px 20px 60px;
        }
        .links {
            display: flex;
        }
        .hamburger-menu {
            display: none;
        }
        h1 {
            font-size: 4rem;
        }
        .board {
            gap: 2em;
        }
        .team {
            padding: 30px;
        }
        .people {
            gap: 40px;
            margin-top: 40px;
        }
        .quote-sec {
            gap: 20px;
            padding: 40px 0;
        }
        .tutorials-section {
            padding: 30px;
        }
        .main-tut {
            gap: 15px;
            margin: 30px 0;
        }
        .members {
            gap: 30px;
            margin: 30px 0;
        }
        .members div {
            max-width: 40%;
        }
        .faq {
            gap: 40px;
            margin: 15px 0;
        }
        .faq-section {
            padding: 15px 2rem;
        }
        .footer-section {
            gap: 100px;
            height: auto;
        }
        .footer-section div {
            padding: 30px;
        }
    }

    @media (min-width: 1025px) {
        .links {
            display: flex;
        }
        .hamburger-menu {
            display: none;
        }
        h1 {
            font-size: 120px;
        }
        .board {
            gap: 4em;
        }
        .main-tut {
            gap: 20px;
            margin: 50px;
        }
        .members {
            gap: 40px;
            margin: 50px;
        }
        .footer-section {
            gap: 650px;
            height: auto;
        }
    }

.hamburger-menu {
    display: none;
}