/* =========================
   Base
========================= */

:root{
  --bg: #f4f6f8;
  --card: #ffffff;
  --text: #111827;
  --muted: #6b7280;
  --line: #e5e7eb;
  --primary: #2f6fed;
  --primary-dark: #255bd1;
  --shadow: 0 8px 24px rgba(17,24,39,0.06);
  --radius: 14px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background:var(--bg);
  color:var(--text);
}

h1,h2,h3,h4{ margin:0 0 12px 0; }
h1{ font-size:32px; font-weight:800; }
h2{ font-size:18px; font-weight:800; }
h3{ font-size:18px; font-weight:800; }
h4{ font-size:16px; font-weight:800; }

button, input, select, textarea{
  font: inherit;
}

/* =========================
   Layout
========================= */

.booking-wrapper{
  max-width: 1220px;
  margin: 75px auto 60px;
  padding: 0 18px;
}

.booking-title{
  margin-bottom: 18px;
}

.booking-layout{
  display:grid;
  grid-template-columns: 1fr 360px;
  gap: 22px;
  align-items:start;
}

@media (max-width: 980px){
  .booking-layout{
    grid-template-columns: 1fr;
  }
  .sticky{
    position: static !important;
    top: auto !important;
  }
}

/* =========================
   Cards
========================= */

.card{
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
  border: 1px solid rgba(229,231,235,0.8);
  margin-top: 10px;
}

.booking-main .card{
  margin-bottom: 18px;
}

.sticky{
  position: sticky;
  top: 18px;
}

/* =========================
   Forms
========================= */

.form-grid{
  display:grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr;
  gap: 16px;
  align-items:end;
}

@media (max-width: 980px){
  .form-grid{
    grid-template-columns: 1fr;
  }
}

.form-group label{
  display:block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea{
  width:100%;
  border:1px solid var(--line);
  border-radius: 8px;
  padding: 10px 10px;
  outline: none;
  background:#fff;
}

.form-group textarea{
  resize: vertical;
  min-height: 86px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
  border-color: rgba(47,111,237,0.55);
  box-shadow: 0 0 0 3px rgba(47,111,237,0.12);
}

.form-group.checkbox label{
  display:flex;
  gap:8px;
  align-items:center;
  font-weight:700;
  margin-bottom: 0;
}

.pet-hint{
  margin-top: 6px;
  font-size: 12px;
  color: var(--muted);
}

/* (optional) inline error hints if you render them */
.inline-error{
  color:#c0392b;
  font-size:12px;
  margin-top:6px;
  font-weight:600;
}

/* =========================
   Calendar
========================= */

.calendar-card h2{
  margin-bottom: 10px;
}

.calendar-navigation,
.calendar-navigation-bottom{
  display:flex;
  justify-content: space-between;
  align-items:center;
  margin: 6px 0 12px;
}

.calendar-navigation-bottom{
  margin-top: 12px;
}

.calendar-navigation button,
.calendar-navigation-bottom button{
  border:1px solid var(--line);
  background:#fff;
  border-radius: 8px;
  padding: 7px 10px;
  cursor:pointer;
  font-size: 12px;
  color: #374151;
}

.calendar-navigation button:hover,
.calendar-navigation-bottom button:hover{
  background:#f9fafb;

}
.calendar-container{
  display: grid;
  grid-template-columns: repeat(3, 280px);
  gap: 16px;
  justify-content: space-between;
}

.calendar-container .month{
  flex: 0 0 280px;            /* feste Monatsbreite */
}


@media (max-width: 1100px){

  .calendar-container{
    grid-template-columns: 1fr;
  }

  .calendar-container .month{
    width: 100%;
  }

  #bookingNext{
    display: inline-block;
  }

  #bookingNextTop{
    display: none;
  }
}


.month{
  width: 280px;
  background:#fff;
  border-radius: 12px;
  padding: 12px;
  border:1px solid rgba(229,231,235,0.8);
}

.month-header{
  text-align:center;
  font-weight:800;
  margin-bottom: 8px;
}

