* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    scroll-behavior: smooth;
}

body {
    height: 100vh;
    background-color: #fff;
}

/* NAVBAR START */


header {
    position: relative;
    padding: 0 ;
}

.navbar {
    
    /* ff 3.6+ */
    background:-moz-linear-gradient(90deg, rgba(240, 233, 233, 1) 0%, rgba(247, 222, 222, 1) 12%, rgba(255, 0, 0, 1) 100%); 

    /* safari 5.1+,chrome 10+ */
    background:-webkit-linear-gradient(90deg, rgba(240, 233, 233, 1) 0%, rgba(247, 222, 222, 1) 12%, rgba(255, 0, 0, 1) 100%);

    /* opera 11.10+ */
    background:-o-linear-gradient(90deg, rgba(240, 233, 233, 1) 0%, rgba(247, 222, 222, 1) 12%, rgba(255, 0, 0, 1) 100%);

    /* ie 6-9 */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff0000', endColorstr='#F0E9E9', GradientType=0 );

    /* ie 10+ */
    background:-ms-linear-gradient(90deg, rgba(240, 233, 233, 1) 0%, rgba(247, 222, 222, 1) 12%, rgba(255, 0, 0, 1) 100%);

    /* global 94%+ browsers support */
    background:linear-gradient(90deg, rgba(240, 233, 233, 1) 0%, rgba(247, 222, 222, 1) 12%, rgba(255, 0, 0, 1) 100%);
    width: 100%;
    height: 60px;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'oswald', sans-serif;

}

.navbar li {
    list-style: none;
   
}
.navbar a {
    text-decoration: none;
    font-size: 1rem;
    color: rgb(255, 255, 255);
}


.navbar A:hover {
    color: #e32626;
    
}

.navbar ul li::after{
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background: #e32626;
    transition: width 0.4s;
    margin: auto;
}

.navbar ul li:hover::after{
    width: 100%;
    transition: width 0.4s;
}
.logo {
    background-image: url(/src/assets/images/logo.png);
    background-size: cover;
    background-position: center;
    width: 10rem;
    height: 10rem;

}
.navbar .logo a {
    font-size: 1.5rem;
}

.navbar .links {
    display: flex;
    gap: 2rem;
}
.navbar .toggle_btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.action_btn {
    background-color: #fff;
    color: red !important;
    padding: 0.5rem 1rem;
    border: none;
    outline: none;
    border-radius: 20px;    
    font-size: 0.8rem;
    font-weight: bold;
    cursor: pointer;
    transition: scale 0.2 ease;
}
.action_btn:hover {
    scale: 1.05;

}
.action_btn:active {
    scale: 0.95;
}

/* DROPDOWN */
.dropdown_menu {
    display: none;
    position: absolute;
    width: 300px;
    height: 0;
    top: 60px;
    z-index: 9999;
    right: 2rem;
    background: rgba(240, 237, 237, 0.5);
    backdrop-filter: blur(15px);
    border-radius: 10px;
    overflow: hidden;
    transition: height 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
   

}
.dropdown_menu.open{
    height: auto;

}
.dropdown_menu li {
    padding: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    
}
.dropdown_menu a {
    text-decoration: none;
    color: #d30707;
}
.dropdown_menu .action_btn {
    width: 100%;
    display: flex;
    justify-content: center;
   
}
/* DROPDOWN END */

/* RESPONSIVE PART */

@media (max-width: 992px) {
    .navbar .links,
    .navbar .action_btn {
        display: none;
    }
    .navbar .toggle_btn {
      margin-right: 5px;
        display: block;
    }
    .dropdown_menu {
        display: block;
    }

    .sigle img {
      width: 100%;
    }
}

@media (max-width: 547px) {
    .dropdown_menu {
        left: 2rem;
        width: unset;
    }

    .slider img {
      object-fit: cover;
    }
}




/* gallery */
.gallery-container {
  font-family: 'oswald', sans-serif;
  width: 100%;
  color: #070707;
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px;
  border-radius: 2rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;;
}

.gallery-container h1 {
  text-align: center;
  padding: 20px 0;
  font-size: 24px;
}

.gallery {
  position: relative;
}

.slider {
  display: flex;
  flex-wrap: nowrap;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  height: 25rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  overflow: hidden;
}

.slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
.slider img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}


.slide img {
  max-width: 100%;
  height: auto;
}

.slide-text {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 10px;
}


.controls {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 20px;
  
  
}

