/*Global*/


body {
    width: 100%;
    margin: 0;
    font-family: "Poppins", sans-serif;
    background-image: url('../img/images/backgroundPattern.webp');
    background-position: 50% 0;
    background-repeat: repeat;
    background-size: 434px auto;
    color: #b9b9b9;
    

}

h1 {
    color: #B3A171;
    font-family: 'Belleza','ADLaM Display','Merriweather Sans',"Poppins", sans-serif;

}
h2 {
    color: #B3A171;
    font-family: 'Belleza','ADLaM Display','Merriweather Sans',"Poppins", sans-serif;
    font-size: 26px;
    text-align: center;
}
h3 {
    color: #B3A171;
    font-size: 18px;
    margin: 0;
    padding: 0 10px;
    font-family: 'Belleza','ADLaM Display','Merriweather Sans',"Poppins", sans-serif;
}

a {
    text-decoration: none;
    color: #b9b3b3;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Title styling */
header {
    background-color: #0d0d0d; /* Dark gray */
    width: 100%;
    overflow: hidden;
}

.containerHeader{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}
header h1 {
    width: 90%;
    font-size: calc(1.5rem + 1vw);
    font-family: "belleza", serif;
    font-weight: bold;
    margin: 0;
    width: auto;
    color: #B3A171;
}

header h2 {
    width: 90%;
    font-weight: bold;
    margin: 0 auto 10px auto;
    font-size: calc(1rem + 0.5vw);
    color: #B3A171;
    font-family: "belleza", serif;
    width: auto;
}

.butoanefixe{
	position:fixed;
	bottom: 40px;
	right:0;
	z-index: 3;

    
}
.tel, .watsup, .messenger {
    margin: 10px 0;
    
}
 /* Navbar secundar */
 .secondary-nav {
    display: none;
    justify-content: space-between;
    align-items: center;
    background: #1e1e1ee5;
    color: white;
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 10;
}


.secondary-nav .menu-button {
    font-size: 1rem;
    background: linear-gradient(to top, rgb(49 49 49), rgb(0 0 0) 70%);
    color: #b9b3b3;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
}

.secondary-nav label {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    position: relative;
    padding: 10px;
    z-index: 10;
    background: linear-gradient(to top, rgb(49 49 49), rgb(0 0 0) 70%);
    border-radius: 5px;
}

.secondary-nav label span {
    display: block;
    width: 100%;
    height: 4px;
    background: #b9b3b3;
    transition: all 0.3s ease;
}

.secondary-nav input[type="checkbox"] {
    display: none;
}

.secondary-nav .menu {
    /* Ascunde meniul inițial cu proprietăți animabile */
    max-height: 0;
    opacity: 0;
    transform: translateY(-20px);
    overflow: hidden;
    
    /* Stilurile existente */
    position: absolute;
    top: 100%;
    right: 0;
    background: #1a1a1a;
    color: white;
    width: 100%;
    text-align: center;
    z-index: 5;
    
    /* Animație de 0.5s pentru toate proprietățile */
    transition: max-height 0.5s ease, opacity 0.5s ease, transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.1);}

.secondary-nav .menu a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: white;
    border-bottom: 1px solid #3d3d3d;
}

.secondary-nav .menu a:hover {
    background: #555;
}

/* Show the menu when the checkbox is checked */
#bif-secondary:checked ~ .menu {
    max-height: 1000px; /* Valoare suficient de mare */
    opacity: 1;
    transform: translateY(0);
    font-size: 22px;
    font-weight: bold;
    /* display: block; - Eliminăm această linie deoarece folosim max-height */
}

/* Transform hamburger to X */
#bif-secondary:checked ~ label span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

#bif-secondary:checked ~ label span:nth-child(2) {
    opacity: 0;
}

#bif-secondary:checked ~ label span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.inside {
    color: #B3A171;
    font-weight: bold;
}


/* Navigation menu styling */
nav {
    background: linear-gradient(to top, rgb(49 49 49), rgb(0 0 0) 70%);
    display: flex;
    justify-content: space-around;
    padding: 0 0;
    position: relative;
}


nav a {
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
    position: relative;
    font-weight: bold;
    padding: 10px;
}

