.modal {
  display: flex;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #1d4e8680;
  justify-content: center;
  align-items: center;
  padding: 10px;
  box-sizing: border-box;
}

.modal-content {
  background-image: url('https://sunwavesurfacing.com/ad.jpg');
  background-size: cover;
  background-position: center;
  padding: 0;
  width: 90%;
  max-width: 750px;
  height: 500px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  position: relative;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.modal-text {
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 8px;
  margin: 20px;
  text-align: center;
}

.close-modal {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  font-weight: bold;
  background: none;
  border: none;
  color: #fefe00;
  cursor: pointer;
  z-index: 10;
}

.close-modal:hover {
  color: #ffd700;
}

/* Responsive for mobile */
@media (max-width: 600px) {
  .modal-content {
    height: auto;
    aspect-ratio: 4 / 3;
    max-height: 90vh;
  }

  .modal-text {
    padding: 15px;
    margin: 10px;
  }

  .close-modal {
    font-size: 22px;
    top: 8px;
    right: 12px;
  }
}
