/* Modern header */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #000;
  color: #ffd700;
  padding: 15px 20px;
}
.logo-title {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo {
  max-height: 50px;
  border-radius: 5px;
}
.site-header nav a {
  color: #ffd700;
  text-decoration: none;
  margin: 0 8px;
  font-weight: bold;
}

/* Hero with background */
.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .overlay {
  background: rgba(0, 0, 0, 0.6);
  color: #ffd700;
  text-align: center;
  padding: 30px;
  border-radius: 8px;
}
.hero h2 {
  margin: 0 0 10px;
  font-size: 2rem;
}

.hero .phones a {
  display: inline-block;
  background: #ffd700;
  color: #000;
  font-weight: bold;
  padding: 8px 16px;
  margin: 5px;
  border-radius: 6px;
  text-decoration: none;
}

.hero .phones a:hover {
  background: #e6c200;  /* darker yellow on hover */
}

/* Sections */
.container {
  max-width: 900px;
  margin: auto;
  padding: 20px;
}
.about, .services {
  text-align: center;
}

/* Service cards */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-top: 20px;
}
.service-cards .card {
  flex: 1 1 200px;
  background: #ffd700;
  color: #000;
  padding: 20px;
  border-radius: 8px;
  font-weight: bold;
  box-shadow: 2px 2px 6px rgba(0,0,0,0.2);
}

/* Destination cards (same look as service cards) */
.destination-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-top: 20px;
}
.destination-cards .card {
  flex: 1 1 150px;
  background: #ffd700;
  color: #000;
  padding: 20px;
  border-radius: 8px;
  font-weight: bold;
  box-shadow: 2px 2px 6px rgba(0,0,0,0.2);
  text-align: center;
}

.destinations {
  background: #fff;
  text-align: center;
  padding: 30px 20px;
}

.destinations h2 {
  margin-bottom: 15px;
  color: #000;
}

.note {
  margin-top: 20px;
  font-weight: bold;
  color: #333;
}


/* Footer */
footer {
  background: #000;
  color: #ffd700;
  text-align: center;
  padding: 15px;
  margin-top: 30px;
}
footer a {
  color: #ffd700;
  font-weight: bold;
}
