/*
Author: Silas
Page: Contact
*/

.hero {
  position: relative;
  width: 100%;
  height: 60vh;
}

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

.hero-overlay {
  position: absolute;
  top: 50%;
  left: 10%;
  z-index: 2;
  text-align: center;
  color: #ebd8b7;
  transform: translateY(-50%);
}

.hero-overlay .title {
  font-size: 48px;
  font-weight: bold;
  text-decoration: underline;
  margin-bottom: 10px;
}

.hero-overlay .subtitle {
  font-size: 22px;
}

.content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px;
}

.intro-section {
  text-align: center;
  margin: 60px 0 40px;
}

.intro-text h2 {
  font-size: 36px;
  color: #574002;
  margin-bottom: 20px;
}

.intro-text p {
  font-size: 20px;
  color: #8d7c5e;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
}

.contact-main {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  margin: 60px 0;
}

.contact-cta-container {
  display: flex;
  flex-direction: column;
}

.contact-cta-container h2 {
  font-size: 32px;
  color: #574002;
  margin-bottom: 15px;
}

.contact-description {
  font-size: 18px;
  color: #8d7c5e;
  line-height: 1.6;
  margin-bottom: 40px;
}

.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.btn-email,
.btn-phone {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px 30px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-email {
  background-color: #6b5c35;
  color: white;
}

.btn-email:hover {
  background-color: #574002;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn-phone {
  background-color: #ffffff;
  color: #6b5c35;
  border: 2px solid #6b5c35;
}

.btn-phone:hover {
  background-color: #f8f4ed;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}

.btn-title {
  font-size: 20px;
  font-weight: 600;
}

.btn-subtitle {
  font-size: 16px;
  opacity: 0.9;
}

.contact-info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.info-card {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.info-card .info-icon {
  font-size: 32px;
  margin-bottom: 10px;
}

.info-card h4 {
  font-size: 18px;
  color: #574002;
  margin-bottom: 8px;
}

.info-card p {
  font-size: 15px;
  color: #8d7c5e;
  margin: 3px 0;
}

.social-card-mini {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.social-card-mini h4 {
  margin-bottom: 15px;
}

.social-icons-mini {
  display: flex;
  gap: 15px;
}

.social-icon-mini {
  width: 45px;
  height: 45px;
  background-color: #6b5c35;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon-mini:hover {
  background-color: #574002;
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.contact-info-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.visit-info,
.market-info {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.visit-info h3,
.market-info h3 {
  font-size: 24px;
  color: #574002;
  margin-bottom: 15px;
}

.visit-info p,
.market-info p {
  font-size: 16px;
  color: #8d7c5e;
  line-height: 1.6;
  margin-bottom: 15px;
}

.visit-benefit {
  font-size: 15px;
  color: #6b5c35;
  margin: 8px 0;
  padding-left: 5px;
}

.btn-secondary,
.btn-tertiary {
  display: inline-block;
  text-decoration: none;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.btn-secondary {
  background-color: #6b5c35;
  color: white;
}

.btn-secondary:hover {
  background-color: #574002;
}

.btn-tertiary {
  background-color: transparent;
  color: #6b5c35;
  border: 2px solid #6b5c35;
}

.btn-tertiary:hover {
  background-color: #6b5c35;
  color: white;
}

.map-section {
  margin: 80px 0;
  text-align: center;
}

.map-section h2 {
  font-size: 36px;
  color: #574002;
  margin-bottom: 40px;
}

.map-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: 0;
}

.faq-section {
  margin: 80px 0 40px;
}

.faq-section h2 {
  font-size: 36px;
  color: #574002;
  text-align: center;
  margin-bottom: 50px;
}

.faq-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.faq-item {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
  font-size: 20px;
  color: #574002;
  margin-bottom: 15px;
}

.faq-item p {
  font-size: 16px;
  color: #8d7c5e;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 900px) {
  .contact-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-info-cards {
    grid-template-columns: 1fr;
  }

  .faq-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .hero {
    height: 40vh;
  }

  .hero-overlay {
    left: 5%;
  }

  .hero-overlay .title {
    font-size: 32px;
  }

  .hero-overlay .subtitle {
    font-size: 16px;
  }

  .intro-text h2 {
    font-size: 28px;
  }

  .intro-text p {
    font-size: 16px;
  }

  .contact-cta-container h2,
  .map-section h2,
  .faq-section h2 {
    font-size: 28px;
  }

  .contact-description {
    font-size: 16px;
  }

  .btn-email,
  .btn-phone {
    padding: 20px 25px;
    gap: 15px;
  }

  .btn-icon {
    font-size: 28px;
  }

  .btn-title {
    font-size: 18px;
  }

  .btn-subtitle {
    font-size: 14px;
  }

  .visit-info,
  .market-info {
    padding: 20px;
  }

  .map-container iframe {
    height: 300px;
  }
}