nav a:hover {
    text-decoration: underline;
}

/* Dropdown menu styling */
.dropdown {
    position: relative;
}

.dropdown a {
    display: flex;
    align-items: center;
}

.dropdown a::after {
    content: "\25BC"; /* Downward triangle */
    margin-left: 5px;
    font-size: 0.8rem;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 40px;
    left: -20px;
    background-color:#101010;
    padding: 10px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    z-index: 4;
}

.dropdown-content a {
    display: block;
    text-decoration: none;
    color: white;
    padding: 5px 20px;
    font-size: 1rem;
}

.dropdown-content a:hover {
    background-color: #c7c7c7; /* Slightly lighter burgundy */
}

.dropdown:hover .dropdown-content,
.dropdown:focus-within .dropdown-content {
    display: block;
}

@media (max-width: 768px) {
    nav {
        display: none;
    }

    .secondary-nav {
        display: flex;
    }

    .responsive-text {
        font-size: 26px; /* Min 16px, ideal 5% din lățimea viewport-ului, max 40px */
        text-align: center; /* Centrează textul */
        overflow: hidden; /* Evită depășirea marginilor */
    }
    .responsive-text1 {
        font-size: 20px; /* Min 16px, ideal 5% din lățimea viewport-ului, max 40px */
        text-align: center; /* Centrează textul */
        overflow: hidden; /* Evită depășirea marginilor */
        color: #b9b3b3;
    }
}

/* Page content layout */
.containerBody {
    width: 100%;
    display: flex; 
    justify-content: center; /* Centrare imagine pe orizontală */
    align-items: center; /* Centrare imagine pe verticală */

}

/* CSS pentru a stiliza slideshow-ul */


.carousel {
    position: relative;
    width: 100%;
    max-width: 800px;
    aspect-ratio: 16 / 9; /* Adjust the ratio as needed */
    overflow: hidden;
    border-radius: 8px;
}

.carousel img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Maintain aspect ratio */
    position: absolute;
    top: 0;
    left: 0;
    display: none;
}

.carousel img.active {
    display: block;
}

.carousel button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
    z-index: 3;
}

.carousel button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.carousel .prev {
    left: 10px;
}

.carousel .next {
    right: 10px;
}

/* Arată imaginea activă */
.active {
    display: block;
}

.containerText {
    width: 100%;
    display: flex; 
    justify-content: center; /* Centrare imagine pe orizontală */
    align-items: center; /* Centrare imagine pe verticală */
    flex-direction: column;
}
.faq-item {
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
}
.faq-header {
    font-size: 18px;
    gap: 20px;
    font-weight: bold;
    margin: 0;
    padding:  10px;
    font-family: 'Belleza','ADLaM Display','Merriweather Sans',"Poppins", sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.arrow {
    font-size: 20px;
    transition: transform 0.3s ease;
}
.faq-answer {
    color: #B3A171;
    display: none;
    padding: 10px;
    width: 90%;
    max-width: 800px;
    margin: 5px auto;
}
.containerText p{
   padding: 10px; 
   font-size: 16px;
   text-align: center;
    text-align-last: center;
  margin: 5px 0;
  font-family: "Poppins", sans-serif,'charm';
}


.review-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 10px;
    font-family: 'charm';
  }

.review-card {
    flex: 0 0 70%; /* Ocupă 80% din lățimea ecranului */
    margin-right: 20px; /* Spațiu între carduri */
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    scroll-snap-align: start;
    transition: transform 0.3s;
    background-color: #ffffff0a;

  }

.review-card:hover {
    transform: scale(1.02);
  }
.containerReviews {
    width: 100%;
    font-family: 'charm';
}
.client-name{
    text-align: right; /* Alinierea textului la dreapta */
    margin-right: 20px; /* Spațiu față de marginea din dreapta */
}
.client-review {
    text-align: center;

}

.reviews p{
    margin: 5px 0 10px 0;
    font-size: 16px;
    line-height: 1.2;
}
.stars p{
    font-size: 22px;
    color: #B3A171;
    text-align: center;
    margin: 5px 5px;
}

