* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: Gilroy;
  font-display: swap;
  src: url("fonts/Gilroy-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: Gilroy;
  font-display: swap;
  src: url("fonts/Gilroy-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}

body {
  font-family: Gilroy;
  background: url('img/bg2.png') center/cover no-repeat;
  background-attachment: fixed;
}

.hero {
  min-height: 100vh;
  display: grid;
  text-align: center;
  color: #FFF;
  padding-top: 127px;
  padding-bottom: 62px;
}

.hero__container {
  position: relative;
  max-width: 334px;
  margin: 0 auto;
}

.header__logo {
  display: inline-block;
  margin-top: -63px;
}

.header__logo img {
  max-width: 100%;
  height: auto;
}

/* Language selector */
.language-selector {
  position: absolute;
  top: -71px;
  right: -19px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 25px;
  cursor: pointer;
  z-index: 100;
  transition: background 0.3s ease;
}

.language-selector span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.language-selector:hover {
  background: rgba(255, 255, 255, 0.15);
}

.flag-icon {
  width: 17px;
  height: 10px;
  object-fit: cover;
  border-radius: 2px;
}

.flag-text {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.19;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
}

.language-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  min-width: 100px;
}

.language-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  cursor: pointer;
  transition: background 0.2s ease;
  color: #000;
  font-weight: 600;
  font-size: 14px;
}

.lang-option:hover {
  background: rgba(0, 0, 0, 0.1);
}

/* Tour buttons */
.hero__buttons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 23px;
  margin-bottom: 80px;
  margin-top: -11px;
}

.hero__buttons--social {
  margin-bottom: 40px;
}

.hero__buttons--social a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero__link--tour {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 335px;
  width: 100%;
  backdrop-filter: blur(16.799999237060547px);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #fff;
  border-radius: 50px;
  padding: 16px 47px;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.19;
  letter-spacing: 0.03em;
  text-transform: capitalize;
  text-align: center;
  color: #fff;
  text-decoration: none;
}

.hero__link--tour:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #FFF;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* Social icons at bottom */
.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 21px;
  margin-bottom: 58px;
  margin-top: 20px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.85;
}

.social-icons a:hover {
  transform: scale(1.15);
  opacity: 1;
}

.social-icons img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* Footer text */
.hero__footer {
  font-weight: 400;
  font-size: 17px;
  line-height: 1.19;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
}