/*Global*/


*{
    font-family: 'Lora',"Poppins", sans-serif;
    padding: 0;
    margin:0;
    box-sizing: border-box;
    text-decoration: none;
    vertical-align: middle;
    color: #b9b9b9;
}
body {
    font-family: 'Lora', sans-serif;
    width: 100%;
    margin: 0;
    width: 100%;
    background-image: url('../images/background.webp');
    background-position: 50% 0;
    background-repeat: repeat;
    background-size: 434px auto;
    color: #b9b9b9;
    box-sizing: border-box;
}
h1 {
    font-family:  'Cinzel',"Poppins", sans-serif;
    color: #D67E8A;
    font-size: 26px;
    font-weight: bold;
}
h2 {
    font-family: 'Cinzel',"Poppins", sans-serif;
    font-size: 24px;
    text-align: center;
    color: #D67E8A;
}
h3 {
    font-family: 'Lora',"Poppins", sans-serif;
    font-size: 20px;
    margin: 0;
    padding: 0 10px;
    color: #D67E8A;
}
h4 {
    font-family: 'Lora',"Poppins", sans-serif;
    color: #D67E8A;
    font-size: 18px;
    margin: 0;
    padding: 0 10px;
    text-align: left;
}
a {
    text-decoration: none;
    color: #b9b3b3;
}
img {
    height: auto;
    display: block;
    max-width: 100%;
}







/* Title styling */
header {
    background-color: #ffffff; /* Dark gray */
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 10;
}
.containerHeader{
    display: flex;
    box-sizing: border-box;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.pageTitle{
    width: 100%;
    line-height: 28px;
    margin: auto;
    text-align: center;
    font-size: 26px;
    font-weight: bold;
    color: #D67E8A;
    font-family: 'Cinzel',"Poppins", sans-serif;
}
.pageSubtitle{
    width: 100%;
    padding: 5px;
    margin: auto;
    text-align: center;
    font-size: 20px;
    color: #bdbdbd;
    font-family: 'Lora',"Poppins", sans-serif;

}


.fixButton{
	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: #ffffffe5;
    color: rgb(0, 0, 0);
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 10;
}
.secondary-nav .menu-button {
    font-size: 1rem;
    background-color: #ffffff;
    color: #D67E8A;
    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: 45px;
    height: 42px;
    cursor: pointer;
    position: relative;
    padding: 10px;
    z-index: 10;
    background-color: #f7f7f7;
    border-radius: 5px;
}

.secondary-nav label span {
    display: block;
    width: 100%;
    height: 4.5px;
    background: #D67E8A;
    transition: all 0.3s ease;
    border-radius: 5px;
}

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

.secondary-nav .menu {
    /* Ascunde meniul inițial */
    max-height: 0;
    opacity: 0;
    transform: translateY(-20px);
    overflow: hidden;  /* Ascunde conținutul care depășește înălțimea */
    
    /* Stilurile existente */
    position: absolute;
    top: 100%;
    right: 0;
    background: #ffffff;
    color: rgb(0, 0, 0);
    width: 100%;
    text-align: center;
    z-index: 5;
    
    /* Animație fluidă */
    transition: max-height 0.5s ease, opacity 0.4s ease, transform 0.4s cubic-bezier(0.1, 0.8, 0.2, 1.4);
}

.secondary-nav .menu a {
    display: block;
    padding: 10px;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    color: #b9b9b9;
    border-bottom: 1px solid #D67E8A;
    border-image: linear-gradient(to right, #fefefe00 0%, #D67E8A 10%, #D67E8A 10%, #D67E8A 90%, #D67E8A 90%, #ffffff00 100%) 1;
}

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

#bif-secondary:checked ~ .menu {
    max-height: 500px;  /* Valoare suficient de mare pentru conținut */
    opacity: 1;
    transform: translateY(0);
}

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

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

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

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


/* Navigation menu styling */
nav {
    background-color: #ffffff;
    display: flex;
    justify-content: space-around;
    padding: 0 0;
    position: relative;
}


nav a {
    text-decoration: none;
    color: #D67E8A;
    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 {
    margin-left: 5px;
    font-size: 0.8rem;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 40px;
    left: 20px;
    background-color:#ffffff;
    padding: 10px 0;
    z-index: 4;
}

.dropdown-content a {
    display: block;
    text-decoration: none;
    color: rgb(0, 0, 0);
    padding: 5px 20px;
    font-size: 1rem;
}

.dropdown-content a:hover {
    background-color: #ffe7b5; /* 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;
    }
}
.border90{
    width: 94%;
    margin: auto;
}

/* CSS pentru a stiliza slideshow-ul */
.containerCarousel {
    width: 100%;
    display: flex; 
    justify-content: center; /* Centrare imagine pe orizontală */
    align-items: center; /* Centrare imagine pe verticală */
    flex-direction: column;
}
.carousel {
    position: relative;
    width: 100%;
    max-width: 800px;
    aspect-ratio: 3 / 2; /* Adjust the ratio as needed */
    overflow: hidden;
    border-radius: 8px;
    margin: 30px auto;
}

.carousel img {
    width: 100%;
    height: auto;
    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);
    color: #ffedc9;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
    z-index: 3;
}

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

