/* style/contact.css */
.page-contact {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

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

.page-contact__hero-section {
  background-color: #A80000; /* Main color */
  color: #FFD700; /* Complementary for text */
  padding: 80px 0;
  text-align: center;
  background-image: url('[GALLERY:bg:abstract,rooster,dynamic]');
  background-size: cover;
  background-position: center;
  position: relative;
}

.page-contact__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.page-contact__hero-title,
.page-contact__hero-description {
  position: relative;
  z-index: 2;
}

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

.page-contact__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto;
  color: #FFFFFF; /* White for readability */
}

.page-contact__section-title {
  font-size: 2.5em;
  color: #A80000; /* Main color */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-contact__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #555;
}

.page-contact__contact-info-section,
.page-contact__form-section,
.page-contact__cta-section {
  padding: 60px 0;
}

.page-contact__contact-info-section {
  background-color: #f9f9f9;
}

.page-contact__info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-contact__info-card {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-contact__info-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  /* No filter applied to images */
}

.page-contact__card-title {
  font-size: 1.5em;
  color: #A80000; /* Main color */
  margin-bottom: 10px;
}

.page-contact__card-text {
  color: #666;
  margin-bottom: 20px;
}

.page-contact__contact-link {
  color: #A80000; /* Main color */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-contact__contact-link:hover {
  color: #FFD700; /* Auxiliary color */
}

.page-contact__contact-form {
  max-width: 700px;
  margin: 0 auto;
  background-color: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

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

.page-contact__form-input,
.page-contact__form-textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1em;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
}

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
  border-color: #A80000; /* Main color */
  outline: none;
  box-shadow: 0 0 0 3px rgba(168, 0, 0, 0.2);
}

.page-contact__form-textarea {
  resize: vertical;
}

.page-contact__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: none;
  text-align: center;
}

.page-contact__btn--submit {
  background-color: #A80000; /* Main color */
  color: #fff;
  width: 100%;
}

.page-contact__btn--submit:hover {
  background-color: #cb6666; /* Lighter shade of main color */
}

.page-contact__btn--primary {
  background-color: #FFD700; /* Auxiliary color */
  color: #A80000; /* Main color for text */
  padding: 10px 20px;
  font-size: 1em;
}

.page-contact__btn--primary:hover {
  background-color: #e6c200; /* Darker shade of auxiliary color */
}

.page-contact__cta-section {
  background-color: #A80000; /* Main color */
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

.page-contact__cta-section .page-contact__section-title {
  color: #FFD700; /* Auxiliary color */
  margin-bottom: 20px;
}

.page-contact__cta-section .page-contact__section-description {
  color: #FFFFFF; /* White for readability */
  margin-bottom: 40px;
}

.page-contact__btn--cta {
  background-color: #FFD700; /* Auxiliary color */
  color: #A80000; /* Main color for text */
  font-size: 1.2em;
  padding: 18px 40px;
}

.page-contact__btn--cta:hover {
  background-color: #e6c200; /* Darker shade of auxiliary color */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-contact__hero-title {
    font-size: 2.5em;
  }

  .page-contact__section-title {
    font-size: 2em;
  }

  .page-contact__info-grid {
    grid-template-columns: 1fr;
  }

  .page-contact__contact-form {
    padding: 30px;
  }

  .page-contact__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-contact__btn--cta {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-contact__hero-title {
    font-size: 2em;
  }

  .page-contact__hero-description {
    font-size: 1em;
  }

  .page-contact__section-title {
    font-size: 1.8em;
  }

  .page-contact__section-description {
    font-size: 0.95em;
  }

  .page-contact__contact-form {
    padding: 20px;
  }
}