/* Exploring Arizona — Travel Itinerary Layout */
/* All classes prefixed with Intin- */

.Intin-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #333;
  background-color: #fdfcf9;
}

/* Banner */
.Intin-banner {
  text-align: center;
  margin-bottom: 30px;
}

.Intin-banner-img {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}

/* Intro Section */
.Intin-intro {
  text-align: center;
  margin-bottom: 40px;
}

.Intin-intro h1 {
  color: #7a4a12; /* Desert brown tone */
  font-size: 2rem;
  margin-bottom: 10px;
}

.Intin-intro p {
  max-width: 900px;
  margin: 0 auto 15px;
  line-height: 1.6;
  color: #444;
}

/* Grid Layout */
.Intin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  justify-content: center;
}

.Intin-card {
  background: #fff8f0;
  border: 1px solid #e0d2b8;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.Intin-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.Intin-card h3 {
  color: #965c26;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.Intin-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 15px;
}

/* Button */
.Intin-btn {
  display: inline-block;
  background: #c57a36; /* burnt orange accent */
  color: #fff;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.Intin-btn:hover {
  background: #a8642c;
}
