/* index.css */

/* === Base Mobile Layout === */
main {
  padding: 1.5rem;
  background-color: #f5f5dc;
  font-family: 'Inter', sans-serif;
  color: #1c1c1c;
}

.content-box {
  background-color: #ffff;
  border: 1px solid #e0e0da;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  max-width: 800px;
  margin: 20px auto;
  box-sizing: border-box;
}

/* Headings */
.content-box h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: #0d1b2a; /* navy */
}

/* Paragraphs */
.content-box p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

/* Link Button Style */
.trip-link {
  display: inline-block;
  margin: 1rem 0;
  padding: 0.75rem 1.25rem;
  background-color: #f5c243; /* gold */
  color: #0d1b2a; /* navy */
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.trip-link:hover {
  background-color: #001f3f;
}

/* Horizontal Rules */
.content-box hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 2.7rem 0;
}

/* List Styles */
.content-box ul {
  padding-left: 1.25rem;
  margin-bottom: 1.5rem;
}

.content-box li {
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

/* Inline links */
.content-box a {
  color: #0d1b2a;
  text-decoration: underline;
  font-weight: 500;
}

.content-box a:hover {
  color: #b08900; /* dark gold on hover */
}

/* Smaller text sections */
.content-box p[style*="font-size: 0.95em"] {
  font-size: 0.95em !important;
  color: #444 !important;
}

/* === Responsive Adjustments === */
@media (min-width: 768px) {
  .content-box {
    padding: 3rem;
  }

  .content-box h2 {
    font-size: 2rem;
  }

  .trip-link {
    font-size: 1.05rem;
  }

  .content-box p {
    font-size: 1.05rem;
  }
}
