* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 10px;
}

body {
  overflow-x: hidden;
  background-color: #ffffff;
  background-size: cover;
  background-position: center;
}

/* Scrollbar */
::selection {
  background-color: white;
  color: #ff6203;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background-color: #f9f1ec;
}

::-webkit-scrollbar-thumb {
  border-radius: 6px;
  background-color: #ff6203;
}

::-webkit-scrollbar-thumb:hover {
  border-radius: 1rem;
  background-color: #d65301;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.918);
  padding: 0 50px;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70px;
  transition: all 0.3s ease;
}

header nav ul li a {
  font-size: 16px;
  color: #000000;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease, font-size 0.3s ease;
}

.logo-content {
  display: flex;
  align-items: center;
}

header img {
  width: 150px;
  height: auto;
  margin-right: 70px;
  display: block;
  filter: drop-shadow(0px 1px 1px rgba(0, 0, 0, 0.411));
}

header nav {
  display: flex;
  align-items: center;
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}

.logo img {
  max-width: 150px;
}

/* Butonul de hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 25px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 20;
}

.hamburger .bar {
  width: 100%;
  height: 4px;
  background-color: #fff;
  border-radius: 5px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active .bar:nth-child(1) {
  transform: rotate(45deg) translateY(7px);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: rotate(-45deg) translateY(-7px);
}

/* Header Links */
.menu-list a {
  text-decoration: none;
  font-size: 18px;
  color: #000000;
  position: relative;
  transition: color 0.3s ease;
}

.menu-list a:hover {
  color: #ff0066;
  background-color: transparent;
}

/* Dot Under Link */
.menu-list a::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background-color: transparent;
  border-radius: 50%;
  transition: background-color 0.3s ease, width 0.3s ease, height 0.3s ease;
}

header nav ul li a:hover::after {
  background-color: #ff0066;
  width: 8px;
  height: 8px;
}

.menu-arrow {
  display: none;
}


/* --------------------------------------- */

.tapered-line {
  width: 80%;
  height: 3px;
  background: linear-gradient(to right,
      transparent 0%,
      rgba(0, 0, 0, 0.350) 40%,
      rgba(0, 0, 0, 0.350) 60%,
      transparent 100%);
  margin: 0px auto;
  margin-top: 100px;
}


/* Homepage */
.homepage {
  position: relative;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  margin-top: 0;
}

.video-background {
  padding-top: 70px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.video-container {
  width: 100%;
  height: 95vh;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 70px;
  left: 0;
  overflow: hidden;
}
.desktop-video,
.mobile-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mobile-video {
  display: none;
}
.video-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.homepage-content {
  position: absolute;
  top: 50%;
  left: 100px;
  transform: translateY(-50%);
  padding: 20px;
  color: white;
  font-family: Arial, sans-serif;
  z-index: 1;
}

.homepage-text h1 {
  font-size: 40px;
  margin-bottom: 20px;
}

.homepage-content a {
  display: inline-block;
  background-color: #ffffff;
  color: rgb(0, 0, 0);
  padding: 10px 20px;
  text-decoration: none;
  font-size: 15px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.homepage-content a:hover {
  color: #ffffff;
  background: #ff6203;
}


/* Oferts */
.oferts {
  scroll-margin-top: 100px;
  margin-bottom: 50px;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transform: translateY(40px);
}

.oferts a {
  text-decoration: none;
  color: #000000;
}

.oferts-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.oferts-content h2 {
  font-size: 35px;
  font-weight: bold;
  margin-bottom: 25px;
  color: #000000;
  margin-top: 50px;
}

.oferts-content a {
  color: #ffffff;
  background: #ff6203;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 16px;
  transition: background-color 0.3s ease;
  margin-bottom: 20px;
  display: inline-block;
}

.oferts-content a:hover {
  background: #ff4500;
}

#oferts-sea #oferts-content a {
  transform: translateX(45px);
}

#oferts-mountain #oferts-content a {
  transform: translateX(55px);
}

#oferts-citybreak #oferts-content a {
  transform: translateX(14px);
}

#oferts-trips #oferts-content a {
  transform: translateX(14px);
}

