/* ===============================
   GLOBAL / TYPO
   =============================== */
* {
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text",
                 "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
    margin: 0;
    background: #ffffff;
    color: #1d1d1f;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

/* ===============================
   HEADER
   =============================== */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 48px;
    border-bottom: 1px solid #e5e5e7;
	position: sticky;
    top: 0;
    z-index: 1000; /* liegt über Hero & Video */
    background: #fff;
}

/* ===============================
   HEADER LOGO
   =============================== */

.logo {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

/* Logo-Bild */
.logo-image {
    width: 44px;
    height: 44px;
    object-fit: contain;
    display: block;
}

/* Textblock rechts vom Logo */
.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Textblock nach unten */
    height: 44px;              /* exakt Logo-Höhe */
    line-height: 1;
}

/* Erste Zeile fett */
.logo-text strong {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 4px; /* 👈 kontrollierter Abstand */
}

.logo-text span {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.4px;
    color: #444;
}

/* Kein Hover-Effekt */
.logo-link:hover,
.logo-link:visited,
.logo-link:active {
    text-decoration: none;
    color: inherit;
}


.header nav a {
    margin-left: 28px;
    text-decoration: none;
    color: #515154;
    font-size: 14px;
}

/* ===============================
   HERO VIDEO
   =============================== */

.hero {
    position: relative;
    height: 520px;
    overflow: hidden;
}

/* Hintergrundbild */
.hero-bg {
    position: absolute;
    inset: 0;
    background: url('images/dlz.jpg') center / cover no-repeat;
    z-index: 1;
}

/* Video */
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    transition: opacity 1.2s ease;
}

/* Overlay */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    z-index: 3;
}

/* Text + Button */
.hero-content {
    position: relative;
    z-index: 4;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.hero-content h1 {
    color: #fff;
}

.hero-content p {
    margin-top: 12px;
    font-size: 18px;
    color: #f0f0f0;
    max-width: 720px;
}

.hero-button {
    margin-top: 28px;
    padding: 14px 36px;
    border: 2px solid #fff;
    border-radius: 14px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

/* ===============================
   CONTENT
   =============================== */
.container {
    max-width: 960px;
    margin: 70px auto;
    padding: 0 24px;
}

h1 {
    text-align: center;
    font-size: 34px;
    font-weight: 600;
    letter-spacing: .4px;
    margin-bottom: 8px;
}

h2 {
    text-align: center;
    font-weight: 400;
    font-size: 21px;
    color: #515154;
    margin-bottom: 34px;
}

.intro {
    max-width: 720px;
    margin: 0 auto 42px auto;
    font-size: 16px;
    line-height: 1.65;
    color: #6e6e73;
    text-align: center;
}

/* ===============================
   FORM
   =============================== */
.booking-form label {
    display: block;
    font-weight: 500;
    margin-top: 28px;
    font-size: 16px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    margin-top: 8px;
    padding: 16px 18px;
    font-size: 16px;
    border-radius: 14px;
    border: 1px solid #d2d2d7;
    background: #ffffff;
    transition: border-color .2s ease, box-shadow .2s ease;
}

/* Focus wie Apple */
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: #0071e3;
    box-shadow: 0 0 0 4px rgba(0,113,227,.15);
}

/* ===============================
   SELECT (Apple-like)
   =============================== */
.booking-form select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 52px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24'%3E%3Cpath fill='%236e6e73' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 14px;
}

/* ===============================
   GRID
   =============================== */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

/* ===============================
   CHECKBOXEN
   =============================== */
.checkbox-row {
    margin-top: 28px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 3px;
    accent-color: #0071e3; /* Apple Blau */
}

.checkbox-text {
    font-size: 16px;
    line-height: 1.5;
}

.checkbox-text small {
    display: block;
    margin-top: 6px;
    font-size: 14px;
    color: #6e6e73;
}

/* ===============================
   REQUIRED
   =============================== */
.required-hint {
    text-align: right;
    font-size: 14px;
    color: #6e6e73;
    margin-bottom: 18px;
}

.required-hint span,
.required {
    color: #d00;
    font-weight: 600;
}

/* ===============================
   PRICE
   =============================== */
.price {
    margin-top: 32px;
    font-size: 17px;
    font-weight: 500;
}

.price strong {
    font-weight: 600;
}

/* ===============================
   BUTTON
   =============================== */
button {
    margin-top: 44px;
    background: #0071e3;
    color: #fff;
    border: none;
    padding: 16px 42px;
    font-size: 16px;
    border-radius: 14px;
    cursor: pointer;
    transition: background .2s ease;
}

button:hover {
    background: #005bb5;
}

/* ===============================
   CTA BAND
   =============================== */
.cta-band {
    background: #5f5f5f;
    color: #fff;
    text-align: center;
    padding: 70px 20px;
    margin: 80px 0;
}

.cta-band h2 {
    color: #fff;
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 24px;
}

.cta-button-outline {
    display: inline-block;
    padding: 14px 36px;
    border: 2px solid #fff;
    border-radius: 14px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

/* ===============================
   FEATURES + PRICES
   =============================== */
.features-prices {
    max-width: 1000px;
    margin: 0 auto 90px auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.features h3,
.prices h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

.features ul {
    padding-left: 18px;
}

.features li {
    margin-bottom: 10px;
    color: #444;
}

.prices h4 {
    margin-top: 22px;
    margin-bottom: 8px;
    font-size: 16px;
}

.prices p {
    margin: 4px 0;
    color: #444;
}

/* ===============================
   FOOTER
   =============================== */
.site-footer {
    background: #9b9b9b;
    color: #fff;
    padding-top: 50px;
}

.footer-main {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px 40px 24px;
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.site-footer h4 {
    font-size: 14px;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.site-footer p {
    font-size: 14px;
    line-height: 1.6;
}

.social-icon {
    display: inline-block;
    width: 36px;
    height: 36px;
    background: #6f6f6f;
    color: #fff;
    text-align: center;
    line-height: 36px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
}

.footer-links {
    background: #8a8a8a;
    padding: 14px 24px;
    text-align: center;
}

.footer-links a {
    color: #fff;
    margin: 0 12px;
    text-decoration: none;
    font-size: 14px;
}

.footer-copy {
    background: #7d7d7d;
    text-align: center;
    padding: 12px;
    font-size: 13px;
}

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



@media (max-width: 720px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
    .header {
        padding: 18px 24px;
    }
	.features-prices {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .footer-main {
        flex-direction: column;
    }
}
