/* =======================
   The Soul Cats Band - Contact Page
   ======================= */

/* -----------------------
   Contact Section
------------------------- */
.contact {
  flex: 1;
  padding: 3rem 2rem;
  max-width: 800px;
  margin: 2rem auto;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(249, 194, 60, 0.3);
  backdrop-filter: blur(5px);
  width: 100%;
}

.contact h2 {
  text-align: center;
  color: #f9c23c;
  font-size: 2rem;
  margin-bottom: 2rem;
  letter-spacing: 1px;
}

/* -----------------------
   Form Styles
------------------------- */
form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

label {
  font-weight: 600;
  color: #f9c23c;
  font-size: 1rem;
}

label.required::after {
  content: " *";
  color: #e74c3c;
}

input,
textarea {
  padding: 0.8rem;
  border-radius: 6px;
  border: 1px solid #555;
  background: #1a1a1a;
  color: #fff;
  transition: var(--transition);
  font-size: 1rem;
}

input:focus,
textarea:focus {
  border-color: #f9c23c;
  box-shadow: 0 0 8px #f9c23c;
  outline: none;
}

textarea {
  resize: none;
  min-height: 100px;
}

/* Submit Button */
button {
  padding: 0.8rem;
  background: #f9c23c;
  border: none;
  border-radius: 6px;
  color: #111;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

button:hover {
  background: #ffb300;
  transform: translateY(-3px);
}

/* -----------------------
   Map Styles
------------------------- */
.map {
  margin-top: 2rem;
  border: 2px solid #f9c23c;
  border-radius: 10px;
  overflow: hidden;
}

iframe {
  width: 100%;
  height: 300px;
  border: none;
}

/* -----------------------
   Responsive Design
------------------------- */
@media (max-width: 1023px) {
  .contact {
    padding: 2rem 1rem;
    margin: 1rem auto;
  }
}

@media (max-width: 410px) {
  .contact {
    padding: 1.5rem 0.6rem;
    margin: 0.5rem auto;
  }

  .contact h2 {
    font-size: 1.4rem;
  }

  label {
    font-size: 0.9rem;
  }

  input,
  textarea {
    padding: 0.6rem;
    font-size: 0.95rem;
  }

  button {
    padding: 0.7rem;
  }

  iframe {
    height: 200px;
  }
}