@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-background: black;
    --color-background-Dark: #1f1f1f;
    --color-icons: coral;
    --color-text-light: white;
    --color-text-emphasis: #5C2FC2;
    --color-body-soft: #f1f1f1;
}


.banner {
    height: 70vh;
    background-color: var(--color-text-emphasis);
    background-image: url(../imgs/background.jpg) ;
    background-size: cover;
    justify-content: center;
    align-items: center;
    color: white;
    background-position: center;
    font-size: 2rem;
    position: relative;
    display: flex;
    width:100% ;
}

.banner-overlay {
    height: 50vh;
    width: 100%;
    opacity: .3;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;

}

.text {
    position: relative;
    z-index: 50;
}
.main {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    background-color: var(--color-background-Dark);
}

/* ABOUT SECTION /*/
.about__container {
    width: 100%;
    display: flex;
    flex-direction: row;
    background-color: var(--color-background-Dark);
    max-width: 1200px;

}
.text__container {
    width: 50%;
    padding: 20px;
}

.text__container p {
    font-family: montserrat;
    flex-grow: 1;
    padding-bottom: 30px;
    font-weight: 500;
    line-height: 1.5;
}

.image__container {
    width: 50%;
    margin: auto;
    flex-grow: 1;
    padding: 30px;
}

.image__container img {
    width: 100%;
    box-shadow: 0px 4px 8px rgba(255, 255, 255, 0.301);
}

.title {
    font-size: 3rem;
    margin-bottom: 10px;
    font-weight: 400;
    text-align: center;
}

.container-social {
    margin-top: 5px;
    padding-top: 5px;
    border-top: 2px solid #e4e4e4;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

}



.container-buttons-social {
    display: flex;
    gap: 0 10px;
}
.container-buttons-social a {
    font-size: 40px;
    align-self: flex-end;
    color: var(--color-text-emphasis);
    transition: all .3s ease;
}
.container-buttons-social a:hover {
    align-self: flex-end;
    color: rgb(132, 13, 243);
    transform: scale(1.1);
}


/*  FAQ CONTAINER    */
.faq__container {
    width: 100%;
    background: var(--color-body-soft);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.faqboxes {
    min-width: 200px;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-title {
    font-size: 3rem;
    color: black;
    text-align: center;
    padding: 20px 0;
}

.cuestion {
    color: black;
    background: var(--color-accent-Dark);
    padding: 15px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s;
}

.cuestion h3 {
    font-weight: 400;
    text-transform: capitalize;
}

.cuestion:hover {
    background: #b9b6b6;
}

.answer {
    color: black;
    border-radius: 0 0 8px 8px;
    padding: 0 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.answer.open {
    max-height: 200px; 
}




@media only screen and (max-width: 767px) {
    .about__container {
        flex-direction: column;
    }
    .text__container, .image__container {
        width: 100%;
    }
    .faqboxes {
        min-width: 200px;
    }




}