.weekdays,
.days{
  display:grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.weekdays span{
  text-align:center;
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
}

.day{
  height: 35px;
  border-radius: 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 12px;
  cursor:pointer;
  user-select:none;
  position: relative;
  border: 1px solid transparent;
  color: #1e7e34;
  overflow: hidden;
  isolation: isolate;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.day::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:12px;
  background:#e6f6ec;
  z-index:0;
}

.day.disabled{
  color: #842029;
  cursor: not-allowed;
  opacity: 1;
}

.day.disabled::before{
  background:#f8d7da;
}

.day.range{
  color:#1f2937;
  font-weight:700;
}

.day.range::before{
  background: rgba(47,111,237,0.18);
}

.day.start,
.day.end{
  color:#fff;
  font-weight:800;
  border-color: var(--primary);
}

.day.start::before,
.day.end::before,
.day.start.range::before,
.day.end.range::before{
  background: var(--primary);
}

.day .day-number{
  position: relative;
  z-index: 2;
  font-size: 12px;
  font-weight: 600;
}

@media (hover: hover) and (pointer: fine) {
  .day:hover::before{
    background:#f3f4f6;
  }

  .day:not(.disabled):not(.start):not(.end):not(.range):hover::before{
    background:#ccebd8;
  }
}

.calendar-container,
.month,
.days {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.price-label{
  display:none; /* your screenshot shows clean dots, so hide by default */
}

.day .day-number{
  font-size: 12px;
  font-weight: 600;
}

/* =========================
   Kilometer section
========================= */

.km-info{
  color: var(--text);
  font-size: 13px;
  line-height: 1.35;
  margin-bottom: 10px;
}

.summary-row{
  display:flex;
  justify-content: space-between;
  align-items:center;
  padding: 8px 0;
  border-top: 1px solid rgba(229,231,235,0.55);
  font-size: 13px;
}

.summary-row:first-of-type{
  border-top:none;
}

.summary-row.highlight{
  border-top: none;
  padding-top: 10px;
  font-weight: 800;
}

.km-packages{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 10px 0 6px;
}

.km-card{
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 10px;
  display:flex;
  align-items:center;
  gap: 8px;
  cursor:pointer;
  background:#fff;
}

.km-card input{
  margin:0;
}

.km-card:hover{
  background:#f9fafb;
}

.km-label-text{
  font-size: 13px;
  color:#111827;
}

/* =========================
   Extras
========================= */

.btn-primary{
  width:100%;
  border:none;
  border-radius: 10px;
  padding: 12px 14px;
  background: var(--primary);
  color:#fff;
  font-weight: 800;
  cursor:pointer;
  margin-top: 10px;
}

.btn-primary:hover{
  background: var(--primary-dark);
}

.btn-secondary{
  border:1px solid var(--line);
  background:#fff;
  border-radius: 10px;
  padding: 10px 12px;
  cursor:pointer;
  font-weight: 700;
}

.btn-secondary:hover{
  background:#f9fafb;
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;

  display: flex;
  align-items: center;     /* vertikal */
  justify-content: center; /* horizontal */

  padding: 40px 20px;      /* verhindert Anstoßen oben/unten */
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);

  z-index: 9999;
}

.modal-content {
  background: #ffffff;
  max-width: 720px;
  padding: 28px 32px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.18);
  width: 95%;
  margin: auto;            /* zusätzliche Zentrierung */
  max-height: calc(100vh - 80px);  /* berücksichtigt padding */
  overflow-y: auto;
  border-radius: 18px;
  animation: fadeInScale 0.18s ease-out;
}

.modal-content h3 {
  margin-top: 0;
  margin-bottom: 22px;
  font-size: 18px;
  font-weight: 600;
  color: #111;
}

.modal-close{
  position:absolute;
  right: 12px;
  top: 10px;
  font-size: 22px;
  cursor:pointer;
  color:#111827;
}

#extrasList{
  margin-top: 10px;
  display:flex;
  flex-direction:column;
  gap: 10px;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}



.extra-item {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 6px 16px;

  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 20px 22px;
  margin-bottom: 16px;

  background: #ffffff;
  transition: all 0.15s ease;
  position: relative;
}
.extra-item::after {
  content: "";
  position: absolute;
  top: 14px;
  right: 16px;

  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #d1d5db;

  background: white;
  transition: all 0.2s ease;
}
/* Hover */
.extra-item:hover {
  border-color: #2563eb;
  background: #f8fbff;
}

