@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");

*{
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
    font-family: 'Poppins', sans-serif;
}

html, body{ 
    width: 100%;
    height: 100%;
}

body {
  position: relative;
  min-height: 100vh;
  margin: 0;
  font-family: sans-serif;
  overflow-x: hidden;
}

body.dark{
    background-color: #2e2c2c;
}

body.active::before {
  content: "";
  position: fixed; /* Rămâne fix pe ecran */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("images/backgr.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: blur(0px) brightness(0.5); /* blur + întunecare */
  z-index: -1; /* trimite-l în spate */
}

header{
    position: relative;
}

.navbar{
    background-color: #6f4e37;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    color: white;
    font-weight: bold;
    font-size: 30px;
    padding: 5px;
    align-items: center;
    padding-left: 75px;
    padding-right: 75px;
    position: fixed;
    z-index: 100;
    width: 100%;
}

.navbar.dark{
    background-color: #1E1E1E;
}

@media(max-width: 1070px){
    .navbar{
        padding-left: 20px;
        padding-right: 20px;
    }
}

.navbar-mobile{
    background-color: #6F4E37;
    display: none;
    flex-direction: row;
    justify-content: space-between;
    color: white;
    font-weight: bold;
    font-size: 30px;
    padding: 5px;
    height: 57px;
    align-items: center;
    padding-left: 30px;
    padding-right: 30px;
    position: fixed;
    z-index: 98;
    width: 100%;
}

.navbar-mobile.dark{
    background-color: #1E1E1E;
}

.list{
    gap: 30px;
    align-items: center;
    background-color: #6F4E37;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    color: white;
    font-weight: bold;
    font-size: 30px;
    padding: 7px;
    margin-top: 5px;
}

.list.dark{
    background-color: #1E1E1E;
}

.list li{
    list-style-type: none;
    display: flex;
    align-items: center;
}

.list button{
    background-color: transparent;
    border: none;
    color: white;
    font-weight: bold;
    font-size: 20px;
    cursor: pointer;
}

.cart-svg{
    width: 30px;
    height: 30px;
    margin-right: -10px;
    filter: invert(100%);
}

@media(max-width: 880px){
    .navbar{
        display: none;
    }
    .navbar-mobile{
        display: flex;
    }
}

@media(max-width: 510px){
    .navbar-mobile{
        padding-left: 15px;
        padding-right: 15px;
    }
    .list{
        gap: 20px;
    }
    .spc{
        margin-left: 5px;
    }
}


.mobile-menu{
    background-color: #6f4e37db;
    height: 100vh;
    width: 250px;
    z-index: 11;
    position: fixed;
    display: block;
}

.mobile-menu.dark{
    background-color: #1e1e1eac;
}

@media(max-width: 370px){
    .mobile-menu{
        width: 250px;
    }
}

.top-menu{
    width: 100%;
    display: flex;
    text-align: center;
    color: white;
    font-weight: bold;
    font-size: 30px;
    height: 57px;
    background-color: #6f4e37;
    justify-content: center;
    flex-direction: column;
}

.content-menu{
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 20px;
    margin-left: 30px;
    list-style-type: none;
    color: white;
    font-weight: bold;
    font-size: 20px;
}

.content-menu button{
    font-size: 20px;
    color: white;
    background-color: transparent;
    border: none;
    font-weight: bold;
}

#mobile-menu {
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

#mobile-menu.active {
  transform: translateX(0);
}

/****************** Cos cu produse *********************/

.cart-container{
    width: 400px;
    height: 100vh;
    background-color:#6f4e37db;
    position: fixed;
    top: 0px;
    z-index: 10;
    right: 0px;
    border: 3px solid #3c2d22;
    border-right: none;
}

.cart-container.dark{
    background-color: #181717e6;
    border-bottom: none;
    border-left: 2px solid #1E1E1E;
}

#cart-container{
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

#cart-container.active{
    transform: translateX(0%);
  transition: transform 0.3s ease;
}

@media(max-width: 450px){
    .cart-container{
        width: 100%;
        border-radius: 0px;
    }
}

.fav-container{
    width: 400px;
    height: 100vh;
    background-color:#6f4e37db;
    position: fixed;
    top: 0px;
    z-index: 10;
    right: 0px;
    border: 3px solid #3c2d22;
    border-right: none;
}

@media(max-width: 450px){
    .fav-container{
        width: 100%;
        border-radius: 0px;
    }
}

#fav-container{
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

