@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap");

/* Общие стили */
body,
html {
  font-family: "Montserrat", sans-serif;
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden;
}

.video-section {
  position: relative;
  height: 100vh; /* Высота секции на весь экран */
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.5) !important;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  pointer-events: none; /* Запретить взаимодействие с видео */
}

.content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
  color: white;
}

.content h1 {
  font-size: 6rem;
  font-weight: bold;
  margin-bottom: 4rem;
}

.content p {
  font-size: 2rem;
  margin-bottom: 4rem;
}

.btn-custom {
  border: 2px solid #ffd700;
  color: #ffd700;
  background-color: transparent;
  padding: 0.5rem 1.5rem;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.3s ease;
  margin: 0.5rem;
}

.btn-custom a {
  color: #ffd700;
}

.btn-custom:hover {
  background-color: #ffd700;
  color: #333;
}

.btn-custom-mail {
  border: 2px solid #242424;
  border-radius: 20px; /* Устанавливаем радиус закругления */
  color: #242424;
  background-color: transparent;
  text-transform: uppercase;
  padding: 0.5rem 1.5rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  margin: 0.5rem;
}

.btn-custom-mail:hover {
  background-color: #242424;
  color: #fff;
}
.contact-container-main a {
  font-size: 1.2rem;
}
/* Стили для второго блока */
.container {
  position: relative;
  z-index: 1;
  padding: 2rem 1rem;
}

h2,
h3 {
  margin-bottom: 1rem;
}

h2 {
  font-size: 2.5rem;
  font-weight: bold;
}

h3 {
  font-size: 2rem;
  font-weight: bold;
}

p {
  font-size: 1.25rem;
}

.img-fluid {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.img-fluid-button {
  max-width: 100%;
  height: 60px;
  border-radius: 8px;
}
.block-buttons {
  display: flex;
}
.text-spaced {
  letter-spacing: 0.1rem; /* Укажите нужное значение */
}
i.i35х35 {
  font-size: 35px; /* Устанавливаем размер иконки */
}
.yellow {
  color: #ffd700;
}

.background-yellow {
  background-color: #ffd700;
}

.background-grey {
  background-color: #f7f7f7;
}

.icone-text {
  display: flex;
  gap: 25px;
  align-items: center;
}

.contact-icon {
  width: 40px;
  height: 40px;
  font-size: 16px;
}
/* ------------ */

.translate-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.5s ease, transform 2s ease;
}

.translate-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.wave-container-grey {
  --fill-first: #f7f7f7; /* Цвет верхнего блока */
  --fill-second: #ffffff; /* Цвет нижнего блока */
  overflow: hidden;
  position: relative;
}
.wave-container-grey svg {
  width: 100%;
  height: auto;
  display: block;
}
.wave-container-yellow {
  height: 100px !important;
}
.wave-container-yellow svg {
  height: 100px !important;
  width: 100% !important;
}
.upside-down {
  transform: rotate(180deg);
}

.fill-first-yellow {
  fill: #fff;
}
.fill-second-yellow {
  fill: #ffd700;
}

/* ------------------------- */
.language-selector {
  position: absolute;
  right: 40px;
  top: 15px;
  width: 132px;
  z-index: 1030;
}

.custom-select {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  color: #000;
  border: 1px solid #ccc;
  background-color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.custom-select .flag-icon {
  width: 20px;
  height: 15px;
  margin-right: 10px;
}

.custom-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 5px;
  z-index: 100;
  max-height: 270px;
  overflow-y: auto;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.custom-dropdown.active {
  display: block;
}

.custom-dropdown .dropdown-item {
  padding: 10px;
  display: flex;
  align-items: center;
  cursor: pointer;
  color: #000;
}

.custom-dropdown .dropdown-item:hover {
  background-color: #f0f0f0;
}

.dropdown-item .flag-icon {
  margin-right: 10px;
}

.custom-select:after {
  content: "▼";
  margin-left: 10px;
  font-size: 12px;
}

/* Кастомные стили */
:root {
  --theme-color-title: #00aeef;
  --primary: #00aeef;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.hero-section {
  background-color: #000;
  color: white;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.route-card {
  margin-bottom: 50px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.route-card img {
  /* width: 100%; */
  max-height: 95vh;
  height: auto;
  object-fit: cover;
}

.route-card-body {
  padding: 30px;
}

.schedule-section {
  background-color: #f8f9fa;
  padding: 50px 0;
}

.schedule-card {
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.faq-item {
  margin-bottom: 15px;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
}

.faq-question {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  cursor: pointer;
}

.faq-answer {
  font-size: 1.5rem;

  margin-top: 10px;
  color: #666;
}

.app-download-section {
  background-color: #f5f5f5;
  padding: 80px 0;
}

.app-image {
  max-width: 100%;
  height: auto;
}

.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
}

.btn-outline-primary {
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline-primary:hover {
  background-color: var(--primary);
  color: white;
}


.social-icons a {
  color: #333;
  font-size: 20px;
  margin: 0 10px;
}

.social-icons a:hover {
  color: #00aeef;
}

.nav-link {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 12px;
}

/* Анимации */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fade-in {
  animation: fadeIn 1s ease-in;
}

@media (max-width: 768px) {
  .content h1 {
    font-size: 3rem; /* Adjust as needed for smaller screens */
    margin-bottom: 2rem;
  }
  .block-buttons {
    flex-direction: column;
  }

  .hero-section {
    padding: 60px 0;
  }
}