/* Checkbox */
.extra-item input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* Titel */
.extra-item strong {
  grid-column: 2;
  font-size: 18px;
  font-weight: 700;
}

/* Beschreibung */
.extra-item small {
  grid-column: 2;
  font-size: 14px;
  color: #6b7280;
  line-height: 1.45;
}

/* Preis */
.extra-item span {
  grid-column: 3;
  grid-row: 1;
  font-size: 18px;
  font-weight: 800;
  white-space: nowrap;
  align-self: start;
}

/* Selected Zustand */
.extra-item:has(input[type="checkbox"]:checked)::after {
  content: "✓";
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 13px;
  font-weight: 700;

  color: white;
  background: #2563eb;
  border-color: #2563eb;
}

.modal-actions {
  margin-top: 20px;
  text-align: right;
}

.modal-actions button {
  padding: 10px 18px;
  border-radius: 8px;
  border: none;
  background: #2563eb;
  color: white;
  cursor: pointer;
  transition: all 0.15s ease;
}

.modal-actions button:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}






/* =========================
   Sidebar summary
========================= */

.customer-section{
  margin-bottom: 16px;
}

.summary-section{
  margin-top: 6px;
}

.summary-period{
  background:#eef3f7;
  border-radius: 8px;
  padding: 8px 8px;
  font-weight: 600;
  margin-bottom: 14px;
}

.summary-prices{
  border-bottom: 1px solid rgba(229,231,235,0.6);
  padding-bottom: 12px;
  margin-bottom: 12px;
}

.summary-row,
.summary-line{
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 10px;
}

.summary-prices .summary-row{
  border-top: none;
  padding: 6px 0;
  font-size: 14px;
}

.summary-line{
  padding: 6px 0;
  font-size: 14px;
  color: var(--muted);
}

.price-value{
  font-weight: 800;
}

.summary-extras{
  margin-top: 10px;
}

.summary-extras h4{
  margin-bottom: 8px;
}

#summaryExtras{
  color: #111827;
  font-size: 14px;
}

#summaryExtras ul{
  margin: 0 0 0 18px;
  padding: 0;
}

#summaryExtras li{
  margin: 6px 0;
}

.summary-total{
  margin-top: 16px;
  padding-top: 14px;
  border-top: 2px solid rgba(229,231,235,0.7);
  display:flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
}

.price-big{
  font-size: 35px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

/* =========================
   Success Overlay
========================= */

.success-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display:none;
  align-items:center;
  justify-content:center;
  z-index: 12000;
}

.success-box{
  width: 520px;
  max-width: calc(100% - 24px);
  background:#fff;
  border-radius: 16px;
  padding: 18px;
  text-align:center;
  box-shadow: 0 12px 38px rgba(0,0,0,0.25);
}

.success-icon{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  margin: 0 auto 12px;
  background: rgba(39,174,96,0.12);
  color: #27ae60;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 900;
  font-size: 22px;
}

.success-details{
  background:#f6f7fb;
  border-radius: 12px;
  padding: 12px;
  text-align:left;
  margin: 12px 0;
  font-size: 14px;
}

.success-ref{
  margin: 10px 0 14px;
  font-size: 14px;
}

#successCloseBtn{
  width: 100%;
  border:none;
  border-radius: 10px;
  padding: 12px 14px;
  background: var(--primary);
  color:#fff;
  font-weight: 900;
  cursor:pointer;
}
#successCloseBtn:hover{ background: var(--primary-dark); }

/* =========================
   Confirm Overlay (Nachricht leer)
========================= */

.confirm-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display:flex;
  justify-content:center;
  align-items:center;
  z-index: 20000;
}

.confirm-box{
  background: white;
  padding: 24px;
  border-radius: 12px;
  width: 360px;
  max-width: calc(100% - 24px);
  text-align: center;
  box-shadow: 0 12px 38px rgba(0,0,0,0.25);
}

.confirm-actions{
  display:flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 20px;
}

.confirm-actions button{
  flex:1;
  padding: 10px 12px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 800;
}

#confirmYes{
  background: #2c3e50;
  color: white;
}

#confirmNo{
  background: #d1d5db;
  color: #111827;
}