.containerImage {
    width: 100%;
    display: flex; 
    justify-content: center; /* Centrare imagine pe orizontală */
    align-items: center; /* Centrare imagine pe verticală */
    flex-wrap: wrap;
  
}
.containerImage1 {
    width: 100%;
    display: flex; 
    justify-content: center; /* Centrare imagine pe orizontală */
    align-items: center; /* Centrare imagine pe verticală */  
}

.image-container {
    width: 100%; /* Containerul ocupă întreaga lățime a părintelui */
    max-width: 800px; /* Lățime maximă a containerului (poți ajusta) */
    margin: 0 auto; /* Centrare pe orizontală */
    border: 2px solid black; /* Margine neagră discretă */
    display: flex;
    justify-content: center; /* Centrare imagine pe orizontală */
    align-items: center; /* Centrare imagine pe verticală */
    overflow: hidden; /* Ascunde orice depășire */
}

.video-container {
    width: 100%; /* Lățime completă pentru telefoane */
    max-width: 700px; /* Lățime maximă pe ecrane mari */
    aspect-ratio: 16 / 9; /* Raport pentru videoclip */
    margin: 0 auto; /* Centrare pe orizontală */
    border: 2px solid black; /* Margine neagră */
    overflow: hidden; /* Ascunde orice depășire */
    display: flex;
    justify-content: center;
    align-items: center;
}
.video-container iframe {
    width: 100%; /* Videoclipul umple complet lățimea containerului */
    height: 100%; /* Videoclipul umple complet înălțimea containerului */
    border: none; /* Elimină marginea iframe */
}

.image-container img {
    width: 100%; /* Imaginea se ajustează pe lățimea containerului */
    height: auto; /* Menține raportul de aspect original */
    display: block; /* Elimină spațiile albe sub imagine */
}
/* Container principal */
.containerImagini {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 10px;
}
/* Container pentru fiecare imagine */
.imaginiHome {
    position: relative;
    width: 100%;  /* Poți ajusta dimensiunea în funcție de necesități */
    max-width: 400px; /* Lățime maximă a containerului (poți ajusta) */
    height: auto;
}
/* Imaginea care va păstra aspectul original */
.imaginiHome img {
    width: 100%;
    height: auto;
    border-radius: 0 14px;
}



.responsive-text {
    text-align: center; /* Centrează textul */
    overflow: hidden; /* Evită depășirea marginilor */
}
.responsive-text1 {
    text-align: center; /* Centrează textul */
    overflow: hidden; /* Evită depășirea marginilor */
    color: #b9b3b3;
}



/* Reviews section */
.side-container img {
    display: block;
    margin: 0 auto 20px auto;
    max-width: 100%;
}



.footer {
    width: 100%;
    background: linear-gradient(to top, rgb(49 49 49), rgb(0 0 0) 70%);
    display: flex; 
    justify-content: center; /* Centrare imagine pe orizontală */
    align-items: center; /* Centrare imagine pe verticală */
}



/* Bara de titlu transparentă care apare pe fundalul pozei */
.overlay {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.155); /* Fundal alb transparent */
    color: #B3A171;
    text-align: right;
    padding: 0 0;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7), -2px -2px 4px rgba(0, 0, 0, 0.7), 
    2px -2px 4px rgba(0, 0, 0, 0.7), -2px 2px 4px rgba(0, 0, 0, 0.7);
}
.overlay p{
    margin: 0;
}

/* Titlu pe fundalul transparent */
.titleImage {
    margin: 0;
    font-size: 20px;
    font-weight: bold;
    padding: 5px;
}

/* Buton de reutilizat */
.containerButton {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px 0 20px 0;
    
}

.reusableButton {
   width: 100%;
    font-size: 1rem;
    background: #ffffff17;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
}

