
body {
  background: #111;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

main {
  padding: 20px;
}

section {
  margin-bottom: 60px;
  padding: 20px;
}

.hero {
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 100px 20px;
  color: white;
}

.cta-button {
  display: inline-block;
  padding: 12px 24px;
  background: #A5206F;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  margin-top: 20px;
  font-weight: bold;
  transition: background 0.3s ease;
}
.cta-button:hover {
  background: #d13686;
}

.resort-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.resort-card {
  background: #222;
  padding: 20px;
  border-radius: 12px;
  flex: 1 1 260px;
  max-width: 300px;
  text-align: center;
  text-decoration: none;
  color: white;
  transition: background 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}
.resort-card:hover {
  background: #333;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}
table th, table td {
  border: 1px solid #444;
  padding: 12px;
  text-align: center;
}
table thead {
  background: #A5206F;
  color: white;
}
table tr:nth-child(even) {
  background: #1a1a1a;
}
table tr:nth-child(odd) {
  background: #2a2a2a;
}

@media screen and (max-width: 600px) {
  .resort-grid {
    flex-direction: column;
    align-items: center;
  }
  .resort-card {
    width: 90%;
  }
  .hero h1 {
    font-size: 1.8em;
  }
  .hero p {
    font-size: 1.1em;
  }
  .cta-button {
    width: auto;
    padding: 14px 24px;
    font-size: 1em;
  }
}