/* =========================
   Small helpers
========================= */

.muted{ color: var(--muted); }

.day:not(.disabled):hover{
  background:#ccebd8;
}

.confirm-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.confirm-box {
  background: #ffffff;
  padding: 28px 32px;
  border-radius: 14px;
  max-width: 460px;
  width: 90%;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  animation: fadeInScale 0.18s ease-out;
  text-align: center;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.confirm-box p {
  margin-bottom: 22px;
  font-size: 15px;
  line-height: 1.5;
  color: #333;
}

.confirm-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.confirm-actions button {
  padding: 10px 16px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.15s ease;
}

#conflictBackVehicle {
  background: #e5e7eb;
  color: #333;
}

#conflictOtherVehicle {
  background: #2563eb;
  color: white;
}

#conflictOtherDates {
  background: #f59e0b;
  color: white;
}

.confirm-actions button:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

#bookingNext{
  display: none;
}

@media (max-width: 1100px){

  #bookingNext{
    display: inline-block;
  }
  #bookingNextTop{
  display: none;
}

}

/* =========================
   Navigation
========================= */

.site-header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:1000;
  background:white;
  box-shadow:0 4px 16px rgba(0,0,0,0.05);
  transition:transform 0.25s ease, opacity 0.25s ease;
}

.site-header.nav-hidden{
  transform:translateY(-100%);
  opacity:0;
}

.nav-wrapper{
  max-width:1220px;
  margin:auto;
  padding:10px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.nav-logo img{
  height:42px;
}

.nav-menu{
  display:flex;
  gap:22px;
  align-items:center;
}

.nav-menu a{
  text-decoration:none;
  font-weight:700;
  color:#111827;
  font-size:14px;
}

.nav-menu a:hover{
  color:var(--primary);
}

.nav-book{
  background:var(--primary);
  color:white !important;
  padding:10px 16px;
  border-radius:10px;
}

.nav-book:hover{
  background:var(--primary-dark);
}

/* Camper Bilder */

.camper-img{
  width:100%;
  height:300px;
  object-fit:cover;
  border-radius:10px;
  margin-bottom:12px;
}

/* =========================
   Camper Card Verbesserungen
========================= */

.camper-card{
  overflow:hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}

.camper-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.12);
}

.camper-img{
  width:100%;
  height:310px;
  object-fit:cover;
  border-radius:10px;
  margin-bottom:12px;
  transition: transform .35s ease;
}

.camper-card:hover .camper-img{
  transform: scale(1.05);
}


/* =========================
   Footer
========================= */

.site-footer{
  margin-top:40px;
  background:#ffffff;
  border-top:1px solid var(--line);
}

.footer-inner{
  max-width:1220px;
  margin:auto;
  padding:18px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:14px;
  color:var(--muted);
}

.footer-links{
  display:flex;
  gap:18px;
}

.footer-links a{
  text-decoration:none;
  color:#111827;
  font-weight:600;
}

.footer-links a:hover{
  color:var(--primary);
}

/* HERO TITELBILD */

.hero{
  height:75vh;              /* Höhe des Bildes */
  min-height:1100px;

  background:url("../img/hintergrund.jpg") center center / cover no-repeat;
  background-attachment: fixed;   /* Bild bleibt beim Scrollen stehen */

  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  padding-bottom: 140px;
}

.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.35);
}

.hero-content{
  position:relative;
  text-align:center;
  color:white;
  padding:20px;
}

.hero-logo{
  width:280px;
  margin-bottom:20px;
}

.hero h1{
  font-size:40px;
  color:white;
}

.hero p{
  color:#e5e7eb;
  margin-bottom:24px;
}

/* Startseiten Layout */

.home-section{
  margin-top:22px;
}

.camper-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.price-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}

@media (max-width:900px){

  .camper-grid{
    grid-template-columns:1fr;
  }

  .price-grid{
    grid-template-columns:1fr 1fr;
  }

  .hero{
    height:360px;
  }

}


@media (max-width: 768px){

  .camper-grid{
    grid-template-columns:1fr;
  }

}

/* =========================
   Cookie Banner
========================= */

.cookie-banner{
  position:fixed;
  bottom:0;
  left:0;
  width:100%;
  background:#111827;
  color:white;
  padding:14px;
  z-index:9999;
}

