/* =========================
   BASE CONTAINER
========================= */
.country-content {
  width: 80%;
  margin: 0 auto;
}

/* =========================
   HEADINGS
========================= */
.country-content .content-section h1,
.country-content .content-section h2,
.country-content .content-section h3 {
  text-align: center;
  margin: 20px 0;
}

.country-content .content-section h1 {
  color: #035353;
}

.country-content .content-section h2 {
  color: #028b8b;
}

.country-content .content-section h3 {
  color: #035353;
}

.country-content .content-section h4 {
  color: #028b8b;
  text-align: left;
}

.country-content .content-section .info-card.island-card h3 {
  text-align: left;
  padding-left: 20px;
}

/* =========================
   GRID
========================= */
.country-content .grid-cards {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

/* =========================
   CARD BASE (shared)
========================= */
.country-content .card,
.country-content .info-card,
.country-content .food-card,
.country-content .food-intro,
.country-content .food-footer {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  border-left: 5px solid #028b8b;
  animation: countryContentFadeInUp 0.5s ease both;
}

/* =========================
   CARD (grid)
========================= */
.country-content .card {
  position: relative;
  overflow: hidden;
}

.card-like {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  padding: 6px 10px;
  cursor: pointer;
}

.card-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.card:hover img {
  transform: scale(1.06);
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.25), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.card:hover .card-overlay {
  opacity: 1;
}

.card-content {
  padding: 15px;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-weight: bold;
  color: #035353;
  margin-bottom: 8px;
}

.card-desc {
  font-size: 14px;
  color: #333;
  margin: 10px 18px;
  line-height: 20px;

}

.card-desc p {
  margin: 0 18px 18px 18px;
}

.travel-info-box {
  width: 100%;
  background: #fff;
  border-left: 5px solid #028b8b;
  ;
  border-radius: 8px;
  padding: 20px 25px;
  box-sizing: border-box;
  margin: 20px 0;
}

.travel-info-box ul {
  padding: 20px 35px;
}

.travel-info-box ul li {
  padding: 5px 8px;
}

/* =========================
   VIDEO BUTTON
========================= */

/*
.video-link {
  margin-top: 10px;
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.25s;
  position: relative;
}

.video-link:hover {
  color: #fff;
  transform: scale(1.05);
}

.video-link img {
  width: 100px;
  position: absolute;
  top: -5px;
  bottom: 10px;
  right: 5px;
  height: auto;
}
*/
.video-btn {
  display: flex;
  align-items: center;
  width: 30%;
  min-width: 80px;
  height: 25px;
  background: linear-gradient(to bottom, #540909, #e24949, #540909);
  border-radius: 9999px;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
}

.play-circle {
  width: 18px;
  height: 18px;
  background: white;
  border-radius: 50%;
  margin-left: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.play-icon {
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid #e60000;
  margin-left: 3px;
}

.video-text {
  flex: 1;
  text-align: center;
  color: white;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
}

.video-btn:hover {
  background: linear-gradient(to bottom, #e87d7d,#f33b3b, #e24949);
}
.video-btn:hover .play-circle {
    background: #ffcccc;
}

.video-btn:hover .play-icon {
    border-left-color: #990000;
}


/* =========================
   INFO CARD
========================= */
.info-card {
  padding: 20px 24px;
  margin: 20px 0;
}

.info-title {
  color: #035353;
  font-size: 22px;
  margin-bottom: 12px;
}

.info-content p {
  margin: 0 0 10px 30px;
  line-height: 1.6;
}

.info-content strong {
  color: #028b8b;
}

/* =========================
   ISLAND CARD
========================= */
.info-card.island-card h1 {
  font-size: 24px;
  text-align: center;
  color: #028b8b;
}

.info-card.island-card h2 {
  margin: 25px 20px 20px 60px;
  font-size: 18px;
  text-align: left;
}

.info-card.island-card h3 {
  margin: 12px 70px;
  color: #028b8b;
  font-size: 16px;

}

.info-card.island-card p {
  margin: 12px 70px 5px 120px;
  line-height: 1.5;
}

.info-card.island-card ul,
.info-card.island-card li {
  margin: 12px 70px 5px 70px;
  line-height: 1.5;
}

/* =========================
   FOOD SECTION
========================= */
.food-card,
.food-intro,
.food-footer {
  padding: 20px 22px;
  margin: 18px 0;
}

.info-card.food-card h1 {
  text-align: center;
  color: #035353;
}

.info-card.food-card h2 {
  color: #035353;
  text-align: left;
}

.info-card.food-card h3 {
  color: #028b8b;
  text-align: left;
  margin: 16px 20px 5px 30px;
}

.food-card p {
  font-size: 14px;
  margin: 6px 20px 6px 40px;
}

/* =========================
   GRID RESPONSIVE
========================= */
@media (min-width: 600px) {
  .country-content .grid-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .country-content .grid-cards {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* =========================
   MOBILE <768px
========================= */
@media (max-width: 768px) {
  .country-content {
    width: 95%;
  }

  .info-title {
    font-size: 18px;
    text-align: center;
  }

  .info-card {
    border-left: 3px solid #028b8b;
    padding: 16px;
  }

  .food-card p {
    font-size: 13px;
  }

  .card-image img {
    height: 180px;
  }

  .info-card.island-card h3 {
    margin: 12px 20px 12px 60px;
    font-size: 14px;
  }

  .info-card.island-card p,
  .info-card.island-card li {
    margin: 12px 20px 12px 80px;
    line-height: 1.8;
  }
}

/* =========================
   ANIMATION
========================= */
@keyframes countryContentFadeInUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}