#fav-container.active{
    transform: translateX(0%);
  transition: transform 0.3s ease;
}

.fav-container.dark{
    background-color: #181717e6;
    border-bottom: none;
    border-left: 2px solid #1E1E1E;
}

@media(max-width: 450px){
    .cart-container{
        width: 100%;
        border-radius: 0px;
    }
}

.align-items{
    width: 100%;
    height: 65px;
}

@media(max-width: 880px){
    .align-items{
        height: 54px;
    }
}

.cart-title-container{
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: space-between;
    padding-left: 20px;
    padding-right: 20px;
    align-items: center;
    border-top: 3px solid #3c2d22;
    border-bottom: 3px solid #3c2d22;
    background-color:#6f4e37;
}

.cart-title-container.dark{
    background-color: #2e2c2c;
    border: none;
}


.cart-title-container p{
    color: white;
    font-size: 25px;
    font-weight: bold;
}

.fav-title-container{
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: space-between;
    padding-left: 20px;
    padding-right: 20px;
    align-items: center;
    border-top: 3px solid #3c2d22;
    border-bottom: 3px solid #3c2d22;
    background-color:#6f4e37;
}

.fav-title-container.dark{
    background-color: #2e2c2c;
    border: none;
}


.fav-title-container p{
    color: white;
    font-size: 25px;
    font-weight: bold;
}

.exit-cart{
    color: white;
    font-weight: bold;
    font-size: 17px;
    padding: 5px 10px;
    background-color: rgb(213, 14, 14);
    border-radius: 25px;
    border: none;
    cursor: pointer;
}

.exit-fav{
    color: white;
    font-weight: bold;
    font-size: 17px;
    padding: 5px 10px;
    background-color: rgb(213, 14, 14);
    border-radius: 25px;
    border: none;
    cursor: pointer;
}

/****************  Header/Video  *****************/

.header-container {
    position: relative;
    width: 100%;
    height: 101vh; /* ocupă tot ecranul */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 5px solid #694a33;
}

.header-container.dark{
    border-bottom: 5px solid #1E1E1E;
}

.header-container.active{
    border-bottom: none;
}

.video{
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit:cover;
    z-index: 1;
    box-shadow: 0 20px 20px rgba(34, 34, 34, 0.15);
}

.video.active{
    display: none;
}

.video.dark{
    filter: brightness(0.6) contrast(1) saturate(1);
}

.principal-text {
    margin-left: 25px;
    margin-right: 25px;
    position: absolute;
    text-align: center;
    color: white;
    z-index: 2;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
}

.title-prin{
    font-size: 40px;
    font-weight: bold;
}

.description{
    font-size: 25px;
}

@media(max-width: 850px){

    .title-prin{
    font-size: 32px;
    font-weight: bold;
}

.description{
    font-size: 20px;
}
}

@media(max-width: 850px){
    .title-prin{
    font-size: 32px;
    font-weight: bold;
}

.description{
    font-size: 20px;
}
}

.buttons-go{
    margin-top: 15px;
}

.buttons-go button {
    margin: 0 5px;
    padding: 10px 20px;
    background-color: #795439; /* accent coffee */
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 20px;
}

@media(max-width: 400px){
    .buttons-go button{
        margin: 0 0px;
    }
}

@media(max-width: 505px){
    .title-prin{
        max-width: 310px;
        text-align: center;
    }
}

@media(max-width: 600px){
    .buttons-go button{
        font-size: 15px;
    }
}

/************* Setari ************/

@media(min-width: 880px){
    #acasa2, #despre2, #produse2, #contact2{
    display: none;
}

.content-menu{
    gap: 0px;
}

#margin-top{
    margin-top: 20px;
}
}

.center{
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-items: center;
}

.btn-img, .btn-dark{
    height: 35px;
    width: 70px;
    background-color: rgb(255, 255, 255);
    border-radius: 25px;
    position: relative;
    cursor: pointer;
}


#switch1, #switch2{
    background-color: #795439;
    position: absolute;
    height: 30px;
    width: 30px;
    border-radius: 25px;
    top: 50%;
    left: 0px;
    transform: translateY(-51%);
    margin-left: 3px;
    margin-right: 3px;
    cursor: pointer;
    transition: 0.5s;
}

#switch1.active, #switch2.active{
    left: 34px;
    transition: 0.5s;
}

#switch2.frr{
    background-color: #795439;
}

#switch1.dark, #switch2.dark{
    background-color: #2e2c2c;
}