.cookie-content{
  max-width:1220px;
  margin:auto;
  display:flex;
  gap:20px;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
}

.cookie-content p{
  margin:0;
  font-size:14px;
}

.cookie-content a{
  color:#93c5fd;
  text-decoration:none;
}

.cookie-content button{
  background:var(--primary);
  border:none;
  color:white;
  padding:10px 16px;
  border-radius:8px;
  cursor:pointer;
  font-weight:700;
}

.cookie-content button:hover{
  background:var(--primary-dark);
}

/* Cookie Settings Button */

.cookie-settings-btn{
  position:fixed;
  bottom:20px;
  left:20px;
  width:48px;
  height:48px;
  border-radius:50%;
  border:none;
  background:var(--primary);
  color:white;
  font-size:22px;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 6px 16px rgba(0,0,0,0.2);
  z-index:9998;
}

.cookie-settings-btn:hover{
  background:var(--primary-dark);
}

/* Formular Datenschutz Hinweis */

.form-disclaimer{
  font-size:13px;
  color:var(--muted);
  line-height:1.45;
  margin:10px 0 14px 0;
}

.form-disclaimer a{
  color:var(--primary);
  text-decoration:none;
  font-weight:600;
}

.form-disclaimer{
  grid-column: 1 / -1;
  width: 100%;
  max-width: none;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
  margin: 10px 0 14px 0;
}


.form-disclaimer a:hover{
  text-decoration: underline;
}

/* Hauptbild */

.camper-main-img{
  width:100%;
  height:240px;
  object-fit:cover;
  border-radius:10px;
  margin-bottom:10px;
  cursor:pointer;
}

/* Thumbnail Galerie */

.camper-gallery{
  display:flex;
  gap:8px;
  margin-bottom:12px;
}

.camper-thumb{
  width:70px;
  height:55px;
  object-fit:cover;
  border-radius:6px;
  cursor:pointer;
  border:2px solid transparent;
  transition:all .2s ease;
}

.camper-thumb:hover{
  transform:scale(1.05);
}

/* aktives Bild */

.camper-thumb.active{
  border-color:var(--primary);
}

/* LIGHTBOX */

.lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.9);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:10000;
}

.lightbox img{
  max-width:90%;
  max-height:90%;
  border-radius:10px;
}

.lightbox-close{
  position:absolute;
  top:20px;
  right:30px;
  font-size:30px;
  color:white;
  cursor:pointer;
}

/* Thumbnail Slider */

.thumb-wrapper{
  display:flex;
  align-items:center;
  gap:6px;
  margin-bottom:12px;
}

.camper-gallery{
  display:flex;
  gap:8px;
  overflow:hidden;
  scroll-behavior:smooth;
}

.camper-thumb{
  width:70px;
  height:55px;
  object-fit:cover;
  border-radius:6px;
  cursor:pointer;
  border:2px solid transparent;
  flex-shrink:0;
  transition:all .2s ease;
}

.camper-thumb.active{
  border-color:var(--primary);
}

.thumb-arrow{
  border:none;
  background:#f3f4f6;
  width:30px;
  height:30px;
  border-radius:50%;
  cursor:pointer;
  font-size:18px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.thumb-arrow:hover{
  background:#e5e7eb;
}

/* LIGHTBOX */

.lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.92);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:10000;
}

.lightbox img{
  max-width:92%;
  max-height:92%;
  border-radius:10px;
}

.lightbox-close{
  position:absolute;
  top:20px;
  right:30px;
  font-size:32px;
  color:white;
  cursor:pointer;
}

.lightbox-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  border:none;
  background:rgba(255,255,255,0.2);
  color:white;
  font-size:30px;
  width:50px;
  height:50px;
  border-radius:50%;
  cursor:pointer;
}

.lightbox-arrow.left{
  left:30px;
}

.lightbox-arrow.right{
  right:30px;
}

.lightbox-arrow:hover{
  background:rgba(255,255,255,0.35);
}

html, body{
  height:100%;
}

body{
  display:flex;
  flex-direction:column;
  min-height:100vh;
}

.booking-wrapper{
  flex:1;
}

