@charset "utf-8";
/* CSS Document */

/*
font-family: 'Akaya Telivigala', cursive;
font-family: 'Cookie', cursive;
font-family: 'Festive', cursive;
font-family: 'Gloria Hallelujah', cursive;
font-family: 'Imperial Script', cursive;
font-family: 'Merienda', cursive;
font-family: 'Redressed', cursive;
font-family: 'Righteous', cursive;
font-family: 'Sacramento', cursive;
font-family: 'Satisfy', cursive;
font-family: 'Tangerine', cursive;
font-family: 'Inspiration', cursive;
font-family: 'Kaushan Script', cursive;
font-family: 'Dancing Script', cursive;
font-family: 'Grape Nuts', cursive;
font-family: "Audiowide", sans-serif;
font-family: 'Princess Sofia', cursive;
font-family: 'Beau Rivage', cursive;
font-family: 'Babylonica', cursive;
font-family: 'Square Peg', cursive;
*/
/*---variables---*/
;root{
  --main-color: #ff5145;
  --dark: #0c1023;
  --dark-light: #191f3a;
  --white: #ffffff;
  --white-light: #c8c8c8;
  --shadow: 0 0 15px rgba(0,0,0,0.25);
  scroll-behavior: smooth;
  font-family: 'Dancing Script', cursive;
  
  -webkit-box-shadow: 5px 5px 30px 5px #FFFFFF;
  box-shadow: 5px 5px 30px 5px #FFFFFF;
  z-index: -1;
  transition: transform 0.5s ease;
}

/*---global-setings---*/
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;	
}
::before,
::after{
  box-sizing: border-box;	
}
body{
  font-size: 16px;
  line-height: 16px;
  -webkit-top-highlight-color: transparent;
  font-family: 'Square Peg', cursive;
  font-weight: 300;
  color: #c8c8c8;
}
img{
  vertical-align: middle;
  max-width: 100%;	
}
a{
  text-decoration: none;	
}
a:link {
  text-decoration: none;
  color: ;
}

/* visited link */
a:visited {
  color: ;
}

/* mouse over link */
a:hover {
  color: ;
}

/* selected link */
a:active {
  color: ;
}
::selection{
  background-color: #e70634;
  color: #080808;	
}
ul{
  list-style-type: none;
}
h1{
  font-weight: 700;
  color: #ffffff;
}
h2{
  font-weight: 600;
  color: #ffffff;
}
h3,
h4,
h5,
h6{
  font-weight: 500;
  color: #ffffff;
}
.link1{
  font-size: 20px;
  color: #8AD3F7;
  text-decoration: underline;
}
.link1:hover{
  color: #F3F703;
  text-decoration: none;
}
.titlu{
  font-size: 100px;
  line-height: 100px;
  margin-left: 15px;
}
.titlu1{
  font-size: 60px;
  line-height: 80px;
  margin-left: 15px;
}
.calificare{
  font-size: 20px;
  color: #ffffff;
  font-family: 'Square Peg', cursive;
  margin-left: 15px;
}
.container{
  max-width: 1170px;
  margin: auto; 	
}
.row{
  display: flex;
  flex-wrap: wrap;	
}
.justify-content-between{
  justify-content: space-between;	
}
.align-items-center{
  align-items: center;	
}
.min-vh-100{
  min-height: 100vh;
}
.sec-padding{
  padding: 80px 0;
}
section{
  overflow: hidden;	
}

/*---sectiunea-title---*/
.section-title{
  width: 100%;
  padding: 0 15px;
  text-align: center;
  margin-bottom: 60px;
}
.section-title h2{
  font-size: 35px;
  line-height: 35px;
}
.section-title h2::before{
  content: attr(data-title);
  display: block;
  font-size: 24px;
  line-height: 24px;
  color: #ff5145;
  font-weight: 400;
}

/*---butoane---*/
.btn{
  display: inline-block;
  padding: 10px 30px;
  background-color: transparent;
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.5s ease;
  font-size: 16px;
  cursor: pointer;
  font-family: inherit;
  color: #ff5145;
  line-height: 16px;
  user-select: none;
  border: none;
}
.btn-default{
  border: 1px solid #ff5145;
}

