/* TRAVEL PAGE SPECIFIC STYLES ONLY */

/* MAIN CONTENT */
main.travel-content {
  min-height: calc(100vh - 160px);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px 80px;
  position: relative;
  z-index: 2;
}

.page-title {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.95);
  text-transform: uppercase;
  margin-bottom: 10px;
  text-align: center;
}

.page-subtitle {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  margin-bottom: 50px;
  max-width: 600px;
  line-height: 1.6;
}

/* TRAVEL CONTAINER - Smaller container */
.travel-container {
  width: 100%;
  padding: 60px 70px;
  max-width: 700px; /* Reduced from 900px */
  margin: 0 auto;
  position: relative;
}

/* TRAVEL CARD - Smaller box like in about.css */
.travel-card {
  background: rgba(20, 20, 20, 0.75);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 50px 60px; /* Reduced padding (was 60px 70px) */
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.travel-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

/* TRAVEL MESSAGE - Matching about.css font styling */
.travel-message {
  font-family: "Cormorant Garamond", serif;
  font-size: 19px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  text-align: center;
  margin: 0; /* Reset margin */
}

/* HIGHLIGHT TEXT - Same as about.css */
.highlight {
  color: #e8c39e;
  font-weight: 500;
  font-style: italic;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .travel-container { max-width: 600px; }
  .travel-card { padding: 40px 45px; } /* Adjusted for smaller screens */
}

@media (max-width: 768px) {
  .page-title { font-size: 36px; }
  .travel-container { max-width: 500px; }
  .travel-card { padding: 35px 30px; }
  .travel-message { font-size: 18px; }
}

@media (max-width: 480px) {
  .page-title { font-size: 30px; }
  .page-subtitle { font-size: 16px; }
  .travel-container { max-width: 100%; padding: 0 20px; }
  .travel-card { padding: 30px 25px; }
  .travel-message { font-size: 17px; }
}