.carousel .prev {
    left: 10px;
}

.carousel .next {
    right: 10px;
}

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

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

.wrap3{
    display: flex;
    justify-content: space-around;
}
.wrap3 img{
    width: 40px;
    height: 40px;
    margin: 20px auto;
}

.wrap4{
    display: flex;
    flex-direction: column;
    gap: 10px;
    border: 3px solid #e2e2e242;
    border-radius: 5px;
    margin: 50px auto;
    padding: 15px;
}

.boxPrices{
    max-width: 300px;
    margin: 30px auto;
    position: relative;
    box-shadow: 2px 3px 5px 2px #cacaca;
    
}
.boxPrices img{
    width: 100%;
    margin: auto;
    
}
.boxPrices h3 {
    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;
    font-size: 18px;   
}

.containerText {
    width: 100%;
    display: flex; 
    justify-content: center; /* Centrare imagine pe orizontală */
    align-items: center; /* Centrare imagine pe verticală */
    flex-direction: column;
}
.containerContact {
    width: 100%;
    display: flex; 
    flex-direction: column;
}
.faq-item {
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    width: 100%;
}
.faq-header {
    font-size: 16px;
    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: #b9b9b9;
    display: none;
    padding: 10px;
    font-weight: bold;
    font-size: 16px;
    
}

.faq-nav {
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #D67E8A;
    border-image: linear-gradient(to right, #fefefe00 0%, #D67E8A 10%, #D67E8A 10%, #D67E8A 90%, #D67E8A 90%, #ffffff00 100%) 1;
}
.faq-navline {
    font-size: 20px;
    gap: 20px;
    font-weight: bold;
    margin: 0;
    padding:  10px;
    font-family: "Poppins", sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.arrow {
    font-size: 20px;
    transition: transform 0.3s ease;
}
.faq-drop {
    display: none;
    padding: 10px;
    font-size: 16px;
    font-weight: bold;
}

.containerText p{
    padding: 10px; 
    font-size: 16px;
    text-align: justify;
 /*   text-align-last: center; */
    margin: 5px 0;
}

.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;
    border: 1px solid #e2e2e242;

  }

.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: justify;

}

.reviews p{
    margin: 5px 0 10px 0;
    font-size: 16px;
    line-height: 1.2;
}
.stars p{
    font-size: 22px;
    color: #D67E8A;
    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;
  
}

.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ă */
    display: flex;
    justify-content: center; /* Centrare imagine pe orizontală */
    align-items: center; /* Centrare imagine pe verticală */
    overflow: hidden; /* Ascunde orice depășire */
    border-radius: 5px;
}
.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;
}
.footer {
    width: 100%;
    background-color: #4b4b4b;
    display: flex; 
    flex-direction: column;
    justify-content: center; /* Centrare imagine pe orizontală */
    align-items: center; /* Centrare imagine pe verticală */
    margin-top: 30px;
    padding: 20px 0;
}



