/* SECTION */
.featured-section {
	padding: 40px 8% 80px; /* top right/left bottom */
  text-align: center;
  font-family: 'Inter', sans-serif;
  background:#eef4ed;
  text-align: center;
}

/* TEXT */
.subtitle {
    display: block;
    text-align: center;
    font-size: 13px;
    letter-spacing: 3px;
    font-weight: 600;
    color: #d4af37;

    text-transform: uppercase;
    padding-top: 10px;
}



.title {
    padding-top: 20px;
    text-align: center;
    padding-bottom: 5px;
    color: #003324;
    text-transform: uppercase;
    line-height: 1;
    font-family: 'League Spartan';
    font-weight: 800;
    font-size: 1.7em;
}

.description {
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 25px;
	padding-bottom: 30px;
    color: #003324;
    text-align: center;
    font-size: 1.2rem;
    font-family: 'League Spartan';
    font-weight: 500;
}

/* GRID */
.destination-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* CARD */
.destination-card {
  position: relative;
  width: 300px;
  height: 310px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: 0.35s ease;
}

.destination-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

/* IMAGE */
.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.destination-card:hover img {
  transform: scale(1.08);
}

/* OVERLAY */
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20, 10, 5, 0.9) 0%,
    rgba(20, 10, 5, 0.5) 45%,
    rgba(20, 10, 5, 0.1) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 18px;
}

/* CONTENT */
.card-content {
  text-align: left;
  color: #fff;
}

.card-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  margin-bottom: 8px;
    text-align: left;
}

.card-content p {
  font-size: 12px;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.9);
  text-align:left;
}

/* LINK */
.explore-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #d8a63c;
  text-decoration: none;
  transition: 0.3s ease;
 
}

.destination-card:hover .explore-link {
  gap: 10px;
}

@media (max-width: 768px) {

  .featured-section {
    padding: 40px 0 80px; /* remove left/right space */
  }

  .destination-grid {
    gap: 12px;
    padding: 0 12px; /* small safe margin instead of big side space */
    justify-content: stretch;
  }

  .destination-card {
    width: 100%;
    max-width: 100%;
    height: 320px;
  }

  .title {
    font-size: 32px;
  }
}