#oferts-cruise #oferts-content a {
  transform: translateX(8px);
}

#oferts-sea {
  margin-top: 20px;
  padding: 0 100px;
}

#oferts-mountain,
#oferts-citybreak,
#oferts-trips,
#oferts-cruise {
  padding: 0px 100px;
}

#oferts-cruise .offer-box {
  margin-bottom: 50px;
}
/* Oferts Box */
.index-oferts {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); 
  gap: 20px;
  width: 100%; 
  max-width: 1200px; 
  margin: 0 auto; 
  padding: 0 10px;
}

.offer-box {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
/* Offer Box Hover Effect */
.offer-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.301);
}

.offer-image {
  width: 100%;
  height: 200px; 
  object-fit: cover;
}

/* Offer Details */
.offer-details {
  padding: 15px;
  text-align: left;
  letter-spacing: 0px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
  border-radius: 0 0 12px 12px;
  height: 100%;
  display: flex;
  align-items: left;
}

.offer-big-title {
  font-size: 19px;
  font-weight: bold;
  color: #000000;
  margin: 0;
  text-transform: uppercase;
  transform: translateY(-5px);
  letter-spacing: 1px;
}

.offer-details h3 {
  letter-spacing: 0px;
}

.details-under-title-offer {
  line-height: 17px;
}

.offer-small-text {
  font-size: 13px;
}

/* Price Styling */
.price-details {
  display: flex;
  margin: 0;
  transform: translateY(20px);
  white-space: nowrap;
}

.offer-price-1 {
  font-size: 16px;
  color: #ff0066;
  margin: 0;
  font-weight: 500;
  margin-right: 10px;
}

.offer-price-2 {
  font-size: 20px;
  color: #ff0066;
  margin: 0;
  font-weight: 500;
  transform: translateY(-3px);
}

.price-style {
  font-size: 25px;
  color: #ff0066;
  margin: 0;
  font-weight: 1000;
  margin-right: 5px;
  transform: translateY(-12px);
}


/* Footer */
.footer {
  background: #ff0066;
  color: white;
  padding: 0;
  width: 100%;
}

.container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-column {
  flex: 1;
  min-width: 250px;
  margin: 20px;
}

.footer-column h3 {
  font-size: 17px;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: rgb(255, 255, 255);
}

.footer-column h2 {
  font-size: 15px;
  margin-top: 10px;
  text-transform: uppercase;
  color: rgb(255, 255, 255);
}

.footer-column p {
  font-size: 14px;
  color: #ffffff;
  line-height: 1.6;
}

.footer-column ul {
  font-size: 18px;
  color: #ffffff;
  line-height: 1.4;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  color: #e2e2e2;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #ffcc00;
}

/* Logo Footer */
.logo-section img {
  width: 180px;
  margin-bottom: 10px;
}

.social-icons {
  margin-top: 15px;
}

.social-icons a {
  background: #ffffff;
  height: 40px;
  width: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  margin-right: 10px;
  transition: all 0.3s;
  text-decoration: none;
}

.footer-column .footer-icon img {
  border-radius: 100%;
  box-shadow: 0 0 0 3px white;
  height: 40px;
  width: 40px;
}

.social-icons a:hover {
  transform: scale(1.1);
}

/* Copyright */
.footer-bottom {
  text-align: center;
  justify-content: center;
  margin-top: 0;
  font-size: 14px;
  color: #000000;
  background: #ffffff;
}

/* Contact Text */
.contact-text {
  font-size: 16px;
  font-weight: 600;
  color: white;
  white-space: nowrap;
  transition: transform 0.3s ease;
}

.contact-apps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.contact {
  display: flex;
  gap: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
  align-items: center;
}

.contact:hover {
  transform: scale(1.1);
}

.contact img {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
}





/* ---------------------------- */
/* Contact Button */
.contact-button-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.contact-button {
  padding: 15px;
  color: white;
  background-color: #ff0066;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.445);
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  width: 60px;
  height: 60px;
}

.contact-button span {
  font-size: 30px;
  transition: opacity 0.3s ease;
}

.contact-button.active {
  transform: rotate(180deg);
}

.contact-button.active span {
  opacity: 0;
}

