/* GENERAL */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f3f3f3;
  color: #333;
}

.header {
  background: #fff;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.header nav a {
  margin-left: 16px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.header nav a:hover {
  text-decoration: underline;
}

/* HERO */
.hero {
  height: 400px;
  background-image: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e');
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-content {
  background: rgba(0, 0, 0, 0.5);
  padding: 24px;
  border-radius: 12px;
  width: 80%;
  max-width: 500px;
  text-align: center;
  color: white;
}

/* BUTTON */
.btn {
  background: #007bff;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
}

.btn:hover {
  background: #005fcc;
}

.btn.full {
  width: 100%;
  margin-top: 8px;
}

/* TOURS */
.tours-section {
  padding: 40px 20px;
}

.section-title {
  text-align: center;
  font-size: 24px;
  margin-bottom: 24px;
  font-weight: bold;
}

.tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.tour-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.tour-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.tour-content {
  padding: 16px;
}

/* CONTACT */
.contact-section {
  background: white;
  padding: 40px 20px;
}

.contact-form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 12px;
  background: #ddd;
  margin-top: 40px;
  font-size: 14px;
}
