@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Poppins', sans-serif;
  background: #FFFCF6;
  color: #3B2A20;
  line-height: 1.6;
}
.container {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #E6D7C4;
  z-index: 1000;
}
.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}
.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #A9552A;
}
.nav-links a {
  margin: 0 10px;
  text-decoration: none;
  color: #3B2A20;
  font-weight: 500;
  transition: .3s;
}
.nav-links a:hover {
  color: #FF7A00;
}

/* Buttons */
.btn-primary,
.btn-secondary {
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-primary {
  background: #A9552A;
  color: #fff;
}
.btn-primary:hover {
  background: #FF7A00;
}
.btn-secondary {
  background: #fff;
  color: #A9552A;
  border: 2px solid #A9552A;
}
.btn-secondary:hover {
  background: #FF7A00;
  color: #fff;
  border-color: #FF7A00;
}

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  background: url('images/hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
}
.hero-text {
  position: relative;
  z-index: 2;
  animation: fadeUp 1.5s ease;
}
.hero-text h1 {
  font-size: 4rem;
  margin-bottom: 20px;
  font-weight: 700;
}
.hero-text p {
  font-size: 1.5rem;
  margin-bottom: 30px;
}
.hero-buttons a {
  margin: 0 10px;
}

/* Sections */
.section {
  padding: 80px 0;
}
.section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #A9552A;
  text-align: center;
}
.countdown {
  text-align: center;
  font-weight: 600;
  color: #FF7A00;
  margin-bottom: 30px;
}

/* Trips Grid */
.trip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.trip-grid article {
  background: #fff;
  border: 1px solid #E6D7C4;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: transform .3s;
}
.trip-grid article:hover {
  transform: translateY(-5px);
}
.trip-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.trip-grid .content {
  padding: 15px;
}

/* Features & Gallery */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  text-align: center;
}
.features div {
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.features h3 {
  color: #A9552A;
  margin-bottom: 10px;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 15px;
  margin-top: 20px;
}
.gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}
.quote {
  text-align: center;
  font-style: italic;
  color: #7C6F65;
  margin: 40px 0;
}

/* Forms */
form input,
form textarea,
form select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  margin-bottom: 15px;
  font-family: 'Poppins', sans-serif;
}
form button {
  padding: 12px 20px;
  border: none;
  border-radius: 25px;
  background: #A9552A;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: .3s;
}
form button:hover {
  background: #FF7A00;
}

/* Footer */
.footer {
  text-align: center;
  padding: 20px;
  background: #fff;
  border-top: 1px solid #E6D7C4;
  color: #7C6F65;
  margin-top: 50px;
}

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* 📱 Mobile Responsiveness */
@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 2.2rem;
  }
  .hero-text p {
    font-size: 1rem;
  }
  .nav-content {
    flex-direction: column;
  }
  .nav-links {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .trip-grid img, .gallery img {
    height: 150px;
  }
  .features {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 50px 0;
  }
}