/***************** SOON *************************************************************/

.soon1{
    text-align: center;
    font-size: 30px;
    color: rgb(215, 10, 10);
    font-weight: bold;
}

.soon2{
    text-align: center;
    font-weight: bold;
    font-size: 20px;
}

.soon2 a{
    color: rgb(149, 2, 149);
    font-weight: bold;
}







/************* Despre Noi ****************/

#despre{
    margin-top: 0px;
}

.center-all{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 40px;
}

.title-despre-noi{
    font-size: 35px;
    font-weight: bold;
    color:#6f4e37;
    margin-bottom: 10px;
}

@media(max-width: 420px){
    .title-despre-noi{
        margin: 0px;
    }
}

.title-despre-noi.active, .title-despre-noi.dark{
    color:#ffffff;
}

.colect-all{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    max-width: 1200px;
    gap: 3%;
}

.container-text {
    position: relative;
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 60%;
    border: none;
    border-radius: 20px;
    color: white;
    overflow: hidden; /* important pentru a nu ieși efectele în afara containerului */
    z-index: 0;
}

.par{
   /* background-image: url(images/best.jpg);*/
   background-color: #845839;
    padding: 15px;
    border-radius: 17px;
    transition: 0s;
}

.par.dark{
    background-color: #403d3d00;
    border: 3px solid white;
    transition: 0s;
}

.container-map {
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
        transition: 0s;
}

.immg{
    border: 3px solid #795439;
    background-image: url(images/map.png);
    background-position: center;
    background-size: cover;
    border-radius: 17px;
    width: 100%;
    height: 260px;
    position: relative;
}

.immg.active, .immg.dark{
    border: 3px solid #ffffff;
}

.vezi-map{
    font-size: 17px;
    color: white;
    font-size: bold;
    background-color: #795439;
    border: none;
    border-radius: 25px;
    padding: 7px 20px;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    width: 180px;
}

.vezi-map.dark{
    border: 3px solid white;
    background-color: #2e2c2c
}

/************ Software 2.0 *************/

.spec{
    margin-top: -20px;
    border: 3px solid #6f4e37;
    border-radius: 17px;
    width: 92%;
    padding: 0px;
    max-width: 1120px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 15px;
}

.spec.active, .spec.dark{
    border: 3px solid #ffffff;
}

.soft{
    font-weight: bold;
    color:#6f4e37;
    font-size: 20px;
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
    text-align: center;
}

.soft.active, .soft.dark{
    color:#ffffff;
}

.soft-text{
    color: #6f4e37;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}

.soft-text.active, .soft-text.dark{
    color: #ffffff;
}

.btn-soft{
    font-size: 15px;
    color: white;
    font-size: bold;
    background-color: #795439;
    border: none;
    border-radius: 25px;
    padding: 4px 15px;
    cursor: pointer;
    width: 130px;
}

.btn-soft.dark{
    background-color: #1E1E1E;
    color: white;
    border: 2px solid white;
}





@media(max-width: 1080px){
    .colect-all{
        flex-direction: column;
        padding-left: 4%;
        padding-right: 4%;
        padding-top: 20px;;
        gap: 20px;
    }

    .spec{
        padding-top: 10px;
    }

    .container-text{
        width: 100%;
    }

    .container-map{
        width: 100%;
    }

    .immg{
        height: 250px;
    }
}

/************* Wrapper ***************/

.wrapper{
    margin-top: 10px;
    width: 95%;
    max-width: 1200px;
    gap: 100px;
    margin-inline: auto;
    position: relative;
    height: 70px;
    overflow: hidden;
}

@keyframes scrollLeft {
    to{
        left: -200px;
    }
}

@media(max-width: 830px){
    .item{
        width: 150px;
        left: calc(150px * 8);
    }
}

@media(max-width: 500px){
    .item{
        font-size: 20px;
        width: 120px;
        left: calc(120px * 8);
    }
}

.item{
    width: 180px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #795439;
    font-weight: bold;
    font-size: 22px;
    background-color: transparent;
    border-radius: 5px;
    position: absolute;
    left: calc(200px * 8);
    animation: scrollLeft 30s linear infinite;
}

.item.active, .item.dark{
    color: #ffffff;
}

.item1 {
    animation-delay: calc(30s / 8 * (8 - 1) * -1);
}

.item2 {
    animation-delay: calc(30s / 8 * (8 - 2) * -1);
}

.item3 {
    animation-delay: calc(30s / 8 * (8 - 3) * -1);
}

.item4 {
    animation-delay: calc(30s / 8 * (8 - 4) * -1);
}

.item5 {
    animation-delay: calc(30s / 8 * (8 - 5) * -1);
}

.item6 {
    animation-delay: calc(30s / 8 * (8 - 6) * -1);
}

.item7 {
    animation-delay: calc(30s / 8 * (8 - 7) * -1);
}

.item8 {
    animation-delay: calc(30s / 8 * (8 - 8) * -1);
}
/*********** Cart Products **************/

#prod-content{
    display: flex;
    flex-direction: column;
    overflow: hidden;
    max-height: 65%;
    overflow-y: auto;
}

