/* Flight Areas Page Styles */

#flight-areas-wrapper {
  margin: 0 15px;
  padding-bottom: 60px;
}

#flight-areas-hero {
  text-align: center;
  padding: 40px 0 20px;
}

#flight-areas-hero h1 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--brown);
  margin-bottom: 15px;
}

#flight-areas-hero .note {
  font-size: 15px;
  font-style: italic;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

/* Flight Area Card */
.flight-area-card {
  margin-bottom: 50px;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 40px;
}

.flight-area-card:last-of-type {
  border-bottom: none;
}

.flight-area-card h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 12px;
}

.flight-area-card h2 span.area-number {
  display: inline-block;
  background-color: var(--brown);
  color: #fff;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  border-radius: 50%;
  font-size: 16px;
  margin-right: 10px;
}

.flight-area-card h2 span.wind-direction {
  font-size: 14px;
  font-weight: 400;
  color: #999;
  margin-left: 5px;
}

.flight-area-card .area-description {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 20px;
}

.flight-area-card .meeting-point {
  background-color: #f9f9f9;
  border-left: 4px solid var(--brown);
  padding: 15px 20px;
  margin-bottom: 20px;
  border-radius: 0 8px 8px 0;
}

.flight-area-card .meeting-point h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 8px;
}

.flight-area-card .meeting-point p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

.flight-area-card .coordinates {
  font-size: 13px;
  font-weight: 500;
  color: #888;
  margin-top: 8px;
  font-family: monospace;
}

.flight-area-card .area-photo {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  margin-top: 15px;
}

/* Special Events Section */
#special-events {
  margin-top: 60px;
  text-align: center;
  padding: 40px 20px;
  background-color: #f5f0eb;
  border-radius: 12px;
}

#special-events h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 15px;
}

#special-events p {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  max-width: 600px;
  margin: 0 auto 20px;
}

#special-events ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 20px;
}

#special-events ul li {
  font-size: 16px;
  font-weight: 600;
  color: var(--brown);
  padding: 10px 25px;
  border: 2px solid var(--brown);
  border-radius: 25px;
}

/* Desktop Styles */
@media (min-width: 968px) {
  #flight-areas-wrapper {
    margin: 40px 15vw;
  }

  #flight-areas-hero h1 {
    font-size: 40px;
  }

  .flight-area-card h2 {
    font-size: 26px;
  }

  .flight-area-card .area-description {
    font-size: 16px;
  }
}
