/* style/contact.css */

/* Base styles for the contact page */
.page-contact {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #fff;
  background-color: #000000;
}

.page-contact__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.page-contact__hero-section {
  background: linear-gradient(135deg, #000000, #333333);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid #FFD700;
}

.page-contact__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-contact__hero-description {
  font-size: 1.2em;
  color: #cccccc;
  max-width: 800px;
  margin: 0 auto 30px;
}

.page-contact__hero-image {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
  margin-top: 30px;
  object-fit: cover;
}

/* General Section Styling */
.page-contact__info-section,
.page-contact__form-section,
.page-contact__social-section {
  padding: 60px 0;
  text-align: center;
}

.page-contact__section-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 15px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.page-contact__section-subtitle {
  font-size: 1.1em;
  color: #aaaaaa;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Contact Methods Section */
.page-contact__contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-contact__method-item {
  background-color: #1a1a1a;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #333;
}

.page-contact__method-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.page-contact__method-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

.page-contact__method-item h3 {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-contact__method-item p {
  color: #cccccc;
  margin-bottom: 20px;
  font-size: 0.95em;
}

/* Buttons */
.page-contact__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1em;
}

.page-contact__btn--primary {
  background-color: #FFD700;
  color: #000000;
}

.page-contact__btn--primary:hover {
  background-color: #e6c200;
  color: #000000;
}

.page-contact__btn--secondary {
  background-color: #333;
  color: #FFD700;
  border: 1px solid #FFD700;
}

.page-contact__btn--secondary:hover {
  background-color: #FFD700;
  color: #000000;
}

.page-contact__btn--submit {
  background-color: #FFD700;
  color: #000000;
  padding: 15px 30px;
  font-size: 1.1em;
  width: 100%;
  max-width: 300px;
  margin-top: 20px;
}

.page-contact__btn--submit:hover {
  background-color: #e6c200;
}

/* Form Section */
.page-contact__form-section {
  background-color: #0a0a0a;
  padding: 80px 0;
}

.page-contact__form-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-contact__contact-form {
  background-color: #1a1a1a;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
  flex: 1 1 500px;
  max-width: 600px;
  text-align: left;
  border: 1px solid #333;
}

.page-contact__form-group {
  margin-bottom: 25px;
}

.page-contact__form-label {
  display: block;
  margin-bottom: 8px;
  color: #FFD700;
  font-weight: bold;
  font-size: 1.1em;
}

.page-contact__form-input,
.page-contact__form-textarea {
  width: calc(100% - 20px);
  padding: 12px 10px;
  border: 1px solid #555;
  border-radius: 5px;
  background-color: #333;
  color: #fff;
  font-size: 1em;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__form-input::placeholder,
.page-contact__form-textarea::placeholder {
  color: #aaa;
}

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
  border-color: #FFD700;
  outline: none;
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

.page-contact__form-textarea {
  resize: vertical;
  min-height: 120px;
}

.page-contact__form-image-container {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-contact__form-bg-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

/* Social Section */
.page-contact__social-section {
  background-color: #000000;
  padding-bottom: 80px;
}

.page-contact__social-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-contact__social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  font-size: 1.2em;
  background-color: #1a1a1a;
  padding: 10px 20px;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  border: 1px solid #333;
}

.page-contact__social-link:hover {
  background-color: #FFD700;
  color: #000000;
  transform: translateY(-5px);
}

.page-contact__social-link:hover .page-contact__social-icon {
  filter: invert(1) brightness(0);
}

.page-contact__social-icon {
  width: 30px;
  height: 30px;
  transition: filter 0.3s ease;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-contact__hero-title {
    font-size: 2.8em;
  }
  .page-contact__section-title {
    font-size: 2.2em;
  }
  .page-contact__contact-form,
  .page-contact__form-image-container {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-contact__hero-section,
  .page-contact__info-section,
  .page-contact__form-section,
  .page-contact__social-section {
    padding: 40px 0;
  }
  .page-contact__hero-title {
    font-size: 2.2em;
  }
  .page-contact__hero-description {
    font-size: 1em;
  }
  .page-contact__section-title {
    font-size: 1.8em;
  }
  .page-contact__section-subtitle {
    font-size: 0.9em;
  }
  .page-contact__contact-methods {
    grid-template-columns: 1fr;
  }
  .page-contact__method-item {
    padding: 25px;
  }
  .page-contact__contact-form {
    padding: 30px;
  }
  .page-contact__form-image-container {
    order: -1; /* Move image above form on small screens */
  }
  .page-contact__form-input,
  .page-contact__form-textarea,
  .page-contact__btn--submit {
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .page-contact__hero-title {
    font-size: 1.8em;
  }
  .page-contact__section-title {
    font-size: 1.5em;
  }
  .page-contact__contact-methods,
  .page-contact__social-links {
    gap: 15px;
  }
  .page-contact__method-item h3 {
    font-size: 1.5em;
  }
  .page-contact__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}