.u-section-1 .u-sheet-1 {
  min-height: 85px;
}

.u-section-1 .u-btn-1 {
  --radius: 50px;
  border-style: solid;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 1px;
  margin: 20px auto 20px 20px;
  padding: 11px 30px;
}

@media (max-width: 1199px) {
  .u-section-1 .u-btn-1 {
    margin-left: 0;
  }
}

@media (max-width: 575px) {
  .u-section-1 .u-sheet-1 {
    min-height: 135px;
  }

  .u-section-1 .u-btn-1 {
    margin-top: 73px;
    margin-left: auto;
    margin-bottom: 17px;
  }
}.u-section-2 .u-sheet-1 {
  min-height: 705px;
  margin-bottom: 0;
}

.u-section-2 .u-text-1 {
  font-size: 3.75rem;
  font-weight: 700;
  margin: 16px auto 60px;
}

@media (max-width: 767px) {
  .u-section-2 .u-text-1 {
    font-size: 3rem;
  }
}

@media (max-width: 575px) {
  .u-section-2 .u-text-1 {
    font-size: 2.25rem;
  }
}
.dropdown-container {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.custom-select-wrapper {
  position: relative;
}

.custom-dropdown {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: transparent;
  border: 2px solid white;
  border-radius: 40px;
  color: white;
  padding: 10px 40px 10px 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  background-image: url("data:image/svg+xml,%3Csvg%20width='12'%20height='12'%20viewBox='0%200%2012%2012'%20xmlns='http://www.w3.org/2000/svg'%3E%3Cpath%20d='M2%204l4%204%204-4'%20stroke='white'%20stroke-width='2'%20fill='none'%20fill-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.custom-dropdown:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.custom-dropdown option {
  background-color: black;
  color: white;
}
.festival-map-container {
  position: relative;
  max-width: 100%;
  margin-top: 30px;
}

.map-background {
  width: 100%;
  border: 2px solid white;
  border-radius: 20px;
}

.pin {
  position: absolute;
  width: 24px;
  height: 24px;
  background-color: red;
  border-radius: 50%;
  border: 2px solid white;
  cursor: pointer;
  transform: translate(-50%, -100%);
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.6);
}

.pin:hover {
  background-color: darkred;
}

.pin-info {
  display: none;
  position: absolute;
  background: #111;
  color: white;
  border: 2px solid white;
  padding: 15px;
  border-radius: 10px;
  z-index: 100;
  max-width: 250px;
  font-size: 14px;
  box-shadow: 0 0 10px rgba(255,255,255,0.3);
}