@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600;700&display=swap');

:root{
  --orange:#fcc300;
  --red:#c90101;
  --white: #fff;
}

*{
  font-family: 'Nunito', sans-serif;
  margin:0; padding:0;
  box-sizing: border-box;
  outline: none; border:none;
  text-decoration: none;
  transition: all .2s linear;
}

*::selection{
  background:var(--orange);
  color:#fff;
}

html{
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-padding-top: 6rem;
  scroll-behavior: smooth;
}

section{
  padding:2rem 9%;
}

.heading{
  text-align: center;
  padding:2.5rem 0;
  text-transform: capitalize;

}

/* .heading span{
  font-size: 3.5rem;
  background:rgba(255, 165, 0,.2);
  color:#fff;
  border-radius: .5rem;
  padding:.2rem 1rem;
} */

.heading span {
  font-size: 3.5rem;
  color: #fff;
  border-radius: 0.5rem;
  padding: 0.2rem 1rem;
  text-shadow: 1px 1px 1px #000;
}

.heading span:nth-child(1) {
  background: rgba(255, 165, 0, 0.2); /* Orange */
}

.heading span:nth-child(2) {
  background: rgba(255, 0, 0, 0.2); /* Red */
}

.heading span:nth-child(3) {
  background: rgba(0, 255, 0, 0.2); /* Green */
}

.heading span:nth-child(4) {
  background: rgba(0, 0, 255, 0.2); /* Blue */
}

.heading span:nth-child(5) {
  background: rgba(255, 255, 0, 0.2); /* Yellow */
}

.heading span:nth-child(6) {
  background: rgba(128, 0, 128, 0.2); /* Purple */
}

.heading span:nth-child(7) {
  background: rgba(0, 255, 255, 0.2); /* Cyan */
}

.heading span:nth-child(8) {
  background: rgba(255, 165, 0, 0.2); /* Orange */
}

.heading span:nth-child(9) {
  background: rgba(255, 0, 0, 0.2); /* Red */
}

.heading span:nth-child(10) {
  background: rgba(0, 255, 0, 0.2); /* Green */
}
.heading span:nth-child(11) {
  background: rgba(128, 0, 128, 0.2); /* Green */
}

.heading span:nth-child(12) {
  background: rgba(0, 0, 255, 0.2); /* Blue */
}
.heading span:nth-child(13) {
  background: rgba(255, 255, 0, 0.2); /* Yellow */
}
.heading span:nth-child(14) {
  background: rgba(255, 0, 0, 0.2); /* Red */
}
.heading span:nth-child(15) {
  background: rgba(0, 255, 255, 0.2); /* Cyan */
}



.heading span.space{
  background:none;
}

.btn{
  display: inline-block;
  margin-top: 1rem;
  background:var(--orange);
  color:#fff;
  padding:.8rem 3rem;
  border-radius: 5px;
  border:.2rem solid var(--orange);
  cursor: pointer;
  font-size: 1.7rem;
  text-transform: capitalize;
  text-shadow: 1px 1px 1px #000;

}

.btn:hover{
  background:rgba(255, 165, 0,.2);
  color:var(--orange);
}

header{
  position: fixed;
  top:0; left: 0; right:0;
  background:rgba(255,255,255,1);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding:2rem 9%;
  border-bottom: 0.1px solid var(--red);
}

header .logo{
  font-size: 2.5rem;
  font-weight: bolder;
  color:var(--red);
  text-transform: uppercase;
}

header .logo img{
  width: 100px;
}

header .navbar a{
  color:var(--red);
  font-size: 2.2rem;
  font-weight: bold;
  margin:0 .8rem;
  text-shadow: 1px 1px 1px #000;
}

header .navbar a:hover{
  color:var(--orange);
}

header .icons i{
  font-size: 2.5rem;
  color:var(--red);
  cursor: pointer;
  margin-right: 2rem;
}

header .icons i:hover{
  color:var(--orange);
}
/*header .search-bar-container{
  position: absolute;
  top:100%; left: 0; right:0;
  padding:1.5rem 2rem;
  background:var(--red);;
  border-top: .1rem solid rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  z-index: 1001;
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
}

header .search-bar-container.active{
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

header .search-bar-container #search-bar{
  width:100%;
  padding:1rem;
  text-transform: none;
  color:#333;
  font-size: 1.7rem;
  border-radius: .5rem;
}

header .search-bar-container label{
  color:#fff;
  cursor: pointer;
  font-size: 3rem;
  margin-left: 1.5rem;
}

header .search-bar-container label:hover{
  color:var(--orange);
}*/




#menu-bar{
  color:var(--red);
  border:.1rem solid var(--red);
  border-radius: .5rem;
  font-size: 3rem;
  padding:.5rem 1.2rem;
  cursor: pointer;
  display: none;
}

.home {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  position: relative;
  z-index: 0;
}

.home .content {
  text-align: center;
  text-shadow: 2px 2px 2px #000;
  background-color: rgba(24, 150, 157, 0.2);
  padding: 10px;
}