.btn-default:hover{
  color: #ffffff;
  background-color: #ff5145; 
}

/*---animation keyframes---*/
@keyframes zoomInOut{
  0%,100%{
    transform: scale(1);
  }
  50%{
    transform: scale(1.1);
  }
}
@keyframes spin01{
  0%{
    transform: rotate(0deg);
  }
  100%{
    transform: rotate(360deg);
  }
}
@keyframes pageLoader{
  0%,100%{
	transform: translateX(-50px);  
  }
  50%{
	transform: translateX(50px);  
  }
}

/*---page-loader-style---*/
.page-loader{
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #0c1023;
  z-index: 999;
  transition: all 0.6s ease;   	
}
.page-loader.fade-out{
  opacity: 0;	
}
.page-loader::before{
  content: '';
  position: absolute;
  height: 4px;
  width: 100px;
  background-color: #ff5145;
  left: calc(50% - 50px);
  top: calc(50% - 2px);
  animation: pageLoader 1s linear infinite; 	
}

/*---header---*/
.header{
  padding: 12px 0;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99;
  width: 100%;	
}
.header::before{
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #191f3a;
  -webkit-box-shadow: 5px 5px 30px 5px #FFFFFF;
  box-shadow: 5px 5px 30px 5px #FFFFFF;
  z-index: -1;
  transition: transform 0.5s ease;
  transform: translateY(-100%);
}
.header.sticky::before{
  transform: translateY(0%);
}
.header .logo{ 
  min-height: 34px;
  display: flex;
  align-items: center;
  padding: 0 15px;	
}
.header .nav-toggler{
  height: 34px;
  width: 44px;
  margin-right: 15px;
  cursor: pointer;
  border: none;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;	
}
.header .nav-toggler.active{
  position: absolute;
  right: 0;
  z-index: 1;
  transition: all 0.5s ease;
  transform: translateX(-200px);
  	
}
.header .nav-toggler span{
  height: 2px;
  width: 30px;
  display: block;
  background-color: #ffffff;
  position: relative;	
}
.header .nav-toggler.active span{
  background-color: transparent;
  transition: background-color 0.5s ease;
}
.header .nav-toggler span::before,
.header .nav-toggler span::after{
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #ffffff; 	
}
.header .nav-toggler span::before{
  transform: translateY(-8px);	
}
.header .nav-toggler.active span::before{
  transform: rotate(45deg);
  transition: transform 0.5s ease;
}
.header .nav-toggler span::after{
  transform: translateY(8px);	
}
.header .nav-toggler.active span::after{
  transform: rotate(-45deg);
  transition: transform 0.5s ease;
}
.header .nav{
  position: fixed;
  right: 0;
  top: 0;
  height: 100%;
  width: 280px;
  background-color: #0c1023;
  -webkit-box-shadow: 5px 5px 30px 5px #FFFFFF;
  box-shadow: 5px 5px 30px 5px #FFFFFF;
  overflow-y: auto;
  padding: 80px 0 40px;
  transition: transform 0.5s ease;
  transform: translateX(100%); 	
}
.header .nav.open{
  transform: translateX(0%);	
}
.header .nav ul li a{
  display: block; 
  font-size: 25px;
  color: #ffffff;
  padding: 10px 30px;
  font-family: 'Square Peg', cursive;
  transition: color 0.3s ease;	
}
.header .nav ul li a:hover{
  color: #ff5145;	
}

/*---sectiune-home---*/
.home-section{
  position: relative;
  overflow: hidden;
}
.home-section::before{
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0.7;
  z-index: -1;
}
.home-section .home-bg{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/home-bg.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  z-index: -2;
  animation: zoomInOut 20s ease infinite;
}
.home-section .min-vh-100{
  padding: 100px 0;
}
.home-text{
  padding: 0 15px;
  max-width: 700px;
  width: 100%;
  margin: auto;
  text-align: center;
}

.home-text h1{
  font-family: 'Square Peg', cursive;
  font-size: 60px;
  line-height: 75px;
  margin: 0 0 5px;
}
.home-text p{
  margin: 0 0 30px;
}