/* =========================
   Footer
========================= */

.site-footer{
  margin-top:40px;
  border-top:1px solid var(--line);
  background:#ffffff;
}

.footer-inner{
  max-width:1220px;
  margin:auto;
  padding:18px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
}

.footer-left{
  font-size:14px;
  color:var(--muted);
}

.footer-links{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

.footer-links a{
  text-decoration:none;
  font-size:14px;
  font-weight:600;
  color:#111827;
}

.footer-links a:hover{
  color:var(--primary);
}

/* Hamburger Menü */

.hamburger{
  display:none;
  font-size:26px;
  background:none;
  border:none;
  cursor:pointer;
}

/* Mobile Navigation */

@media (max-width: 800px){

  .hamburger{
    display:block;
  }

  .nav-menu{
    position:absolute;
    top:70px;
    right:20px;
    background:white;
    border-radius:10px;
    box-shadow:0 8px 24px rgba(0,0,0,0.1);
    flex-direction:column;
    gap:12px;
    padding:16px;
    display:none;
  }

  .nav-menu a{
    display:block;
  }

  .nav-menu.show{
    display:flex;
  }

}


/* FAQ */

.faq-item{
  border-top:1px solid var(--line);
}

.faq-question{
  width:100%;
  text-align:left;
  background:none;
  border:none;
  padding:16px 0;
  font-size:16px;
  font-weight:700;
  cursor:pointer;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.faq-question::after{
  content:"+";
  font-size:20px;
}

.faq-item.active .faq-question::after{
  content:"–";
}

.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .3s ease;
}

.faq-answer p{
  margin:0 0 16px 0;
  color:var(--muted);
}

/* WhatsApp Button */

.whatsapp-button{
  position:fixed;
  bottom:90px;
  right:20px;
  width:56px;
  height:56px;
  border-radius:50%;
  background:#25D366;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 6px 16px rgba(0,0,0,0.25);
  z-index:9998;
}

.whatsapp-button img{
  width:30px;
  height:30px;
}

.whatsapp-button:hover{
  transform:scale(1.08);
}

/* Telefon Button */

.call-button{
  position:fixed;
  bottom:160px;
  right:20px;
  width:56px;
  height:56px;
  border-radius:50%;
  background:#2f6fed;
  color:white;
  font-size:26px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  box-shadow:0 6px 16px rgba(0,0,0,0.25);
  z-index:9998;
}

.call-button:hover{
  transform:scale(1.08);
}



.btn-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  color:inherit;
  min-height:44px;
  padding:12px 18px;
  color: #255bd1;
}

a.btn-secondary,
a.btn-secondary:visited,
a.btn-secondary:hover,
a.btn-secondary:active{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  background:var(--primary);
  color:#fff;
  text-decoration:none;
  border-radius:10px;
  font-weight:700;
}

.contact-section{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:22px;
  align-items:start;
}

.contact-box,
.contact-column{
  height:100%;
}

.contact-column h2,
.contact-box h2{
  margin-bottom:10px;
}

.contact-column p,
.contact-box p{
  margin-bottom:18px;
  line-height:1.5;
}

.contact-form{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

.contact-form input,
.contact-form textarea{
  width:100%;
  padding:12px 14px;
  border:1px solid #d1d5db;
  border-radius:10px;
  font-size:15px;
  font-family:inherit;
  background:#fff;
  color:#111827;
}

.contact-form input:focus,
.contact-form textarea:focus{
  outline:none;
  border-color:#2f6fed;
  box-shadow:0 0 0 3px rgba(47,111,237,0.12);
}

.contact-form textarea{
  grid-column:1 / -1;
  resize:vertical;
  min-height:140px;
}

.contact-form button{
  grid-column:1 / -1;
  justify-self:start;
  background:#2f6fed;
  color:#fff;
  border:none;
  padding:12px 18px;
  border-radius:10px;
  font-size:15px;
  font-weight:600;
  cursor:pointer;
  transition:background 0.2s ease;
}

.contact-form button:hover{
  background:#255bd1;
}

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

  .contact-form{
    grid-template-columns:1fr;
  }
}

.contact-section{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
  align-items:start;
}

.contact-box,
.contact-column{
  height:100%;
}