.show-price{
    height: 30%;
    border-top: 2px solid white;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    padding: 15px;
    color: white;
    font-weight: bold;
}

.prod{
    background-color: transparent;
    height: 50px;
    width: 100%;
    display: flex;
    flex-direction: row;
    padding-top: 8px;
    padding-bottom: 8px;
    gap: 2%;
    align-items: center;
    padding-right: 2%;
}

.title-cart{
    width: 55%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
}

.quantity{
    color: white;
    font-size: 20px;
    font-weight: bold;
}

.decrease, .increase{
    width: 9%;
    border: 2px solid white;
    background-color: transparent;
    color: white;
    font-weight: bold;
    border-radius: 25px;
    cursor: pointer;
    font-size: 20px;
}

.remove{
    background-color: rgb(197, 14, 14);
    border: 0px;
    border-radius: 25px;
    padding: 0px 15px;
    color: white;
    font-weight: bold;
    width: 24%;
    height: 100%;
    cursor: pointer;
}

/************  Online Store  ************/

.rly-all-cont{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 30px;
}

.magazin-online{
    font-weight: bold;
    font-size: 35px;
    color: #795439;
    margin-bottom: 30px;
}

.magazin-online.active, .magazin-online.dark{
    color: #ffffff;
}

.recenter{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.all-cont{
    width: 100%;
    max-width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
}

/************ Btn left/right  ***************/

.princ{
    max-width: 1159px;
    overflow: hidden;
    display: flex;
    position: relative;
    border-top: 3px solid #795439;
    border-bottom: 3px solid #795439;
    width: 100%;
}

.princ.active, .princ.dark{
    border-top: 3px solid #ffffff;
    border-bottom: 3px solid #ffffff;
}

@media(max-width: 1200px){
    .princ{
        max-width: 966px;
    }
}

@media(max-width: 1020px){
    .princ{
        max-width: 779px;
    }
}

@media(max-width: 830px){
    .princ{
        max-width: 588px;
    }
}

@media(max-width: 620px){
    .princ{
        max-width: 397px;
    }
}

.leftBtn{
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
}

.leftBtn.dark{
    background-color: #1E1E1E;
}

.rightBtn{
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
}

.rightBtn.dark{
    background-color: #1E1E1E;
}

.rightBtn, .leftBtn{
    width: 40px;
    height: 40px;
    background-color:#845a3c;
    border: white 2px solid;
    border-radius: 50px;
    color: white;
    font-size: 25px;
    font-weight: bold;
    cursor: pointer;
}

/****** Continue ******/


.principal-cont{
    align-items: center;
    flex-direction: row;
    gap: 20px;
    padding: 10px 15px;
}



.principal-cont {
  display: flex;            /* aranjează cardurile pe orizontală */
  gap: 20px;                /* spațiu între carduri */
  overflow-x: auto;         /* permite scroll orizontal */
  scroll-behavior: smooth;  /* scroll lin */
  padding: 10px 0;
  list-style: none;         /* elimină bulinele */
  -ms-overflow-style: none;  /* Internet Explorer și Edge */
  scrollbar-width: none;     /* Firefox */
  gap: 20px; 
  padding: 15px 20px; 
}

.principal-cont::-webkit-scrollbar {
  display: none;             /* Chrome, Safari, Opera */
}

.card{
    flex: 0 0 auto;
    background-color: #926545;
    height: 300px;
    width: 170px;
    border-radius: 17px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.card.dark{
    background-color: #403d3d;
}

.product-img{
    width: 150px;
    height: 150px;
    border-radius: 20px;
    border: 2px solid white;
}

.title{
    font-size: 18px;
    font-weight: bold;
    color: white;
}

.price{
    font-size: 15px;
    color: white;
    margin-bottom: 7px;

}

.btn-cont{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 7px;
}

.buy-prod{
    font-size: 16px;
    font-weight: bold;
    color: white;
    background-color: transparent;
    padding: 0px 25px;
    border: 1px solid white;
    border-radius: 25px;
    width: 90%;
    cursor: pointer;
}

.fav-add{
    background-color: transparent;
    width: 90%;
    display: flex;
    gap: 4px;
    align-items: center;
}

.see-prod{
    font-size: 16px;
    font-weight: bold;
    color: white;
    background-color: transparent;
    border: 1px solid white;
    border-radius: 25px;
    width: 75%;
    cursor: pointer;
    height: 90%;
}

.heart{
    width: 20%;
    cursor: pointer;
}

.heart path{
    stroke: white;
    transition: 0.3s;
}

.heart:hover{
    fill: rgb(255, 0, 0);
    transition: 0.3s;
}

.heart path:hover{
    stroke: rgb(255, 0, 0);
    transition: 0.3s;
}

.heart.heartActive{
    fill: rgb(255, 0, 0);
    transition: 0.3s;
}

.heart.heartActive path{
    stroke: rgb(255, 0, 0);
    transition: 0.3s;
}

.border{
    width: 100%;
    height: 2px;
    background-color: white;
}

@media(min-width: 880px){
    .border{
        display: none;
    }
}

.flex{
    display: flex;
    gap: 8px;
    font-size: 20px;
    align-items: center;
    cursor: pointer;
    margin-bottom: -2px;
}

#unic{
    font-size: 24px;
}

@media(min-width: 880px){
    .flex{
        margin-bottom: 20px;
    }
}

.heart-icon{
    fill: white;
    width: 35px;
}

.heart-icon path{
    stroke: rgb(255, 255, 255);
}

#fav-content{
    display: flex;
    flex-direction: column;
    overflow: hidden;
    max-height: 65%;
    overflow-y: auto;
}    

