/* --- RESET & BASIC STYLES --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #031822;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  min-height: 100vh;
}

/* --- MAIN CONTAINER WITH BACKGROUND IMAGE --- */
.landing-container {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 80px;

  /* ФОН НА ВЕСЬ ЭКРАН */
  background-image: url("background.png");
  background-size: 100% 100%;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* --- NAVBAR --- */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  letter-spacing: 2.5px;
  font-weight: 500;
}

.star-icon {
  width: 22px;
  height: 22px;
  color: #00b4d8;
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  color: #e0e6ed;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 2px;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #00b4d8;
}

.flag img {
  width: 32px;
  border-radius: 2px;
}

/* --- HERO SECTION --- */
.hero-section {
  display: flex;
  align-items: center;
  margin-top: auto;
  margin-bottom: auto;
  padding-top: 40px;
  padding-bottom: 40px;
}

.content-left {
  max-width: 580px;
}

.main-title {
  font-family: "Cinzel", serif;
  font-size: 4rem;
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: 3px;
  color: #ffffff;
  margin-bottom: 25px;
}

.subtitle {
  font-size: 15px;
  letter-spacing: 4px;
  color: #00d2b4;
  font-weight: 600;
  margin-bottom: 8px;
}

.years {
  font-size: 18px;
  letter-spacing: 4px;
  color: #00d2b4;
  margin-bottom: 25px;
}

.divider {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  width: 75%;
}

.divider .line {
  height: 1px;
  background-color: rgba(0, 210, 180, 0.4);
  flex-grow: 1;
}

.small-star {
  width: 16px;
  height: 16px;
  color: #00d2b4;
}

.tagline {
  font-size: 16px;
  letter-spacing: 4px;
  font-weight: 500;
  margin-bottom: 15px;
}

.description {
  font-size: 15px;
  line-height: 1.6;
  color: #cbd5e1;
  font-weight: 300;
  margin-bottom: 35px;
}

/* --- BUTTONS --- */
.cta-buttons {
  display: flex;
  gap: 20px;
}

.btn {
  padding: 14px 28px;
  font-size: 12px;
  letter-spacing: 2px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background-color: #00875a;
  color: #ffffff;
  border: 1px solid #00875a;
}

.btn-primary:hover {
  background-color: #00a870;
}

.btn-outline {
  background-color: rgba(3, 24, 34, 0.6);
  color: #00b4d8;
  border: 1px solid #005f73;
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  background-color: rgba(0, 180, 216, 0.15);
  border-color: #00b4d8;
}

/* --- ADAPTIVE (RESPONSIVE) --- */
@media (max-width: 1024px) {
  .landing-container {
    padding: 30px 40px;
  }
  .main-title {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .landing-container {
    padding: 20px;
    /* Добавляем темную плашку поверх фона на мобильных для читаемости */
    background-image:
      linear-gradient(rgba(3, 22, 32, 0.85), rgba(3, 22, 32, 0.85)),
      url("background.jpg");
  }

  .nav-links {
    display: none;
  }

  .hero-section {
    justify-content: center;
    text-align: center;
  }

  .content-left {
    max-width: 100%;
  }

  .divider {
    margin: 20px auto;
  }

  .cta-buttons {
    justify-content: center;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}
