/* public/css/contact.css */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* HERO SECTION avec Header en overlay */
.hero {
  position: relative;
  height: 75vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Background Image */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-bottom-right-radius: 20px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.096);
  border-bottom-right-radius: 20px;
  z-index: 2;
}

/* Section Contact */
.contact-section {
  padding: 120px 0;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.contact-text {
  padding-right: 40px;
}

.contact-text.message-sent p {
	text-align: center;
}

.contact-title {
  font-size: 36px;
  line-height: 40px;
  color: #333;
  margin-bottom: 15px;
  font-family: "GillSansMTPro-Medium", sans-serif;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .contact-text {
    padding-right: 0;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 80px 0;
  }

  .contact-title {
    font-size: 28px;
  }

  .contact-description,
  .contact-cta {
    font-size: 16px;
    font-weight: 500;
  }
  .container {
	padding: 0 15px !important;
  }
}