/*FORM*/
form{
    max-width: 400px;
    margin: auto;
    padding:20px;
}
form input{
    width: 100%;
    margin: 5px auto;
    font-size: 18px;
    border: 1px solid  rgb(82, 82, 82);
    border-radius: 5px;
    padding: 5px;
    background-color: #bdbdbd;
    color: #1a1a1a;
}
#service{
    width: 100%;
    margin: 10px auto;
    font-size: 18px;
    border: 1px solid  rgb(82, 82, 82);
    border-radius: 5px;
    padding: 5px;
    background-color: #bdbdbd;
    color: #1a1a1a;
}
#reply{
    width: 100%;
    margin: 10px auto;
    font-size: 18px;
    border: 1px solid  rgb(82, 82, 82);
    border-radius: 5px;
    padding: 5px;
    background-color: #bdbdbd;
}
form button{
    width: 100%;
    margin: 20px auto;
    font-size: 22px;
    font-weight: bold;
    padding: 10px;
    background: linear-gradient(to top, rgb(49 49 49), rgb(0 0 0) 70%);
    color: #B3A171;
    border-radius: 5px;
    border: 1px solid rgb(82, 82, 82);
}
form label{
    color: rgb(255, 255, 255);
    margin: 10px;
    font-size: 18px;
    font-weight: bold;
}
form textarea{
    width: 100%;
    font-size: 18px;
    border: 1px solid #B3A171;
    border-radius: 5px;
    padding: 5px;
    margin: 10px 0 0 0;
    background-color: #bdbdbd;
}
#formQuote{
    max-width: 600px;
    margin: 30px auto;
    background-color: rgb(38, 38, 38);
}



.contactSquare{
    width: 60%;
    margin: 60px auto;
    text-align: center;
    max-width: 300px;
}
.contactSquare img{
    box-shadow: 2px 2px 9px 5px #8b8a8a79;
    border-radius: 20px;
    width: 60%;
    margin: 10px auto;
    text-align: center;
}
.contactSquare h2{
    margin-bottom: 10px;
}

.photoBorder{
    max-width: 350px;
    margin: 30px auto;
    position: relative;
    box-shadow: 2px 3px 5px 2px #7a7a7a;
    border-radius: 20px;
    
}
.photoBorder img{
    width: 100%;
    margin: auto;
    border-radius: 20px;
    
}
.photoBorder h2 {
    width: 100%;
    margin: auto;
    background-color: rgba(247, 247, 247, 0.58);
    position: absolute;
    bottom: 0px;
    text-align: center;
    color: rgba(82, 82, 82);
    padding: 10px 0;
    
}

.wrap1{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.responsive-line {
    width: calc(100% - 20px); /* Lasă 10px spațiu pe fiecare parte */
    height: 1px; /* Înălțimea de bază la mijloc */
    margin: 20px auto; /* Centrare verticală și spațiu între containere */
    background: linear-gradient(to right, transparent 10px, #B3A171 50%, transparent 90%);
    border-radius: 1px;
}

@media (max-width: 768px) {
    .responsive-line {
        width: calc(100% - 10px); /* Mai mult spațiu pe margini pe ecrane mici */
    }
}

/*Reveal effect */

.reveal {
    width: 100%;         
    opacity: 0;
    transform: translateX(-100%);
    transition: opacity 2.5s ease-out, transform 1.7s ease-out;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.containerText {
    max-width: 100%; /* Ajustează automat pentru a fi responsive */
}
.containerJoc{
    width: auto;
    padding: 10px;
    margin: 10px;
}
.tiktok-embed-container {
    width: 325px;
    height: 576px;
    margin: 0 auto;
    border-radius: 5px;
    overflow: hidden; /* 🔒 Blochează scrollul */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  iframe {
    width: 100%;
    height: 100%;
    border: none;
  }

  /* Culoare galben fade in */
  .fade-overlay {
    position: relative;
}

.fade-overlay::before {
    content: "";
    position: absolute;
    inset: 0; /* acoperă complet elementul indiferent de dimensiune */
    background-color: #B3A171;
    opacity: 1;
    transition: opacity 5s ease;
    z-index: 2;
    pointer-events: none; /* nu blochează click-urile */
}

.fade-overlay.fade-out::before {
    opacity: 0;
}

.fade-overlay > * {
    position: relative;
    z-index: 3;
}

 .pret-rapid {
        margin-bottom: 20px;
        padding: 10px;
        border: 1px solid #B3A171;
        border-radius: 8px;
        background-color: #24242400;
        width: 90%;
        max-width: 800px;
        margin: 5px auto;
        text-align: center;
      }

