/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: #fdfdfd;
  color: #333;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  padding: 20px 0;
}

/* Header */
header {
  background-color: #007BFF;
  color: #fff;
  padding: 40px 0;
  text-align: center;
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

header p {
  font-size: 1.1rem;
}

/* Intro Section */
.intro {
  background: #f1f1f1;
  padding: 40px 0;
  text-align: center;
}

.intro h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

/* Trip Cards */
.trip-cards {
  padding: 40px 0;
}

.trip-cards h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 2rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.2s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.card img {
  height: 200px;
  object-fit: cover;
  width: 100%;
}

.card-body {
  padding: 15px;
}

.card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.card-body p {
  font-size: 0.95rem;
  color: #555;
}

/* Article/blog Section */

article {
  background: #fff;
  padding: 20px;
  margin-bottom: 20px;
  border-left: 5px solid #00838f;
  border-radius: 5px;
}

/* Know More Section */
#know-more {
  text-align: center;
  padding: 50px 20px;
  background: #f4f4f4;
}

#know-more h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

#know-more p {
  margin-bottom: 20px;
  color: #555;
}

#know-more .btn {
  display: inline-block;
  padding: 10px 20px;
  background: #0077ff;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease;
}

#know-more .btn:hover {
  background: #005fcc;
}


/* Contact Section */
#contact {
  background: #f9f9f9;
  padding: 60px 0;
}

#contact h2 {
  text-align: center;
  margin-bottom: 15px;
  font-size: 2rem;
}

#contact p {
  text-align: center;
  margin-bottom: 30px;
  color: #555;
  font-size: 1rem;
}

#contact form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#contact input,
#contact textarea {
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  width: 100%;
  resize: vertical;
}

#contact textarea {
  min-height: 120px;
}

#contact button {
  background-color: #007BFF;
  color: white;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#contact button:hover {
  background-color: #0056b3;
}

/* Footer
footer {
  background-color: #222;
  color: #fff;
  text-align: center;
  padding: 25px 0;
  font-size: 0.95rem;
} */

/* ---------- Footer ---------- */
  .footer {
    margin-top: 50px;
    padding: 30px 20px 15px;
    background: #f2f2f2;
    border-top: 1px solid #ddd;
  }
  .footer-container { display:flex; flex-wrap:wrap; justify-content:space-between; gap:20px; }
  .footer-left h2 { margin:0; font-size:20px; color:#004080; }
  .footer-left p { margin:6px 0 0; font-size:14px; color:#444; }
  .footer-links, .footer-socials { display:flex; gap:16px; flex-wrap:wrap; }
  .footer-links a, .footer-socials a { font-size:14px; color:#004080; transition: color 0.3s ease; }
  .footer-links a:hover, .footer-socials a:hover { color:#0073e6; }
  .footer-bottom { margin-top:20px; text-align:center; font-size:13px; color:#555; border-top:1px solid #ccc; padding-top:10px; }


/* Responsive Tweaks */
@media (max-width: 600px) {
  header h1 {
    font-size: 1.8rem;
  }

  .intro h2,
  .trip-cards h2,
  #contact h2 {
    font-size: 1.5rem;
  }

  .card-body h3 {
    font-size: 1.1rem;
  }
}
