/* travel_tools.css */

/* === Base Mobile Layout === */
main {
  padding: 1.5rem;
  background-color: #f5f5dc;
  font-family: 'Inter', sans-serif;
  color: #1c1c1c;
}

/* === Content Boxes === */
.content-box {
  background-color: #ffffff;
  border: 1px solid #e0e0da;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  max-width: 800px;
  margin: 0 auto 2.5rem 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.5rem;
}

/* === Redirect Notes === */
.redirect-note {
  font-size: 0.9em;
  color: #777;
  text-align: center;
  max-width: 700px;
  margin: 1rem auto 2rem auto;
  padding: 0 1rem;
  line-height: 1.5;
}

/* === Main CTA Buttons (Gold) === */
.cta-button {
  display: inline-block;
  background-color: #f5c243; /* gold */
  color: #0d1b2a; /* navy text */
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #0d1b2a; /* navy */
  color: #f5f5dc; /* beige text on hover */
}

/* Horizontal Rules */
.content-box hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 2rem 0;
}

/* Lists (if ever needed later) */
.content-box ul {
  padding-left: 1.25rem;
  margin-bottom: 1.5rem;
}

.content-box li {
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

/* Inline links inside paragraphs */
.content-box p a {
  color: #0d1b2a;
  text-decoration: underline;
  font-weight: 500;
}

.content-box p a:hover {
  color: #b08900; /* dark gold hover */
}

/* Smaller fine print */
.content-box p[style*="font-size: 0.95em"],
.content-box p[style*="font-size:0.95em"] {
  font-size: 0.95em !important;
  color: #444 !important;
}

/* === Affiliate Disclosure Styling (clean, professional) === */
.disclosure-box {
  font-size: 0.85em;
  color: #777;
  text-align: center;
  margin: 40px auto 30px auto;
  max-width: 680px;
  padding: 0 1rem;
  line-height: 1.6;
  background-color: transparent !important; /* ← This is the fix */
  border: none !important;
  box-shadow: none !important;
}

/* Center wrappers for buttons */
.button-center {
  text-align: center;
  margin: 1.5rem 0;
}

/* === Responsive Adjustments === */
@media (min-width: 768px) {
  .content-box {
    padding: 3rem;
  }

  .content-box h2 {
    font-size: 2rem;
  }

  .content-box p {
    font-size: 1.05rem;
  }

  .cta-button {
    font-size: 1.05rem;
  }
}
