/* === CONTACT PAGE === */

/* Contact section wrapper (matches .about-section) */
.contact-section {
  background: #1a1a1a;
  border: 2px solid #ff4500;
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 0 12px rgba(255,69,0,0.3);
}

/* Headings (matches .about-section h2/h3) */
.contact-section h2,
.contact-section h3 {
  font-family: 'Permanent Marker', cursive;
  color: #ff4500;
  text-shadow: 0 0 6px #ff4500, 0 0 12px #ff6a00;
  margin-bottom: 1rem;
}

/* Paragraphs and links */
.contact-section p,
.contact-section a,
.contact-section strong {
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
  color: #f0f0f0;
}

.contact-section a:hover {
  color: #ff6a00;
  text-decoration: underline;
}

/* Highlight box (matches About page) */
.contact-section .highlight-box {
  background: rgba(255,69,0,0.1);
  border-left: 4px solid #ff4500;
  padding: 1rem;
  margin: 2rem 0;
  color: #fff;
  text-shadow: 0 0 6px #ff4500, 0 0 12px #ff6a00;
}

/* Contact form styling */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form label {
  font-weight: bold;
  color: #ff4500;
  font-family: 'Permanent Marker', cursive;
}

.contact-form input,
.contact-form textarea {
  background: rgba(0,0,0,0.6);
  border: 2px solid #ff4500;
  border-radius: 6px;
  padding: 0.75rem;
  color: #eee;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #ff6a00;
  box-shadow: 0 0 8px #ff4500, 0 0 14px #ff6a00;
}

/* Submit button */
.contact-form button {
  background: #ff4500;
  border: none;
  border-radius: 6px;
  padding: 0.75rem 1.5rem;
  font-family: 'Permanent Marker', cursive;
  font-size: 1.1rem;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.contact-form button:hover {
  background: #ff6a00;
  box-shadow: 0 0 10px #ff4500, 0 0 20px #ff6a00;
}

/* Divider line */
.contact-section hr {
  border-color: #ff4500;
  margin: 2rem 0;
}
