.travel-atlas {
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px 22px 80px;
  font-family: Arial, sans-serif;
  color: #222;
}


/* =========================================================
   HEADER
   ========================================================= */

.travel-atlas-header {
  text-align: center;
  margin-bottom: 65px;
}

.travel-atlas-header h1 {
  font-family: 'Great Vibes', serif;
  letter-spacing: 2px;
  margin: 0;
  font-size: 60px;
  line-height: 1;
}

.travel-atlas-header p {
  max-width: 650px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.7;
  color: #666;
}


/* =========================================================
   TRAVEL SUMMARY
   ========================================================= */

.travel-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 45px auto;
}

.summary-box {
  padding: 25px;
  border: 1px solid #ddd;
  border-radius: 16px;
  text-align: center;
}

.summary-number {
  display: block;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 7px;
}

.summary-label {
  color: #777;
  font-size: 14px;
}


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

.travel-section {
  margin-top: 65px;
}


/*

.travel-section-header {
  margin-bottom: 25px;
}

.travel-section-header h2 {
  margin: 0;
  font-size: 30px;
}

.travel-section-header p {
  margin-top: 8px;
  color: #777;
}

*/



/* =========================================================
   SEARCH
   ========================================================= */

.destination-search {
  margin-bottom: 30px;
}

.destination-search input {
  width: 100%;
  box-sizing: border-box;
  padding: 15px 18px;
  border: 1px solid #ccc;
  border-radius: 12px;
  font-size: 16px;
  outline: none;
}

.destination-search input:focus {
  border-color: #555;
}


/* =========================================================
   DESTINATION INDEX
   ========================================================= */

.destination-index {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}


/* ==========================================================================
   Destination Cards
   ========================================================================== */
.destination-link {
  display: block;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid var(--border-color, #ddd);
  background-color: var(--card-bg, #1a1d24);
  color: var(--text-main, #ffffff);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.destination-link:hover {
  transform: translateY(-4px);
  border-color: var(--accent, #6366f1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.destination-link h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-main, #ffffff);
}

.destination-link p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted, #9ca3af);
  margin: 0;
}

.destination-arrow {
  display: inline-block;
  margin-top: 18px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--link-color, #b0bcf8);
  transition: transform 0.2s ease;
}

.destination-link:hover .destination-arrow {
  transform: translateX(4px);
}


/* =========================================================
   NO SEARCH RESULTS
   ========================================================= */

.destination-no-results {
  display: none;

  padding: 30px;

  text-align: center;

  border: 1px dashed #ccc;
  border-radius: 14px;

  color: #000000;
}


/* =========================================
   TRAVEL BLOG RESPONSIVE ARRANGEMENTS ONLY
   ========================================= */

/* Base Structural Grid for Summary Stats */
.travel-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
}

.summary-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Base Structural Grid for Destination Index */
.destination-index {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  width: 100%;
}

.destination-link {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Tablet Layout Adjustments (Width 900px and down) */
@media (max-width: 900px) {
  .travel-summary {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .destination-index {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile Layout Adjustments (Width 600px and down) */
@media (max-width: 600px) {
  header nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .travel-summary {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .destination-index {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .destination-link {
    width: 100%;
  }
}