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

h2 {
  font-size: 32px;
  font-family: 'Nunito Sans';
  font-weight: 800;
}

p {
  font-size: 18px;
  font-family: 'Nunito Sans';
  font-weight: 600;
}

/* HEADER */

.header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  min-width: 137px;
  height: 72px;
}
.nav ul {
  display: flex;
  gap: 25px;
}
.nav a {
  color: #fff;
  font-size: 16px;
}
.btn {
  background: #1b3c35;
  color: #fff;
  padding: 10px 18px;
  border-radius: 4px;
  transition: 0.3s;
  max-width: 157px;
  height: 44px;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  font-size: 16px;
}
.btn:hover {
  background: #295246;
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  text-align: end;
  justify-content: flex-end;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('./img/hero-bgd.png') no-repeat center/cover;
  z-index: 0;
}
.hero-content {
  position: absolute;
  z-index: 1;
  color: #fff;

  display: flex;
  flex-direction: column;
  text-align: start;
  justify-content: end;
}
.hero-title {
  font-size: 50px;
  font-weight: 700;
  font-family: 'NEXT ART';
  font-style: bold;
  margin-bottom: 40px;
  line-height: 150%;
}

/* FORM */
.hero-form {
  display: flex;
  gap: 20px;
  background: #FFFFFF33;
  color: #fff;
  backdrop-filter: blur(6px);
  padding: 20px;
  border-radius: 10px;
  flex-wrap: wrap;

  justify-content: center;
  align-items: center; 
  flex-wrap: wrap;
  height: 160px;
}
.form-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
}
.form-group label {
  font-size: 12px;
  margin-bottom: 5px;
}
.form-group select,
.form-group input {
  padding: 10px;
  border-radius: 5px;
  border: none;
  min-width: 270px;
  height: 52px;

  text-align: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.2); 
}
.hero-form .btn {
  min-width: 213px;
  height: 52px;
  background: #fff;
  color: #000;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 12px;
}

/* About */
.about-grid,
.programs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}

/* Images */
.about-images {
  position: relative;
}
.about-images img {
  border-radius: 12px;
  width: 100%;
  max-width: 320px;
}
.about-images .img-back {
  position: absolute;
  top: 40px;
  left: 0;
  z-index: 0;
}
.about-images .img-front {
  position: relative;
  z-index: 1;
  margin-left: 80px;
}

/* Content */
.about-content .subtitle,
.programs-content .subtitle {
  color: #b59f3b;
  font-size: 14px;
  text-transform: uppercase;
}
.about-content h2,
.programs-content h2 {
  font-size: 28px;
  font-weight: 700;
  margin: 15px 0;
}
.about-content p,
.programs-content p {
  margin-bottom: 20px;
  color: #333;
  line-height: 1.5;
}

/* Programs */
.features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.features li {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}
.features h4 {
  margin: 0 0 5px;
  font-size: 18px;
  font-weight: 600;
}

/* Images */
.programs-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.programs-images img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

/* Btn */
.btn {
  display: inline-block;
  background: #1b3c35;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;

  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
}
.btn:hover {
  background: #2c5c50;
}

/* Responsive */
@media (max-width: 900px) {
  .about-grid,
  .programs-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about-images .img-back {
    position: relative;
    top: 0;
    margin-bottom: 20px;
  }
  .about-images .img-front {
    margin: 0;
  }
  .features {
    align-items: center;
  }
}

/* Destinations */
.destinations {
  text-align: center;
  padding: 80px 0;
}
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin: 40px 0;
}
.card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}
.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  color: #fff;
}
.card-info h3 {
  margin: 0 0 10px;
  font-size: 18px;
}
.card-bottom {
  display: flex;
  justify-content: flex-end;
}
.price {
  background: rgba(0,0,0,0.6);
  padding: 6px 10px;
  border-radius: 6px;
}
.rating {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #fff;
  color: #000;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: bold;
}

/* Blog */
.blog {
  padding: 80px 0;
}
.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 40px 0;
}
.blog-card {
  display: flex;
  gap: 20px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.blog-card img {
  width: 40%;
  object-fit: cover;
}
.blog-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.blog-content h3 {
  font-size: 18px;
  margin: 0 0 10px;
}
.blog-content p {
  flex-grow: 1;
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}
.meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
}
.meta .date {
  color: #999;
}
.read-more {
  color: #1b3c35;
  text-decoration: none;
  font-weight: bold;
}

/* Btn */
.blog-btn {
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn:hover {
  background: #2c5c50;
} 

/* Responsive */
@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-card {
    flex-direction: column;
  }
  .blog-card img {
    width: 100%;
    height: 200px;
  }
}

/* === FOOTER === */
.footer {
  background: #1f3c39;
  color: #fff;
  padding: 60px 20px 20px;
  font-family: Arial, sans-serif;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h3 {
  font-size: 18px;
  margin-bottom: 15px;
}

.footer-col p,
.footer-col a {
  font-size: 14px;
  color: #ddd;
  line-height: 1.6;
}

.footer-col a:hover {
  color: #fff;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-socials {
  display: flex;
  gap: 16px;
  margin-top: 15px;
}

.footer-socials a {
  font-size: 32px;
}

.footer-socials img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
  transition: 0.3s;
}

.footer-socials img:hover {
  filter: brightness(1.5) invert(0.8);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #aaa;
}

.footer-bottom a {
  color: #aaa;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #fff;
}

.new {
  background: red;
  color: white;
  font-size: 10px;
  padding: 2px 5px;
  border-radius: 3px;
  margin-left: 5px;
}

/* === 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;
  }
}