.prev,
.next {
  background-color: #ffffff;
  border: none;
  color: #d30707;
  font-size: 16px;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.prev:hover,
.next:hover {
  background-color: #d30707;
  color: #ffffff;
}

@media screen and (max-width: 768px) {
  .slider {
    height: 300px;
  }
}
/* styles for the modal */
.modal {
  display: none; /* hide the modal by default */
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
  margin: auto;
  display: block;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 90%;
  max-height: 90%;
}

.close {
  color: white;
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}


.masaj {
  padding: 5px;
  margin: 0.5rem;
  border-radius: 2rem;
  display: flex;
  flex-direction: column;
   box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.masaj h1 {
  text-align: center;
  font-size: 2rem;
  margin-top: 1rem;
}
.tipuri-masaj {
  margin: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  grid-gap: 20px;
  
}

.tip {
  display: flex;
  flex-direction: column;
  align-items: center;
  
}

.tip img {
  max-width: 100%;
  width: 12rem;
  height: 9rem;
  margin-bottom: 10px;
  border-radius: 2rem;
  cursor: pointer;
  object-fit: cover;
}

.tip h2 {
  text-align: center;
  font-size: 1.2rem;
}

.masajVideo {
  position: relative;
  text-align: center;
  margin: 1rem;
  margin-top: 3rem;
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.video h2 {
  text-align: center;
  font-size: 1.2rem;
  margin-top: 1rem;}

/* .masajVideo h1 {
  text-align: center;
  font-size: 2rem;
  padding: 1rem;
}

.masajVideo .video-container {
  display: flex;
  flex-wrap: wrap;
  gap:1rem;
  justify-content: center;
  padding: 0.7rem;
}

.masajVideo .video-container .video {
  height: 15rem;
  width: 10rem;
  border: 5px solid #d30707;
  border-radius: 1rem;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.7);
}

.masajVideo .video-container .video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .2s linear;
}

.masajVideo .video-container .video:hover video {
  transform: scale(1.1);
}

.masajVideo .popup-video {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.8);
  height: 100%;
  width: 100%;
}

.masajVideo .popup-video video {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  border-radius: 5px;
  border: 2px solid #fff;
  object-fit: cover;
} */

.masajVideo {
  text-align: center;
}

.masajVideo h1 {
  margin-bottom: 20px;
}

.video-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.video {
  margin: 10px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.video video {
  width: 15rem;
  height: 10rem;
  object-fit: cover;
  border-radius: 5px;
}

.modal__video {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.closeModal {
  color: #fff;
  font-size: 36px;
  font-weight: bold;
  position: absolute;
  top: 10px;
  right: 20px;
  cursor: pointer;
}

.video__modal-content {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

#modalVideo {
  max-width: 100%;
  max-height: 100%;
}



/* .video-item .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 40px;
  color: #fff;
  cursor: pointer;
} */


  /* gallery end */

/* Footer */
.footer {
    position: relative;
    width: 100%;
    /* ff 3.6+ */
    background:-moz-linear-gradient(90deg, rgba(240, 233, 233, 1) 0%, rgba(247, 222, 222, 1) 12%, rgba(255, 0, 0, 1) 100%); 

    /* safari 5.1+,chrome 10+ */
    background:-webkit-linear-gradient(90deg, rgba(240, 233, 233, 1) 0%, rgba(247, 222, 222, 1) 12%, rgba(255, 0, 0, 1) 100%);

    /* opera 11.10+ */
    background:-o-linear-gradient(90deg, rgba(240, 233, 233, 1) 0%, rgba(247, 222, 222, 1) 12%, rgba(255, 0, 0, 1) 100%);

    /* ie 6-9 */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff0000', endColorstr='#F0E9E9', GradientType=0 );

    /* ie 10+ */
    background:-ms-linear-gradient(90deg, rgba(240, 233, 233, 1) 0%, rgba(247, 222, 222, 1) 12%, rgba(255, 0, 0, 1) 100%);

    /* global 94%+ browsers support */
    background:linear-gradient(90deg, rgba(240, 233, 233, 1) 0%, rgba(247, 222, 222, 1) 12%, rgba(255, 0, 0, 1) 100%);
    min-height: 75px;
    padding: 10px 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  
  .social-icon,
  .menu {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
    flex-wrap: wrap;
  }
  
  .social-icon__item,
  .menu__item {
    list-style: none;
  }
  
  .social-icon__link {
    font-size: 2rem;
    color: #fff;
    margin: 0 10px;
    display: inline-block;
    transition: 0.5s;
  }
  .social-icon__link:hover {
    transform: translateY(-10px);
  }
  
  .menu__link {
    font-size: 1.2rem;
    color: #fff;
    margin: 0 10px;
    display: inline-block;
    transition: 0.5s;
    text-decoration: none;
    opacity: 0.75;
    font-weight: 300;
  }
  
  .menu__link:hover {
    opacity: 1;
  }
  
  .footer p {
    color: #fff;
    margin: 15px 0 10px 0;
    font-size: 0.8rem;
    font-family: 'oswald', sans-serif;
    font-weight: 300;
  }
.sigle {
    display: flex;
    align-items: center;
}

.sigle img {
    height: 3rem;
    margin-right: 0.5rem;
}
  /* Footer END */
  