/* Contact Page Styles - Matching Squarespace Design */

.contact-page {
  min-height: 100vh;
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.contact-section {
  flex-basis: 0;
  min-width: 300px;
}

.contact-section h2 {
  color: #333;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  letter-spacing: 0.5px;
}

.contact-info {
  margin-bottom: 1rem;
}

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

.contact-name {
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.contact-page .contact-phone,
.contact-page .contact-email {
  display: block;
  color: rgb(222, 33, 21);
  text-decoration: none;
  margin: 0.25rem 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  transition: color 0.2s ease;
  font-weight: normal;
  text-transform: none;
  letter-spacing: normal;
}

.contact-page .contact-phone:hover,
.contact-page .contact-email:hover {
  color: #8b0000;
  text-decoration: underline;
}

.bandits-image {
  margin-top: 1rem;
}

.contact-bandits-img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-page {
    padding: 2rem 1rem;
    flex-direction: column;
    gap: 2rem;
  }
  
  .contact-section h2 {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .contact-page {
    padding: 1rem 0.5rem;
  }

  }
}