/*---sectiunea-despre-noi---*/
.about-section{
  background-color:  #0c1023;
}
.about-text,
.about-img{
  width: 50%;
}
.about-text .btn{
  margin: 15px;
}
.about-img img{
  width: 100%;
  border-radius: 25px;
}
.about-img .img-box{
  position: relative;
  border-radius: 25px;
  -webkit-box-shadow: 5px 5px 30px 5px #FFFFFF;
  box-shadow: 5px 5px 30px 5px #FFFFFF;
}
.about-img .img-box::before{
  content: '';
  position: absolute;
  height: 100px;
  width: 100px;
  border: 3px solid #ff5145;
  left:calc(50% - 50px);
  top:calc(50% - 50px);
  animation: spin01 10s linear infinite;
}
.about-img .img-box h3{
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  max-width: 250px;
  text-align: center;
  transform: translate(-50%,-50%);
  font-size: 30px;
  line-height: 30px;
  font-family: 'Square Peg', cursive;
  color: #0c1023;
  font-weight: bold;
}

/*---menu-section---*/
.menu-section{
  background-color: #191f3a;
  padding-bottom: 60px; 
}
.menu-section .section-title{
  margin-bottom: 40px;
}
.menu-tabs{
  padding: 0 15px;
  width: 100%;
  text-align: center;
  margin-bottom: 30px;
}
.menu-tab-item{
  font-size: 18px;
  font-family: inherit;
  border: none;
  background-color: transparent;
  font-weight: 500;
  color: #ffffff;
  cursor: pointer;
  margin: 0 10px 10px;
  transition: color: 0.3s ease;
  disply: inline-block;
}
.menu-tab-item.active{
  color: #ff5145;
}
.menu-tab-content{
  display: none;	
}
.menu-tab-content.active{
  display: flex;	
}
.menu-item{
  width: 50%;
  padding: 20px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.menu-item::after{
  content: '';
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 0;
  border-bottom: 1px dashed #666; 
}
.menu-item:nth-last-of-type(2)::after,
.menu-item:nth-last-of-type(1)::after{
  border: none; 	
}
.menu-item-title{
  display: flex;
  align-items: center;
  max-width: calc(100% -80px);	
}
.menu-item-title h3{
  font-size: 20px;
  transition: color 0.3s ease; 	
}
.menu-item:hover .menu-item-title h3{
  color: #ff5145;
  cursor: pointer; 	
}
.menu-item-title img{
  max-width: 100px;
  margin-right: 15px; 	
}
.menu-item-price{
  font-size: 16px;
  font-weight: 500;
  color:  #ff5145;
  transition: color 0.3s ease;	
}
.menu-item:hover .menu-item-price{
  color: #ffffff;
  cursor: pointer;  	
}

/*---Inceput-sectiune-testimonials---*/
.testimonials-section{
  background-color:  #0c1023;
  padding-bottom: 50px;	
}
.testi-item{
  width: calc((100% / 3) - 30px);
  margin: 0 15px 30px;
  border: 2px dotted #191f3a;
  padding: 30px;
  border-radius: 8px;
  -webkit-box-shadow: 5px 5px 30px 5px #FFFFFF;
  box-shadow: 5px 5px 30px 5px #FFFFFF;	
}
.testi-author{
  display: flex;
  justify-content: space-between;
  align-items:center;	
}
.testi-author h3{
  font-size: 16px;
  margin: 0 0 3px; 	
}
.testi-author span{
  display: block;
  font-size: 14px;	
}
.testi-author img{
  max-width: 60px;
  border-radius: 50%;
  border: 3px solid #191f3a;
  -webkit-box-shadow: 5px 5px 30px 5px #FFFFFF;
  box-shadow: 5px 5px 30px 5px #FFFFFF;
  transition: border-color 0.5s ease;	
}
.testi-item:hover .testi-author img{
  border-color: #ff5145;
  cursor: pointer;  	
}
.testi-item p{
  margin: 15px 0;	
}
.testi-item .ratings i{
  font-size: 16px;
  color: #ff5145;    	
}

/*---sectiunea-team---*/
.team-section{
  background-color: #0c1023;
  padding-bottom: 125px; 	
}
.team-item{
  width: calc(100% / 3);
  padding: 0 15px;
  position: relative;	
}
.team-item img{
  width: 100%;
  border-radius: 8px;
  transition: transform 0.3s ease;	
}
.team-item:hover img{
  transform: skewY(2deg);	
}
.team-item-info{
  background-color:  #191f3a;
  border-radius: 8px;
  padding: 15px;
  text-align: center;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  transform: translateY(50%);
  -webkit-box-shadow: 5px 5px 30px 5px #FFFFFF;
  box-shadow: 5px 5px 30px 5px #FFFFFF;
  transition: all 0.3s ease;
  pointer-events: none;	
}
.team-item:hover .team-item-info{
  transform: translateY(-15px);	
  background-color: #ff5145;
  color: #000000;
  font-weight: bold;
  margin: 0 0 10px; 
}
.team-item:hover .team-item-info h3,
.team-item:hover .team-item-info p{
  transform: translateY(-15px);	
  background-color: #ff5145;
  color: #000000;
  font-family: 'Akaya Telivigala', cursive;
}
.team-item-info h3{
  font-size: 18px;
  margin: 0 0 10px; 	
}
.team-item-info p{
	
}
.rosu{
  color: red;
  font-family: 'Akaya Telivigala', cursive;
  font-size: 14px;	
}

/*---footer style---*/
.footer{
  padding: 80px 0 0;
  background-image: url('../images/footer-bg.jpg');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  position: relative;
  z-index: 1;	
}
.footer::before{
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
  z-index: -1;	
}
.footer-item{
	width: calc(100% / 3);
	/* [disabled]padding: 0 15px; */
	text-align: center;
}
.footer-item h3{
  font-size: 22px;
  margin: 0 0 15px;	
}
.footer-item p{
  line-height: 30px;	
}
.footer-item .social-links{
  margin-top: 15px;	
}
.footer-item .social-links a{
  display: inline-flex;
  height: 40px;
  width: 40px;
  color: #c8c8c8;
  font-size: 22px;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;  	
}
.footer-item .social-links a:hover{
  color: #ff5145;	
}
.footer .copyright{
  margin: 80px 0 0;
  width: 100%;
  text-align: center;
  padding: 25px 15px;
  font-size: 14px;
  font-family: 'Akaya Telivigala', cursive;
  border-top: 1px dotted #c8c8c8; 	
}

/*---facem-website-ul-responsive---*/
@media(max-width:981px){
  .testi-item{
	width: calc(50% - 30px);  
  }
  .team-item{
	width: 50%;  
  }
  .team-item:not(:last-child){
	margin-bottom: 75px;  
  }
  .titlu,
  .titlu1,
  .calificare{
   margin-left: 15px;
  }
  
}
@media(max-width:767px){
  .home-text h1{
	font-size: 50px;
	line-height: 65px;  
  }
  .titlu{
  font-size: 60px;
  line-height: 60px;
  margin-left: 15px;
}
  .titlu1{
  font-size: 30px;
  line-height: 30px;
  margin-left: 15px;
 }
  .calificare{
  font-size: 18px;
  color: #ffffff;
  font-family: 'Square Peg', cursive;
  margin-left: 15px;
}
 .menu-item,
 .about-text,
 .about-img{
  width: 100%;  
 }
 .menu-item:nth-last-of-type(2)::after{
  border-bottom: 1px dotted #191f3a;  
 }
 .about-img{
  margin-top: 40px; 
 }
 .footer-item{
  width: 100%; 
 }
 .footer-item:not(:last-child){
  margin-bottom: 30px; 
 }
 .testi-item{
	width: calc(100% - 30px);  
  }
}
@media(max-width:575px){
  .titlu{
  font-size: 30px;
  line-height: 30px;
  margin-left: 15px;
  }
  .titlu1{
  font-size: 20px;
  line-height: 20px;
  margin-left: 15px;
  }
  .calificare{
  font-size: 18px;
  color: #ffffff;
  font-family: 'Square Peg', cursive;
  margin-left: 15px;
  }
  .team-item{
	width: 100%; 
  }
  .footer-item{
  width: 100%; 
 }
}