.home .content h3 {
  font-size: 4.5rem;
  color: #ffffff;
  text-transform: uppercase;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 1);
}

.home .content p {
  font-size: 2.5rem;
  color: #fff;
  padding: 0.5rem 0;
}

.home .image-container img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.home .controls {
  padding: 1rem;
  border-radius: 5rem;
  background: rgba(0, 0, 0, 0.7);
  position: relative;
  top: 10rem;
}

.home .controls .img-btn {
  height: 2rem;
  width: 2rem;
  display: inline-block;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  margin: 0 0.5rem;
}

.home .controls .img-btn.active {
  background: var(--orange);
}


.about .row{
  display: flex;
  flex-wrap: wrap;
  gap:1.5rem;
  align-items: center;
}

.about .row .image{
  flex:1 1 40rem;
}

.about .row .image img{
  width:100%;
  border-radius: 15%;
}

.about .row .text{
  flex:1 1 40rem;
  padding:2rem;
  box-shadow: 0 1rem 2rem rgba(0,0,0,.1);
  border-radius: .5rem;
}

.about .row .text h2{
  font-size: 4rem;
  padding:1rem 0;
  text-align: center;
  color: #00003b;
  text-shadow: 2px 2px 3px #fff;
  }


.about .row .text p{
  padding:.5rem 0;
  font-size: 2rem;
  text-align: justify;
  color: #00003b;
  text-shadow: 0.5px 0.5px 1px #fff;
}



.places .box-container{
  display: flex;
  flex-wrap: wrap;
  gap:2rem;
}

.places .box-container .box{
  flex:1 1 30rem;
  border-radius: .5rem;
  overflow: hidden;
  box-shadow: 0 1rem 2rem rgba(0,0,0,.1);
}

.places .box-container .box img{
  height: 25rem;
  width:100%;
  object-fit: cover;
}

.places .box-container .box .content{
  padding:2rem;
}

.places .box-container .box .content h3{
  font-size:2rem;
  color:#333;
}

.places .box-container .box .content h3 i{
  color:var(--orange);
}

.places .box-container .box .content p{
  font-size:1.7rem;
  color:#666;
  padding:1rem 0;
}

 .stars i{
  font-size:1.7rem;
  color:var(--orange);
}

/* Reviews Section CSS */

.reviews {
  padding: 50px 0;
  text-align: center;
}

.reviews .heading {
  font-size: 2.5rem;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  gap: 5px;
}

.reviews .heading span {
  font-weight: bold;
  font-size: 3rem;
}

.owl-carousel .item {
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 10px;
  text-align: center;
  height: 380px;
}

.owl-carousel .item h3 {
  font-size: 1.8rem;
  color: #fff;
  text-shadow: 1px 1px 1px #000;
  margin: 10px 0;
}

.owl-carousel .item p {
  font-size: 2rem;
  color: #000;
  line-height: 1.5;
}

.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px;
  border-radius: 50%;
  transition: transform 0.3s ease;
  background-color:var(--orange) !important; 
}

.owl-theme .owl-dots .owl-dot.active span {
  transform: scale(1.2);
  background-color: var(--red) !important;
}


.gallery .box-container{
  display: flex;
  flex-wrap: wrap;
  gap:1.5rem;
}

.gallery .box-container .box{
  overflow: hidden;
  box-shadow: 0 1rem 2rem rgba(0,0,0,.1);
  border:1rem solid #fff;
  border-radius: .5rem;
  flex:1 1 30rem;
  height: 25rem;
  position: relative;
}

.gallery .box-container .box img{
  height: 100%;
  width:100%;
  object-fit: cover;
}

.gallery .box-container .box .content{
  position: absolute;
  top:-100%; left:0;
  height: 100%;
  width:100%;
  text-align: center;
  background:rgba(0,0,0,.7);
  padding:2rem;
  padding-top: 5rem;
}

.gallery .box-container .box:hover .content{
  top:0;
}

.gallery .box-container .box .content h3{
  font-size: 2.5rem;
  color:var(--orange);
}

.gallery .box-container .box .content p{
  font-size: 1.5rem;
  color:#eee;
  padding:.5rem 0;
}

.contact .row {
  display: flex;
  flex-wrap: wrap; /* Permite dispunerea pe rânduri pentru ecrane mici */
  gap: 2rem;
  align-items: stretch; /* Aliniază vertical ambele coloane */
}

.contact .row .details,
.contact .row .map {
  flex: 1 1 100%; /* Inițial coloanele ocupă 100% din lățime */
  max-width: 48%; /* Pe ecrane mari, ambele coloane ocupă aproximativ 50% */
  height: 500px;
}

.contact .row .details {
  padding: 2rem;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Centrează vertical conținutul */
}

.contact .row .details img{
  width: 250px;
  height: 250px;
  border-radius: 10%;
  margin: 10px auto;
}

.contact .row .details p {
  margin: 0.5rem 0;
  font-size: 2rem; 
  color: #000;
}