.fav-item{
    min-height: 50px;
    height: 50px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2%;
}

.title-fav{
    width: 35%;
    color: white;
    font-weight: bold;
    text-align: center;
}

.price-fav{
    width: 12%;
    color: white;
    font-weight: bold;
}

.buy-fav{
    width: 20%;
    color: white;
    font-weight: bold;
    border-radius: 25px;
    padding: 4px 2px;
    border: none;
    background-color: rgb(4, 114, 4);
}

.remove-fav{
    width: 22%;
    color: white;
    font-weight: bold;
    border-radius: 25px;
    padding: 4px 2px;
    border: none;
    background-color: rgb(212, 11, 11);
}

.type-categories{
    font-weight: bold;
    font-size: 25px;
    color: #795439;
    text-align: left;
}

.type-categories.active, .type-categories.dark{
    color: #ffffff;
}


@media(max-width: 430px){
    .type-categories{
        font-size: 20px;
    }
    
    .princ{
        width: 100%;
        max-width: 100%;
        border-top: 3px solid #795439;   
        border-bottom: 3px solid #795439;
    }

    .princ.active, .princ.dark{
        border-top: 3px solid #bab4b0;   
        border-bottom: 3px solid #bab4b0;
    }

    .title{
        font-size: 15px;
    }

    .principal-cont{
        max-width: 305px;
        gap: 15px;
        padding: 15px 8px;
    }

    .card{
        width: 135px;
        height: 260px;
    }

    .product-img{
        width: 120px;
        height: 120px;
    }

    .buy-prod{
        font-size: 15px;
        padding: 0px 15px;
    }

    .see-prod{
        font-size: 15px;
        height: 100%;
    }

    .star{
        height: 100%;
    }

}

@media(max-width: 390px){
    .type-categories{
        font-size: 20px;
    }

    .title{
        font-size: 15px;
    }

    .principal-cont{
        gap: 15px;
        padding: 15px 8px;
    }

    .card{
        width: 135px;
        height: 260px;
    }

    .product-img{
        width: 120px;
        height: 120px;
    }

    .buy-prod, .see-prod{
        font-size: 15px;
        padding: 0px 15px;
    }
}

#acasa2, #despre2, #produse2, #contact2, #setari {
  cursor: pointer;
}

#produse3.dark, #contact3.dark{
    background-color: #2e2c2c;
    border: 0px solid white;
}

/******* Intrebari Frecvente ******/

.cont-questions{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-left: 10%;
    padding-right: 10%;
    gap: 10px;
}

