@font-face {
  font-family: "HelveticaNeue";
  src: url("../fonts/HelveticaNeue.ttc") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "HelveticaNeueGeoCaps";
  src: url("../fonts/helvetica-neue-lt-geo-55-roman-caps.ttf")
    format("truetype");
  font-weight: normal;
  font-style: normal;
}

.font {
  font-family: "HelveticaNeue";
}

.font-up {
  font-family: "HelveticaNeueGeoCaps";
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.resort-container {
  padding-top: 80px;
}
.resorts-header {
  text-align: center;
  margin-bottom: 40px;
  background-image: url(../images/flag.jpeg);
  background-position: center;
  background-size: revert;
  height: 180px;
  position: relative;
  padding-top: 50px;
  opacity: 80%;
}

.resorts-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
}

.resorts-header h1 {
  font-size: 2rem;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
  color: #fff;
}

.resorts-header p {
  position: relative;
  z-index: 1;
  color: #fff;
}

.resort-filters {
  background: #fff;
  border-radius: 12px;
  padding: 20px 30px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
  margin-bottom: 40px;
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.filter-group select,
.filter-group input {
  padding: 10px 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  outline: none;
  flex: 1;
  min-width: 200px;
}

.resorts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
}

.resort-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.resort-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

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

.resort-info {
  padding: 18px 20px;
}

.resort-info h3 {
  margin: 0 0 10px 0;
}

.resort-info p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.4;
  margin-bottom: 12px;
  min-height: 80px;
}

.resort-info button {
  background: #2575fc;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background 0.3s ease;
}

.resort-info button:hover {
  background: #1256c2;
}
