/* Contact Hero/Banner Section */
.contact-hero {
  background-image: url('../images/contact-hero.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 0;
  position: relative;
  height: 70vh;
  min-height: 450px;
  max-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.contact-hero .container {
  position: relative;
  z-index: 2;
}

.contact-hero .hero-content {
  text-align: center;
  color: #fff;
  padding-top: 80px;
}

.contact-hero .hero-title {
  font-size: 4rem;
  font-weight: 700;
  font-family: var(--fontFamily-forum);
  letter-spacing: 3px;
  margin-bottom: 20px;
  color: #fff;
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.contact-hero .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-top: 15px;
}

.contact-hero .breadcrumb a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.contact-hero .breadcrumb a:hover {
  color: var(--gold-crayola);
}

.contact-hero .breadcrumb span:last-child {
  color: var(--gold-crayola);
  font-weight: 600;
}

.contact-hero .breadcrumb span:not(:last-child) {
  color: rgba(255, 255, 255, 0.5);
}

/* Contact Section */
.contact-section {
  padding: 100px 0;
  background-color: #f8f5f0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Contact Form */
.contact-form-wrapper {
  background-color: #fff;
  padding: 50px;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-title {
  font-size: 2.5rem;
  font-family: var(--fontFamily-forum);
  color: #2b1e14;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.contact-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--gold-crayola);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  width: 100%;
}

.form-input {
  width: 100%;
  padding: 15px 20px;
  font-size: 1.5rem;
  font-family: inherit;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  background-color: #f9f9f9;
  color: #333;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--gold-crayola);
  box-shadow: 0 0 0 3px rgba(181, 155, 122, 0.1);
}

.form-input::placeholder {
  color: #999;
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
}

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

.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 35px;
  background-color: var(--gold-crayola);
  color: #1a1a1a;
  border: none;
  border-radius: 5px;
  font-size: 1.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  align-self: flex-start;
}

.submit-btn:hover {
  background-color: #a08060;
  color: #fff;
  transform: translateY(-2px);
}

.submit-btn i {
  font-size: 1.5rem;
}

/* Contact Info */
.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-card {
  background-color: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.info-title {
  font-size: 2.5rem;
  font-family: var(--fontFamily-forum);
  color: #2b1e14;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.info-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--gold-crayola);
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-icon {
  width: 45px;
  height: 45px;
  background-color: var(--gold-crayola);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon i {
  font-size: 1.5rem;
  color: #1a1a1a;
}

.info-content {
  padding-top: 10px;
}

.info-content p,
.info-content a {
  font-size: 1.5rem;
  color: #666;
  line-height: 1.6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-content a:hover {
  color: var(--gold-crayola);
}

/* Newsletter Card */
.newsletter-card {
  background: linear-gradient(135deg, #2b1e14 0%, #4a3a2a 100%);
}

.newsletter-card .info-title {
  color: #fff;
}

.newsletter-card .info-title::after {
  background-color: var(--gold-crayola);
}

.newsletter-text {
  color: #b0b0b0;
  font-size: 1.5rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

.newsletter-form {
  width: 100%;
}

.newsletter-input-wrapper {
  display: flex;
  gap: 0;
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
}

.newsletter-input {
  flex: 1;
  padding: 15px 20px;
  border: none;
  font-size: 1.5rem;
  font-family: inherit;
  color: #333;
}

.newsletter-input:focus {
  outline: none;
}

.newsletter-input::placeholder {
  color: #999;
}

.newsletter-btn {
  padding: 15px 25px;
  background-color: var(--gold-crayola);
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.newsletter-btn:hover {
  background-color: #a08060;
}

.newsletter-btn i {
  font-size: 1rem;
  color: #1a1a1a;
}

/* Contact Image Section */
.contact-image-section {
  width: 100%;
  overflow: hidden;
}

.contact-image-wrapper {
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.contact-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Map Section */
.map-section {
  width: 100%;
}

.map-wrapper {
  width: 100%;
  height: 450px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(20%);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .contact-hero .hero-title {
    font-size: 3.5rem;
  }

  .contact-grid {
    gap: 40px;
  }
}

@media (max-width: 992px) {
  .contact-hero {
    height: 60vh;
    min-height: 400px;
    max-height: 500px;
  }

  .contact-hero .hero-title {
    font-size: 3rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-section {
    padding: 80px 0;
  }

  .contact-form-wrapper {
    padding: 40px;
  }

  .contact-image-wrapper {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    height: 50vh;
    min-height: 350px;
    max-height: 450px;
  }

  .contact-hero .hero-title {
    font-size: 2.5rem;
  }

  .contact-hero .breadcrumb {
    font-size: 0.9rem;
  }

  .contact-section {
    padding: 60px 0;
  }

  .contact-form-wrapper {
    padding: 30px;
  }

  .info-card {
    padding: 30px;
  }

  .contact-image-wrapper {
    height: 350px;
  }

  .map-wrapper {
    height: 350px;
  }
}

@media (max-width: 576px) {
  .contact-hero {
    height: 45vh;
    min-height: 300px;
    max-height: 400px;
  }

  .contact-hero .hero-title {
    font-size: 2rem;
  }

  .contact-hero .breadcrumb {
    font-size: 0.8rem;
  }

  .contact-section {
    padding: 50px 0;
  }

  .contact-form-wrapper {
    padding: 25px;
  }

  .contact-title {
    font-size: 1.5rem;
  }

  .info-card {
    padding: 25px;
  }

  .info-title {
    font-size: 1.3rem;
  }

  .info-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .info-content {
    padding-top: 0;
  }

  .submit-btn {
    width: 100%;
    justify-content: center;
  }

  .contact-image-wrapper {
    height: 280px;
  }

  .map-wrapper {
    height: 300px;
  }
}