.contact-column h2,
.contact-box h2{
  margin-bottom:10px;
}

.contact-column p,
.contact-box p{
  margin-bottom:18px;
  line-height:1.5;
}

.contact-form{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

.contact-form input,
.contact-form textarea{
  width:100%;
  padding:12px 14px;
  border:1px solid #d1d5db;
  border-radius:10px;
  font-size:15px;
  font-family:inherit;
  background:#fff;
  color:#111827;
}

.contact-form input:focus,
.contact-form textarea:focus{
  outline:none;
  border-color:#2f6fed;
  box-shadow:0 0 0 3px rgba(47,111,237,0.12);
}

.contact-form textarea{
  grid-column:1 / -1;
  resize:vertical;
  min-height:140px;
}

.contact-form button{
  grid-column:1 / -1;
  justify-self:start;
  background:#2f6fed;
  color:#fff;
  border:none;
  padding:12px 18px;
  border-radius:10px;
  font-size:15px;
  font-weight:600;
  cursor:pointer;
  transition:background 0.2s ease;
}

.contact-form button:hover{
  background:#255bd1;
}

.form-message{
  margin-bottom:16px;
  padding:12px 14px;
  border-radius:10px;
  font-size:14px;
  font-weight:600;
}

.form-message.success{
  background:#e8f7ec;
  color:#1f7a3d;
  border:1px solid #b9e3c6;
}

.form-message.error{
  background:#fdecec;
  color:#b42318;
  border:1px solid #f5c2c7;
}

.hp-field{
  position:absolute;
  left:-9999px;
  width:1px;
  height:1px;
  overflow:hidden;
}

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

  .contact-form{
    grid-template-columns:1fr;
  }
}

.contact-socials{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:10px;
}

.contact-socials a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:10px;
  background:#f3f4f6;
  color:#111827;
  text-decoration:none;
  font-weight:600;
  transition:all 0.2s ease;
}

.contact-socials a:hover{
  background:#2f6fed;
  color:#fff;
}

.contact-box a{
  color:inherit;
  text-decoration:none;
}

.contact-follow{
  margin:8px 0 10px;
  color:var(--muted);
}

.contact-socials{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:8px;
}

.contact-socials a{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:10px;
  background:#f3f4f6;
  color:#111827;
  text-decoration:none;
  font-weight:600;
  transition:all 0.2s ease;
}

.contact-socials a:hover{
  background:var(--primary);
  color:#fff;
}

.social-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:20px;
  height:20px;
}

.social-icon svg{
  width:20px;
  height:20px;
  fill:currentColor;
}

.camper-description {
  margin-top: 10px;
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}

.camper-description.hidden {
  display: none;
}

.calendar-legend {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 14px;
  padding-top: 6px;
  font-size: 14px;
  color: #4b5563;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.legend-color {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  display: inline-block;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.legend-free {
  background: #dcfce7;
}

.legend-booked {
  background: #fee2e2;
}

.quick-search{
  max-width: 1200px;
  margin: 24px auto;
  padding: 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(17,24,39,0.06);
}

.quick-search-form .qs-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 16px;
}

.quick-search-form .field{
  display: flex;
  flex-direction: column;
}

.quick-search-form label{
  font-weight: 600;
  margin-bottom: 8px;
}

.quick-search-form select,
.quick-search-form input[type="date"] {
  height: 44px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  padding: 0 12px;
  background: #fff;
  font: inherit;
  width: 100%;
}

.qs-actions{
  margin-top: 18px;
}

.quick-search-message{
  margin-top: 12px;
  color: #6b7280;
}

.vehicle-card.is-hidden-by-search{
  display: none !important;
}

.vehicle-card.search-match{
  outline: 2px solid #2f6fed;
  outline-offset: 2px;
}

@media (max-width: 900px){
  .quick-search-form .qs-grid{
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px){
  .quick-search-form .qs-grid{
    grid-template-columns: 1fr;
  }
}

.quick-search-wrap {
  max-width: 1200px;
  margin: -350px auto 24px auto;
  padding: 0 20px;
  position: relative;
  z-index: 20;
  display: flex;
  justify-content: center;
}

.quick-search {
  max-width: 720px;
  margin: 0 auto;
  padding: 20px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.12);
}