/* =========================================================
   LE MOULIN PRODUCTIONS — contact.css
   ========================================================= */

body.contact-page{
  color: rgba(255,255,255,0.85);
}

.contact-page .top-bar{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: var(--header-pad);
}

.contact-page .home-btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(12px, 1.4vw, 15px);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  transition: color 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
  padding: 4px 2px;
}
.contact-page .home-btn:hover,
.contact-page .home-btn:focus-visible{
  color: #fff;
  transform: translateX(-2px);
}

.contact-page .home-btn-icon{
  height: clamp(20px, 2.6vw, 28px);
  width: auto;
  max-width: 28px;
  display: block;
  opacity: 0.65;
  transition: opacity 0.3s ease;
  flex-shrink: 0;
}
.contact-page .home-btn:hover .home-btn-icon,
.contact-page .home-btn:focus-visible .home-btn-icon{
  opacity: 1;
}

.contact-page .lang-item{
  color: rgba(255,255,255,0.4);
}
.contact-page .lang-item:hover,
.contact-page .lang-item:focus-visible{
  color: #fff;
}
.contact-page .lang-item.is-active{
  color: #fff;
}

/* ---------- Contenu central ---------- */

.contact-main{
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 110px 24px 60px;
  text-align: center;
}

.contact-title{
  font-size: clamp(14px, 1.7vw, 19px);
  font-weight: 500;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 0 32px;
  color: rgba(255,255,255,0.85);
}

/* ---------- Boîte email (même système que access.html) ---------- */

.contact-box{
  position: relative;
  width: min(92%, 720px);
  aspect-ratio: 2.4 / 1;
  background-image: url('../assets/img/access-box-bg.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 6%;
}

.contact-input{
  width: 100%;
  height: clamp(38px, 6vw, 52px);
  border: none;
  background: #ffffff;
  font-family: var(--font-main);
  font-size: clamp(13px, 1.6vw, 16px);
  padding: 0 16px;
  outline: none;
}

.contact-submit{
  position: absolute;
  right: clamp(16px, 4%, 32px);
  bottom: clamp(14px, 5%, 26px);
  background: none;
  border: none;
  color: #ffffff;
  font-family: var(--font-main);
  font-size: clamp(14px, 1.8vw, 18px);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 6px 8px;
  transition: opacity 0.25s ease;
}
.contact-submit:hover,
.contact-submit:focus-visible{
  opacity: 0.7;
}

.site-copyright{
  margin-top: 40px;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.3);
}

@media (max-width: 480px){
  .contact-title{
    font-size: 14px;
  }
}