.quest-title{
    color: #6f4e37;
    font-size:30px;
    font-weight: bold;
    margin-top: 5px;
}

.quest-title.active{
    color: white;
}

.quest-title.dark{
    color: white;
}

@media(max-width: 600px){
    .cont-questions{
    padding-left: 13px;
    padding-right: 13px;
    }
    
    .quest-title{
        font-size: 27px;
    }
}

.quest-container{
    max-width: 1100px;
    width: 100%;
    color: white;
    font-weight: bold;
    border-radius: 20px;
    text-align: center;
    cursor: pointer;
}

.quest-question{
    background-color: #6f4e37;
    padding: 15px;
    border-radius: 25px;
    transition: border-radius 0.3s ease;
}

.quest-question.active{
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    transition-delay: 0.1s;
}

.quest-question.dark{
    background-color: #1E1E1E;
}

.quest-answer {
  max-height: 0;
  overflow: hidden;
  background-color: #926545;
  padding: 0 15px;
  border-radius: 15px;
  transition: max-height 0.4s, padding 0.4s, border-top-left-radius 0.3s, border-top-right-radius 0.3s;
}

.quest-answer.active {
  max-height: 300px;
  padding: 15px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.quest-answer.dark{
    background-color: #403d3d;
}



/*********** Contact Us ***********/

.all-email-container{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 10px;
    padding-left: 10%;
    padding-right: 10%;
}

.contacteaza-ne{
    font-size: 30px;
    font-weight: bold;
    color:#6f4e37;
    margin-bottom: 10px;
}

.contacteaza-ne.active, .contacteaza-ne.dark{
    color:#f4f4f4;
}

@media(max-width: 600px){
    .all-email-container{
    padding-left: 13px;
    padding-right: 13px;
    }
    
    .contacteaza-ne{
        font-size: 27px;
    }
}

.email-container{
    display: flex;
    flex-direction: column;
    border: 3px solid #6f4e37;
    padding: 20px;
    border-radius: 20px;
    max-width: 1100px;
    width: 100%;
}

.email-container.active, .email-container.dark{
    border: 3px solid #ffffff;
}

@media(max-width: 450px){
    .email-container{
        padding: 7px;
        padding-top: 15px;
        padding-bottom: 13px;
    }
}

.email-container form{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-name, .contact-email{
    width: 200px;
    height: 27px;
    background-color: #6f4e37;
    border: none;
    border-radius: 15px;
    color: white;
    text-align: center;
    outline: none;
}

.contact-name.dark, .contact-email.dark{
    background-color: #403d3d;
}

.email-container form label{
    color:#6f4e37;
    font-weight: bold;
}

.email-container form label.active, .email-container form label.dark{
    color:#ffffff;
}

.real-email-text{
    font-size: 14px;
    color:#6f4e37;
    font-weight: bold;
    margin-bottom: 15px;
}

.real-email-text.active, .real-email-text.dark{
    color:#f5f5f5;
}

.mesaj-container{
    width: 100%;
    height: 300px;
}

.mesaj{
    width: 100%;
    height: 100%;
    background-color:#805638;
    border-radius: 15px;
    padding: 15px;
    outline: none;
    color: white;
}

.mesaj.dark{
    background-color: #403d3d;
}

.submit-container{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.submit{
    color: white;
    font-size: 20px;
    font-weight: bold;
    width: 200px;
    border-radius: 50px;
    border: none;
    color: white;
    background-color:#6f4e37;
    padding: 2px 1px;
    cursor: pointer;
}

.submit.dark{
    background-color: #1E1E1E;
    border: 2px solid white;
}

label{
    color: #6f4e37;;
}

label.active{
    color: white;
}


/************ Footer *************/

.footer-div{
    width: 100%;
    padding-bottom: 100px;
    height: auto;
    position: relative;
    background-color:#6f4e37;
    padding: 5px;
    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
    color: white;
    text-align: center;
    font-size: 14px;
    z-index: 99;
    border-top: 3px solid #3c2d22;
}

.footer-div.dark{
    border-top: #1E1E1E;
    background-color: #1E1E1E;
}

.devMihai{
    color: white;
    font-weight: bold;
}

/*************** Animation Entry ****************/

.hidden {
    opacity: 0;
    transition: all 1s;
    filter: blur(3px);
    transform: translateY(30px);
}

.show {
    opacity: 1;
    filter: blur(0px);
    transform: translateY(0)
}

@media(prefers-reduced-motion){
    .hidden {
        transition: none;
    }
}