.contact-button.active:after {
  content: "X";
  font-size: 32px;
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Contact Bubbles */
.contact-bubbles {
  position: fixed;
  bottom: 100px;
  right: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0s 0.3s;
}

.contact-bubbles.show {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease-in-out, visibility 0s 0s;
}

/* Bubbles */
.bubble {
  background-color: #ff0066;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 5px;
  border-radius: 50%;
  cursor: pointer;
  width: 60px;
  height: 60px;
  font-size: 24px;
  position: relative;
  box-shadow: 8px 8px 25px rgba(0, 0, 0, 0.4), 4px 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
}

.bubble img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}

.bubble:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 12px 12px 30px rgba(0, 0, 0, 0.5), 6px 6px 15px rgba(0, 0, 0, 0.3);
}

.bubble.show {
  display: inline-block;
  transform: translateY(0);
  opacity: 1;
}

/* Animation for the bubbles */
.bubble:nth-child(1) {
  animation: bubbleAnimation 0.3s ease-out 0.1s forwards;
}

.bubble:nth-child(2) {
  animation: bubbleAnimation 0.3s ease-out 0.2s forwards;
}

.bubble:nth-child(3) {
  animation: bubbleAnimation 0.3s ease-out 0.3s forwards;
}

@keyframes bubbleAnimation {
  from {
    transform: translateY(20px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}




/* --------------------------- */
/* Hotel Info & */
.hotel-info {
  max-width: 1200px;
  margin: 50px auto;
  background-color: #fff;
  padding: 60px;
  border-radius: 8px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

h1.title {
  text-align: center;
  font-size: 36px;
  color: #2b2b2b;
  margin-bottom: 20px;
}

/* Info Container */
.info-container {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

/* Gallery Styling */
.gallery {
  flex: 1;
}

.jumbo {
  width: 90%;
  border-radius: 8px;
  margin-bottom: 10px;
}

.thumbnail {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
  max-width: 90%;
}

.thumb {
  width: 100%;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.thumb:hover {
  opacity: 0.8;
  transform: scale(1.05);
}

.more-images {
  grid-column: span 3;
  text-align: center;
  font-size: 16px;
  color: #007bff;
  cursor: pointer;
  margin-top: 10px;
}

/* Booking Info */
.hotel-search-form {
  width: 300px;
  height: 470px; 
  border-radius: 15px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.473);
  padding: 25px; 
}

.booking-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: rgb(0, 0, 0);
  margin-bottom: 20px;
}

.info-1 {
  font-size: 16px;
  margin-bottom: 5px;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.info-2 {
  font-size: 16px;
  color: #000000;
  text-align: right;
}

.info-price1 {
  font-size: 20px;
  font-weight: bold;
  color: #ff0066;
  text-align: right;
  transform: translateY(-3px);
}

.info-price2 {
  color: #ff0066;
  margin-left: 20px;
}

/* Stars */
.stars {
  text-align: center;
  margin-bottom: 15px;
}

.star {
  font-size: 25px;
  color: gold;
}

/* Hotel Features */
.hotel-features {
  font-size: 15px;
  justify-items: left;
}

.hotel-features h3 {
  color: #0093bf;
  margin-bottom: 15px;
  margin-left: 25px;
}

.hotel-features ul {
  list-style: none;
  padding-left: 0;
}

.hotel-features ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px; 
  color: #000;
  list-style: none;
  line-height: 1.2;
  align-self: center;
}

.hotel-features ul li::before {
  content: "✓";
  color: red;
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 18px;
}

/* Button Styles */
.btn-check-now {
  font-weight: bold;
  margin-top: 20px;
  width: 100%;
  height: 40px; 
  background-color: #ff6203;
  border: none;
  color: #000000;
  font-size: 16px;
  text-transform: uppercase;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-check-now:hover {
  border: 2px solid #ff6203;
  background-color: #ff640375;
}

/* Media Box Styles */
.media-box {
  position: relative;
}

.media-icons {
  margin-top: 7px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  border-radius: 35px;
  padding: 7px;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s ease;
}

.media-box.active .media-icons {
  opacity: 1;
  pointer-events: auto;
}

.media-icons::before {
  content: '';
  width: 18px;
  height: 18px;
  position: absolute;
  left: 50%;
  top: -9px;
  background: #ffffff;
  transform: translateX(-50%) rotate(45deg);
  z-index: -1;
}

.media-icons a {
  transition: transform 0.3s ease;
}

.icon-image {
  width: 30px;
  height: 30px;
}

.icon-image:hover {
  transform: scale(1.2);
  transition: transform 0.2s ease;
}

/* Hotel Description */
.description-container {
  position: relative;
}

.hotel-description {
  padding-top: 10px;
  font-size: 15px;
  width: 70%;
  margin-top: 10px;
  margin-bottom: 10px;
  max-height: 100px;
  overflow: hidden;
  position: relative;
  transition: max-height 0.5s ease;
  line-height: 1.3;
}

.hotel-description::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to bottom, rgba(224, 0, 0, 0), rgba(255, 255, 255, 1));
  pointer-events: none;
}

.read-more {
  display: block;
  margin: 10px 0;
  padding: 10px 20px;
  background-color: #ffffff;
  color: rgb(0, 0, 0);
  border: 2px solid #0093bf;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.read-more:hover {
  background-color: #0093bf;
  color: white;
}

.description-expanded .hotel-description {
  max-height: none;
}

.description-expanded .hotel-description::after {
  background: none;
}

.description-expanded .read-more {
  display: none;
}
/* -------------------------------- */
@media (max-width: 768px) {
  header {
    background-color: #89cff0;
    height: 80px;
  }

  .menu-content {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .menu-content.active {
    display: flex;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 80px;
    left: 0;
    background-color: #89cff0;
    padding: 20px;
  }

  .menu-list {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .menu-list li a {
    font-size: 18px;
    text-decoration: none;
    padding: 10px 20px;
    transition: color 0.3s ease;
  }


  /* ----------- */
  .homepage-content {
    padding: 15px;
  }

  .homepage-text h1 {
    font-size: 35px;
    line-height: 1.1;
  }

  .cta-button {
    font-size: 16px;
    padding: 12px 25px;
  }

  .desktop-video {
    display: none;
  }

  .mobile-video {
    display: block;
  }

  .oferts-content h2 {
    font-size: 24px;
  }

  .oferts-content a {
    font-size: 14px;
    padding: 8px 15px;
  }
 .index-oferts {
    grid-template-columns: 1fr;
  }
  .offer-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.301);
  }

  /* contacte */
  .contact-container {
    flex-direction: column;
    align-items: center;
  }

  .text-box {
    max-width: 100%;
  }

  .map-container iframe {
    height: 300px;
  }

  .white-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }

  .white-box .text-box {
    width: 100%;
  }

  .contact-apps,
  .group-apps {

    align-items: center;
  }

  .contact img,
  .group img {
    width: 30px;
    height: 30px;
  }

  .contact-text {
    font-size: 16px;
  }

  .white-box .map-container iframe {
    height: 300px;
  }

  /* footer */
  .footer {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-section {
    width: 100%;
  }

  .icons {
    justify-content: center;
  }

  .contact {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .offer-big-title {
    font-size: 16px;
  }

  .offer-small-text {
    font-size: 12px;
  }

  .price-style {
    font-size: 20px;
  }

  .white-box {
    padding: 15px;
  }

  .white-box h1 {
    font-size: 24px;
  }

  .white-box h2 {
    font-size: 18px;
  }

  .white-box h3 {
    font-size: 16px;
  }

  .contact img,
  .group img {
    width: 25px;
    height: 25px;
  }

  .contact-text {
    font-size: 14px;
  }

  .white-box .map-container iframe {
    height: 250px;
  }

  /* footer */
  .footer {
    display: flex;
    flex-direction: column;
    text-align: center;
  }

  .menu-footer a {
    font-size: 14px;
  }

  .group img,
  .contact img {
    width: 25px;
    height: 25px;
  }

  .contact-text {
    font-size: 14px;
  }

  .footer-section h1,
  .footer-section h2,
  .footer-section h3 {
    font-size: 14px;
  }

  .logo img {
    width: 50px;
  }
}