/* === RESET & BASE === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  height: 100%;
  font-family: 'Averta CY', sans-serif;
  color: #fff;
  background: #000;
  scroll-behavior: smooth;
}
ul { list-style: none; }
a { text-decoration: none; color: inherit; }
.container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}

/* === HEADER === */
.header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 50;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.logo {
  height: 50px;
}
.nav ul {
  display: flex;
  gap: 30px;
}
.nav a {
  font-size: 15px;
  font-weight: 500;
  padding: 6px 0;
  transition: 0.3s;
}
.nav a:hover {
  color: #e50914;
  border-bottom: 2px solid #e50914;
}
.lang-social {
  display: flex;
  gap: 15px;
  align-items: center;
}
.phone-red { color: #e50914; }
.lang { margin-left: 25px; }

/* === HERO === */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('./assets/img/background.png') no-repeat right center / cover;
  z-index: 0;
}
.hero-content {
  position: absolute;
  top: 55%;
  left: 6vw;
  transform: translateY(-50%);
  max-width: 700px;
  z-index: 10;
}
.hero h1 {
  font-family: 'Bebas Neue Pro', sans-serif;
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}
.hero h1 span {
  color: #e60012;
}
.hero p {
  margin: 20px 0 40px;
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  max-width: 450px;
}
.btn {
  display: inline-block;
  padding: 12px 28px;
  background: #e60012;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s;
}
.btn:hover { background: #ff1a1a; }

/* === TRIP SECTION === */
.trip-section {
  padding: 100px 0;
  background: #000;
}
.trip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.trip-left h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}
.trip-left h2 span {
  font-weight: 300;
}
.trip-date {
  margin: 20px 0;
}
.big-date {
  font-size: 72px;
  font-weight: 900;
  color: #e50914;
}
.month {
  font-size: 36px;
  font-weight: 700;
}
.arrows { margin: 20px 0; }
.arrow {
  border: 1px solid #fff;
  background: none;
  color: #fff;
  padding: 5px 12px;
  cursor: pointer;
}
.track {
  margin-top: 30px;
  position: relative;
}
.track img { width: 100%; }
.instructor {
  position: absolute;
  top: 20%; left: 15%;
  background: #e50914;
  padding: 6px 12px;
  border-radius: 20px;
  display: flex;
  align-items: center;
}
.instructor img {
  width: 40px; height: 40px;
  border-radius: 50%;
  margin-right: 10px;
}

/* Calendar */
.calendar {
  background: #111;
  padding: 20px;
  border-radius: 10px;
}
.calendar-header {
  text-align: center;
  font-size: 20px;
  margin-bottom: 15px;
}
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}
.calendar-grid div {
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.calendar-grid .active {
  background: #e50914;
  border-radius: 50%;
  color: #fff;
}

/* Reviews */
.reviews { margin-top: 25px; }
.review {
  background: #222;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 15px;
}
.review-date {
  font-weight: 700;
  color: #e50914;
  margin-bottom: 5px;
  display: block;
}

/* === PROGRAM === */
.program {
  background: #0d0d0d;
  padding: 100px 0;
}
.program-title {
  text-align: center;
  font-size: 32px;
  text-transform: uppercase;
  margin-bottom: 60px;
}
.program-item {
  display: flex;
  align-items: center;
  margin-bottom: 80px;
  position: relative;
}
.program-number {
  font-size: 72px;
  font-weight: 700;
  color: #e50914;
  margin-right: 30px;
}
.program-content {
  display: flex;
  gap: 20px;
  align-items: center;
}
.program-img {
  width: 200px;
}

/* === FOOTER === */
.footer {
  background: #111;
  color: #ccc;
  padding: 60px 30px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 40px;
  gap: 30px;
}
.footer-brand {
  max-width: 300px;
}
.footer-columns {
  display: flex;
  gap: 40px;
}
.footer-columns h4 {
  margin-bottom: 15px;
  font-size: 16px;
  color: #fff;
}
.footer-columns ul li {
  margin-bottom: 10px;
}
.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer-links {
  display: flex;
  gap: 20px;
  font-size: 14px;
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
  .trip-grid {
    grid-template-columns: 1fr;
  }
  .program-item {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .header .container {
    flex-direction: column;
    gap: 15px;
  }
  .nav ul {
    flex-direction: column;
    gap: 15px;
  }
  .hero-content {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
  }
  .hero p { margin: 15px auto 30px; }
  .program-content {
    flex-direction: column;
  }
  .footer-top {
    flex-direction: column;
  }
  .footer-columns {
    flex-direction: column;
    gap: 20px;
  }
}
