/*
 * Bali Otthon Kontaktseite
 * Ergänzung zum Bali-Otthon-Skeleton.
 */

.bo-contact-content{
  width:min(1160px, calc(100% - 36px));
  margin:0 auto;
  padding:clamp(20px, 3vw, 36px) 0 clamp(54px, 7vw, 92px);
}

.bo-contact-head{
  margin:0 0 clamp(18px, 3vw, 28px);
}

.bo-contact-head .bo-skel-kicker{
  color:#8a7d70;
}

.bo-contact-head h2{
  margin:6px 0 0;
  font-family:var(--bo-headline);
  font-size:clamp(34px, 4.2vw, 54px);
  line-height:1.04;
  font-weight:600;
}

.bo-contact-grid{
  display:grid;
  grid-template-columns:minmax(0, 1.35fr) minmax(320px, .9fr);
  gap:clamp(18px, 2.4vw, 28px);
  align-items:stretch;
}

.bo-contact-card{
  background:linear-gradient(180deg, #fff 0%, #faf9f7 100%);
  border:1px solid rgba(0,0,0,.06);
  box-shadow:0 10px 28px rgba(0,0,0,.035);
  padding:clamp(22px, 3vw, 34px);
}

.bo-contact-card p{
  color:#333;
  font-size:15px;
  line-height:1.82;
  margin:0 0 20px;
}

.bo-contact-card h3{
  margin:0 0 14px;
  font-family:var(--bo-headline);
  font-size:clamp(26px, 2.6vw, 34px);
  line-height:1.08;
  font-weight:600;
}

.bo-contact-form{
  display:block;
}

.bo-contact-form,
.bo-contact-form *{
  box-sizing:border-box;
}

.bo-contact-field{
  display:grid;
  gap:7px;
  margin:12px 0;
}

.bo-contact-field label{
  color:#777;
  font-size:12px;
  line-height:1.25;
}

.bo-contact-field input,
.bo-contact-field textarea{
  width:100%;
  border:1px solid rgba(0,0,0,.22);
  border-radius:0;
  background:#fff;
  color:#111;
  font:500 14px/1.4 var(--bo-ui);
  padding:10px 12px;
}

.bo-contact-field textarea{
  min-height:150px;
  resize:vertical;
}

.bo-contact-field input:focus,
.bo-contact-field textarea:focus{
  outline:none;
  border-color:#8f6f44;
  box-shadow:0 0 0 3px rgba(184,138,74,.16);
}

.bo-contact-privacy{
  display:flex;
  gap:10px;
  align-items:flex-start;
  cursor:pointer;
}

.bo-contact-privacy input{
  width:auto;
  margin-top:3px;
}

.bo-contact-privacy span{
  min-width:0;
  color:#777;
  font-size:12px;
  line-height:1.45;
  white-space:normal;
}

.bo-contact-alert{
  display:none;
  margin-top:12px;
  padding:12px 14px;
  border:1px solid rgba(0,0,0,.10);
  background:#fff;
  color:#666;
  font-size:13px;
  line-height:1.45;
}

.bo-contact-submit{
  width:100%;
  min-height:48px;
  margin-top:14px;
  border:0;
  border-radius:999px;
  background:#111;
  color:#fff;
  cursor:pointer;
  font:800 13px/1 var(--bo-ui);
  letter-spacing:.08em;
  text-transform:uppercase;
  transition:background .22s ease, transform .22s ease, opacity .22s ease;
}

.bo-contact-submit:hover{
  background:#8f6f44;
  transform:translateY(-1px);
}

.bo-contact-submit:disabled{
  cursor:wait;
  transform:none;
}

.bo-contact-aside h3{
  margin-bottom:12px;
}

.bo-contact-address{
  margin:0 0 20px;
  color:#222;
  font-size:15px;
  line-height:1.65;
}

.bo-contact-video{
  width:100%;
  aspect-ratio:4 / 3;
  overflow:hidden;
  background:#f2f0ec;
}

.bo-contact-video video{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.bo-contact-video-placeholder{
  width:100%;
  height:100%;
  min-height:280px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:28px;
  text-align:center;
  background:
    linear-gradient(180deg, rgba(255,255,255,.36) 0%, rgba(255,255,255,.84) 100%),
    url('/images/bali-otthon-eyecatcher.jpg') center/cover no-repeat;
  color:#111;
  font-family:var(--bo-headline);
  font-size:clamp(28px, 3vw, 42px);
  line-height:1.08;
}

@media (max-width: 900px){
  .bo-contact-grid{
    grid-template-columns:1fr;
  }

  .bo-contact-aside{
    order:2;
  }

  .bo-contact-video{
    aspect-ratio:16 / 10;
  }
}

@media (max-width: 560px){
  .bo-contact-content{
    width:min(100% - 24px, 1160px);
    padding-top:18px;
  }

  .bo-contact-card{
    padding:22px 18px;
  }

  .bo-contact-field textarea{
    min-height:130px;
  }
}