.contact .row .map iframe {
  width: 100%;
  height: 100%; 
  border: 0;
  border-radius: 0.5rem;
}

.contact .heading {
  font-size: 3rem; /* Font mai mare pentru titlu */
  margin-bottom: 2rem;
  text-align: center;
}

@media (max-width: 768px) {
  .contact .row {
    flex-direction: column; /* Coloanele devin rânduri pe ecrane mici */
  }

  .contact .row .details,
  .contact .row .map {
    max-width: 100%; /* Ambele coloane ocupă întreaga lățime */
  }

  .contact .row .details p {
    font-size: 1.6rem; /* Font și mai mare pe ecrane mici */
  }
}



.footer{
  border-top:2px solid var(--red);
  background: linear-gradient(
    to right,
    rgba(255, 0, 0, 0.2),     /* Roșu */
    rgba(255, 165, 0, 0.2),   /* Portocaliu */
    rgba(255, 255, 0, 0.2),   /* Galben */
    rgba(0, 128, 0, 0.2),     /* Verde */
    rgba(0, 0, 255, 0.2),     /* Albastru */
    rgba(75, 0, 130, 0.2),    /* Indigo */
    rgba(238, 130, 238, 0.2)  /* Violet */
  );
}

.footer .box-container{
  display: flex;
  flex-wrap: wrap;
  gap:2rem;
}

.footer .box-container .box{
  padding:1rem 0.5rem;
  flex:1 25%;
  text-shadow: 1px 1px 1px #000;
}

.footer .box-container .box h3{
  font-size: 2.5rem;
  padding:.7rem 0;
  color:var(--white);
}

.footer .box-container .box p{
  font-size: 1.8rem;
  padding:.7rem 0;
  color:var(--red);
}

.footer .box-container .box p em{
 color: var(--orange);
}

.footer .box-container .box a{
  display: block;
  font-size: 1.8rem;
  padding:.7rem 0;
  color:var(--red);
}

.footer .box-container .box a:hover{
  color:var(--orange);
  text-decoration: underline;
}

.copyright {
  color: var(--white);
  padding: 1rem;
  text-align: center;
  text-shadow: 1px 1px 1px #000;
  margin-bottom: 0px;
  font-size: 2rem;
  border-top: .1rem solid var(--red);
  margin-top: 2rem;
}
/* .copyright p, .copyright a{
  text-decoration: none;
  color: #fff;
} */

.footer .credit{
  text-align: center;
  font-size: 1.5rem;
  font-weight: normal;
  color:var(--red);
}

.footer .credit a{
  text-decoration: none;
  color:var(--orange);
  text-shadow: 1px 1px 1px #000;
}
.footer .credit a:hover{
  text-decoration:underline; 
  color:var(--red);
  text-shadow: 1px 1px 1px #000;
}

.footer .credit a img{

width: 20px;
height: 20px;
}




/* media queries  */

@media (max-width:1200px){

  html{
    font-size: 55%;
  }

}

@media (max-width:991px){


  #menu-bar{
    display: initial;
  }

  header .navbar{
    position: absolute;
    top:100%; right:0; left: 0;
    background-color: rgba(233, 225, 225, 0.9);
    border-top: .1rem solid rgba(0,0,0,.2);
    padding:1rem 2rem;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }

  header .navbar.active{
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

  header .navbar a{
    display: block;
    border-radius: .5rem;
    padding:1.5rem;
    margin:1.5rem 0;
    color: #fff;
  }
  header .navbar a:nth-child(1) {
    background: rgba(255, 165, 0, 0.2); /* Orange */
  }
  
  header .navbar a:nth-child(2) {
    background: rgba(255, 0, 0, 0.2); /* Red */
  }
  
  header .navbar a:nth-child(3) {
    background: rgba(0, 255, 0, 0.2); /* Green */
  }
  header .navbar a:nth-child(4) {
    background: rgba(0, 0, 255, 0.2); /* Blue */
  }
  
  header .navbar a:nth-child(5) {
    background: rgba(255, 255, 0, 0.2); /* Yellow */
  }
  
  header .navbar a:nth-child(6) {
    background: rgba(128, 0, 128, 0.2); /* Purple */
  }
  
  header .navbar a:nth-child(7) {
    background: rgba(0, 255, 255, 0.2); /* Cyan */
  }
   /* header .logo, header logo img{
    display: none;
  } */
}

@media (max-width:450px){

  html{
    font-size: 50%;
  }

  .heading span{
    font-size: 2.5rem;
  }

  .contact .row form .inputBox input{
    width:100%;
  }

}

@media screen and (max-height: 500px) and (orientation: landscape) {
  header {
    padding: 0.1rem 5%;
  }

  header .logo img {
    width: 70px; /* Reduci dimensiunea logo-ului */
  }

  #menu-bar{
    color:var(--red);
    border:.1rem solid var(--red);
    border-radius: .5rem;
    font-size: 1.5rem;
    padding:.5rem 1.2rem;
  
  }

 
}