/* Hero Section for Contact Page */
.hero {
  background-color: #1b1b1b;
  background-image: url('/Images/possiblecontact.jpg'); 
  background-size: cover;
  background-position: center;
  height: 440px; 
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero h1 {
  font-size: 2rem; 
  color: #7c3aed;
}

.hero p {
  color: #aaa;
  font-size: 1rem;
}

.hero-content {
  margin-top: 7.5rem;
}

/* General Contact Page Styles */
.contact-page {
  background-color: black;
}

/* CTA Section */
.cta-section {
  position: relative;
  background-color: #111;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

/* Two-Column CTA Layout */
.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

/* Individual CTA Boxes */
.cta-box {
  background: rgba(17, 17, 17, 0.9);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(124, 58, 237, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #eee;
}

.cta-box h2 {
  color: #7c3aed;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.cta-box p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
  color: #ccc;
}

/* Discord Button */
.discord-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #5865F2;
  color: white;
  padding: 12px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.discord-btn:hover {
  background-color: #4752c4;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: #1e1e1e;
  border: 1px solid #333;
  border-radius: 8px;
  color: #f5f5f5;
  padding: 12px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #7c3aed;
  outline: none;
}

/* Submit Button */
.submit-btn {
  background-color: #7c3aed;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
  font-size: 1rem;
}

.submit-btn:hover {
  background-color: #5b21b6;
}

.discord-box ul {
  list-style: disc;
  padding-left: 1.25rem; 
  margin: 0 0 1rem 0;
}

.discord-box ul li {
  margin-bottom: 0.5rem;
  color: #ccc;
  line-height: 1.5;
}

.discord-box ul li::marker {
  color: #7c3aed; 
}

/* Responsive: stack on small screens */
@media (max-width: 900px) {
  .two-column {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .cta-box h2 {
    font-size: 1.25rem;
  }

  .cta-box p {
    font-size: 0.95rem;
  }
}