/* 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 {
   max-width: 300px;
    font-size: 1rem;
    background: #D67E8A;
    color: white;
    border: none;
    padding: 16px;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    margin: 30px auto;
}
.reusableButton a{
     color: white;
     font-weight: bold;
     font-size: 20px;
 }

/*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;
    color: #1a1a1a;
}
#service{
    width: 100%;
    margin: 10px auto;
    font-size: 18px;
    border: 1px solid  rgb(82, 82, 82);
    border-radius: 5px;
    padding: 5px;
    color: #1a1a1a;
}
#reply{
    width: 100%;
    margin: 10px auto;
    font-size: 18px;
    border: 1px solid  rgb(82, 82, 82);
    border-radius: 5px;
    padding: 5px;
    color: #6b6b6b;
}
form button{
    width: 100%;
    margin: 20px auto;
    font-size: 22px;
    font-weight: bold;
    padding: 10px;
    color: #D67E8A;
    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 rgb(82, 82, 82);
    border-radius: 5px;
    padding: 5px;
    margin: 10px 0 0 0;
}
#formQuote{
    max-width: 600px;
    margin: 30px auto;
    background-color: #D67E8A;
    border-radius: 6px;
}



.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;
}

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

@media (max-width: 768px) {
    .lineSpace {
        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 1.5s ease-out, transform 0.8s ease-out;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.containerText {
    max-width: 100%; /* Ajustează automat pentru a fi responsive */
}

.wrap2{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 90%;
    margin: 1px auto;
}

.borderPrices{
    max-width: 750px;
    width: 100%;
    margin: 60px auto;
    box-shadow: 2px 2px 9px 5px #8b8a8a45;
    position: relative;
    border-radius: 5px;
    gap: 10px;

}
.titlePack{
    width: 100%;
    background-color: #D67E8A;
    color: rgb(255, 255, 255);
    text-align: center;
    font-size: 25px;
    padding: 10px 0 ;
    margin-bottom: 5px;
    border-radius: 5px;
    border: 1px solid rgb(82, 82, 82);
}
.imagePack{
    width: 100%;
    margin-bottom: 5px;
}
.imagePack img{
    width: 100%;
    outline: 1px solid rgb(238, 238, 238);
    outline-offset: -10px;
}
.timePack, .photoNrPack, .choicePack, .setupsPack, .outfitPack {
    width: 100%;
    color: rgb(82, 82, 82);
    text-align: center;
    font-size: 20px;
    padding: 10px 10px ;
    margin-bottom: 5px;
    border: 1px solid rgb(135, 135, 135);
    background-color: #fff;
}
.sessionFeePlus{
    font-size: 14px;
    border: none;
    font-weight: normal;
    margin: 5px auto;
    color:rgba(82, 82, 82);
    text-align: center;
    padding: 0;
    background-color: #fff;

}
.sale{
    text-decoration: line-through;
}
.buttonInquire{
    width: 50%;
    margin: auto;
    border: 1px solid rgb(82, 82, 82);
    padding: 10px;
    position: absolute;
    left: 25%;
    right: 25%;
    z-index: 2;
    top: 99.5%;
    color: rgb(82, 82, 82);
    background-color: #D67E8A;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    font-size: 20px;
    box-shadow: 1px 3px 9px 2px #7a7a7a;
}
.buttonInquire a{
    color: rgb(255, 255, 255);
}
.bold{
    font-weight: bold;
    color: rgb(82, 82, 82);
}
.cratime {
    font-size: 30px;
    color: #D67E8A;
}


.card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
    padding: 10px;
    margin: 0 auto;
  }

  .card-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 30px;
    color: #636363;
  }

  .info-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
  }

  .info-item img{
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    fill: #cd7d8b; /* culoare iconite */
  }

  .info-item svg {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    fill: #cd7d8b; /* culoare iconite */
  }

  .info-text h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: bold;
    color: #5c5c5c;
    padding: 0 10px;
  }

  .info-text p {
    margin: 5px 0 0 0;
    font-size: 0.95rem;
    color: #5c5c5c;
  }

  @media (max-width: 600px) {
    .card {
      padding: 15px;
    }

    .info-item svg {
      width: 45px;
      height: 45px;
    }

    .info-text h3 {
      font-size: 0.95rem;
    }

    .info-text p {
      font-size: 0.9rem;
      padding: 0 10px;
    }
  }

  .list{
    width: 80%;
  }
  .list li{
    padding: 5px 0;
  }