/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    height: auto;
    min-height: 100vh;
    font-family: "Absolut Headline Web 2021";
    background-color: var(--body-color);
    color: var(--label-color);

}

/* IMAGINI */
img {
    width: 100%;
    height: auto;
}

/* Sectiune hero: text stanga + poza dreapta */
.hero {
    display: flex;
    /* align-items: center; */
    align-items: flex-start;
    padding: 8% 50px 50px;
    gap: 40px;
    min-height: 75vh;
}

/* Text stanga */
.hero-content {
    flex: 1;
}

/* Imagine dreapta */
.hero img {
    flex: 1;
    width: 50vw;
    height: 75vh;
    object-fit: cover;
    border: 3px;
    /*solid var(--h1-color); */
    border-radius: 5%;
    margin-top: 5vh;

    /* AFISARE IMAGINI INTEGRALE - TREBUIE IMAGINE 1536x1024 */
    /* width: 50vw;
    height: auto;
    object-fit: contain; 
    border: 3px;
    border-radius: 5%; */

}

/* Stiluri text */
.hero-content h1 {
    margin-bottom: 20px;
    color: var(--h1-color);
}

.hero-content label {
    font-size: 18px;
    line-height: 1.6;
}

/* FAQ SECTION */
.faq-single {
    margin: 2em auto 3em auto;
    width: 80%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
}



.faq-item {
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    background: var(--body-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    background: var(--body-color);;
    color: var(--label-color);
    padding: 1rem 1.5rem;
    font-family: "Absolut Headline Web 2021";
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
    border: 3px solid transparent; 
    outline: none;
    font-weight: bold;
    cursor: pointer;
    /* transition: all 0.25s ease; */
}

.faq-question:hover {
    background: var(--body-color);
    border: 3px solid var(--label-color);
    border-radius: 10px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: var(--body-color);;
    padding: 0 1.5rem;
    transition: max-height 0.35s ease;
}

.faq-answer p {
    font-family: "Absolut Headline Web 2021";
    font-size: 0.95rem;
    line-height: 1.5;
    padding: 1rem 0;
    color: var(--label-color);

}


/* MEDIA */
@media (max-width: 1024px) {
    .hero {
        padding: 20% 30px 40px;
        gap: 20px;
    }

    .hero-content h1 {
        font-size: 4vw;
    }

    .hero-content label {
        font-size: 1.6vw;
    }

    .hero img {
        height: 50vh;
    }
}


@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        align-items: center;  
        text-align: center;
        padding: 25% 20px 40px;
    }
    
  .hero img {
        display: none;
    }

    .hero-content h1 {
        font-size: 8vw;
    }

    .hero-content label {
        font-size: 4vw;
    }

    .faq-question {
        font-size: 1.2rem;
    }

    .faq-answer p {
        font-size: 1rem;
    }
}


@media (max-width: 480px) {
    .hero {
        padding-top: 30%;
    }

    .hero-content h1 {
        font-size: 9vw;
    }

    .hero-content label {
        font-size: 4.5vw;
    }

    .faq-question {
        font-size: 1.1rem;
    }

    .faq-answer p {
        font-size: 0.95rem;
    }
}

@media (max-width: 420px) {
    .faq-answer {
        padding: 0 1rem;
    }

    .faq-answer p {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .faq-question {
        font-size: 1rem;
        padding: 0.8rem 1rem;
    }
}

/* Colorare link mail */
.hero-content label a {
    color: inherit;
    text-decoration: none;
}

.hero-content label a:hover {
    text-decoration: underline;
}