/* ========== GLOBAL STYLES ========== */

:root {
  --green: #0b6b3a;
  --gold: #d1a847;
  --dark: #333333;
  --light: #ffffff;
  --bg: #f9f9f9;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Lato", sans-serif;
}

body {
  background-color: var(--bg);
  color: var(--dark);
  line-height: 1.6;
}

/* ========== NAVIGATION BAR ========== */

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 4%;
  background: var(--light);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 999;
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green);
}

.navbar nav a {
  margin: 0 0.8rem;
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  transition: var(--transition);
}

.navbar nav a:hover,
.navbar nav a.active {
  color: var(--green);
}

/* ========== HERO SLIDER ========== */

.hero-slider {
  position: relative;
  height: 95vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.hero-text {
  position: absolute;
  bottom: 20%;
  left: 10%;
  color: var(--light);
  max-width: 550px;
  background: rgba(0, 0, 0, 0.4);
  padding: 1.5rem 2rem;
  border-left: 6px solid var(--gold);
  border-radius: 4px;
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
}

.btn-primary {
  background: var(--green);
  color: var(--light);
  padding: 0.8rem 1.6rem;
  text-decoration: none;
  border-radius: 4px;
  transition: var(--transition);
  border: none;
}

.btn-primary:hover {
  background: var(--gold);
  color: var(--dark);
}

.btn-secondary {
  background: var(--gold);
  color: var(--dark);
  padding: 0.8rem 1.6rem;
  text-decoration: none;
  border-radius: 4px;
  transition: var(--transition);
  display: inline-block;
  margin-top: 1.2rem;
}

.btn-secondary:hover {
  background: var(--green);
  color: var(--light);
}

/* ========== SERVICES ========== */

.services {
  padding: 4rem 6%;
  background-color: var(--light);
  text-align: center;
}

.services h2 {
  font-size: 2rem;
  color: var(--green);
  margin-bottom: 2rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.6rem;
}

.service-card {
  background: var(--bg);
  padding: 1.6rem;
  border-left: 4px solid var(--gold);
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.service-card h3 {
  color: var(--green);
  margin-bottom: 0.6rem;
}

/* ========== DESTINATIONS ========== */

.destinations-preview {
  background-color: var(--bg);
  padding: 4rem 6%;
  text-align: center;
}

.destinations-preview h2 {
  color: var(--green);
  font-size: 2rem;
  margin-bottom: 2rem;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.dest-card {
  height: 240px;
  position: relative;
  background-position: center;
  background-size: cover;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.dest-card:hover {
  transform: scale(1.03);
}

.dest-card .overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 0.8rem;
  color: var(--light);
  background: rgba(0, 0, 0, 0.5);
  text-align: center;
}

/* ========== CTA SECTION ========== */

.cta {
  background: linear-gradient(135deg, var(--green), var(--gold));
  color: var(--light);
  text-align: center;
  padding: 4rem 2rem;
}

.cta h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* ========== FOOTER ========== */

footer {
  background-color: var(--dark);
  color: var(--light);
  text-align: center;
  padding: 2rem 4%;
  font-size: 0.9rem;
}

/* ========== RESPONSIVE ========== */


/* ========== CONTACT PAGE ========== */
.contact-section {
  padding: 4rem 6%;
  background-color: var(--light);
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  text-align: left;
}

.contact-info h3 {
  color: var(--green);
  margin-bottom: 0.4rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

.contact-form button {
  display: inline-block;
  border: none;
  cursor: pointer;
}

/* ========== RESPONSIVE ========== */


@media (max-width: 768px) {
  .hero-text {
    bottom: 10%;
    left: 5%;
    padding: 1rem 1.2rem;
  }

  .hero-text h1 {
    font-size: 1.8rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .navbar {
    flex-direction: column;
  }

  .navbar nav {
    margin-top: 0.8rem;
  }

  .service-grid,
  .destination-grid {
    grid-template-columns: 1fr;
  }
}
