/* assets/css/booking-header4.css */

.db4-wrap{
  --fg: #ffffff;
  --accent: #D2AB67;
  --accentBright: #F3E1AF;
  --muted: rgba(255,255,255,.78);
  --line: rgba(255,255,255,.18);
  --card: rgba(0,0,0,.18);

  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  background: transparent;
}


.db4-form{
  padding: 16px;
}

.db4-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 16px;
  row-gap: 30px;
}

.db4-span2{ grid-column: span 2; }

.db4-field{
  display: grid;
  gap: 8px;
}

.db4-label{
  display: none;
}

.db4-input,
.db4-textarea{
      width: 100%;
  border:none;
  border-radius: 0;
  padding: 14px 16px;
  border-bottom: 1px solid #506F6A;
  background:transparent;
  color:#506F6A;
  font-weight: 700;
  font-size: 14px; 
  letter-spacing: 0.5px;
  outline:none;
}
.db4-field input{
  width: 100%;
  border:none;
  border-radius: 0;
  padding: 14px 16px;
  border-bottom: 1px solid #506F6A;
  background:transparent;
  color:#506F6A;
  font-weight: 700;
  font-size: 14px; 
  letter-spacing: 0.5px;
  outline:none;
}
/*.db4-input{border-bottom: 1px solid #7C5724;} */
.db4-textarea{
  resize: vertical;
  min-height: 70px;
}

.db4-input::placeholder,
.db4-textarea::placeholder, .db4-field input::placeholder{
  color:#506F6A;
  font-weight: 500;
  font-size: 14px; 
  letter-spacing: 0.5px;
}
.db4-field input:focus, .db4-field input:active, .db4-field textarea:focus, .db4-field textarea:active{
  border-bottom: 1px solid #506F6A;
       outline:none;
}

.db4-input:focus,
.db4-textarea:focus{
  border-color: rgba(0,0,0);
  box-shadow: 0 0 0 0px rgba(0,0,0);
}

.db4-consent{
  display: flex;
  gap: 16px;
  align-items: flex-start;
  color: #D2AB67;
  font-size: 14px;
  line-height: 1.35;
  cursor: pointer;
}
.db4-consent input{
  accent-color: #D2AB67;
}

.db4-note{
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(0,0,0,.18);
  border: 1px dashed rgba(255,255,255,.16);
  color: rgba(255,255,255,.78);
  font-size: 13px;
  min-height: 18px;
}

.db4-actions{
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
  flex-wrap: wrap;
}

.db4-btn{
    font-size: 14px;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: #ffffff;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 14px 16px 12px;
  border-radius: 5px;
  background: #1E3A34;
  text-decoration: none;
  border: 1px solid #1E3A34;
  cursor: pointer;
}
.db4-btn:hover{
  background-color: rgba(30, 58, 52,0.25);
  border: 1px solid #1E3A34;
  color: #1E3A34;
  outline: none !important;
}
.db4-btn:active{
    background-color: #1E3A34 !important;
}



.db4-home{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 14px;
  text-decoration: none;
  color: var(--bg);
  background: var(--accent);
  border: 1px solid rgba(210,171,103,.75);
  font-weight: 800;
  letter-spacing: .03em;
  white-space: nowrap;
}

.db4-home:hover{
  filter: brightness(1.05);
}

/* responsive */
@media (max-width: 720px){
  .db4-grid{ grid-template-columns: 1fr; }
  .db4-span2{ grid-column: span 1; }
  .db4-actions{ flex-direction: column; align-items: stretch; }
  .db4-btn, .db4-home{ width: 100%; }
  .db4-form {padding: 0;}
}
