:root {
            --gold: #c5a059;
            --gold-bright: #e5c17b;
            --dark-gray: #1a1a1a;
            --medium-gray: #2c2c2c;
            --light-text: #e0e0e0;
            --white: #ffffff;
        }
/* montserrat-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 300;
  src: url('../style/font/montserrat-v31-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* montserrat-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: url('../style/font/montserrat-v31-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* montserrat-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  src: url('../style/font/montserrat-v31-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
        * { box-sizing: border-box; }
        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--dark-gray);
            color: var(--light-text);
            margin: 0;
            scroll-behavior: smooth;
        }

        /* Hero Section */
        header {
            height: 80vh;
            background: linear-gradient(rgba(0,0,0,0.6), rgba(26,26,26,1)), 
                        url('../style/photo-1470229722913-7c0e2dbbafd3.avif'); 
            background-size: cover;
            background-position: center;
            display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 20px;
        }

        h1 { font-family: 'Oswald', sans-serif; font-size: clamp(3rem, 8vw, 5rem); color: var(--gold); text-transform: uppercase; margin: 0; letter-spacing: 4px; }
        .subtitle { font-size: 1.2rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 40px; color: var(--white); }

        .cta-button {
            background: linear-gradient(135deg, var(--gold), var(--gold-bright));
            color: #000; padding: 18px 40px; text-decoration: none; font-weight: bold; text-transform: uppercase; border-radius: 2px; transition: 0.3s;
        }
        .cta-button:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(197, 160, 89, 0.4); }

        /* Sections */
        section { padding: 80px 10%; max-width: 1400px; margin: auto; }
        h2 { font-family: 'Oswald', sans-serif; font-size: 2.5rem; color: var(--gold); text-transform: uppercase; border-bottom: 2px solid var(--gold); display: inline-block; margin-bottom: 40px; }

        .grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
        .info-card { background: var(--medium-gray); padding: 30px; border-top: 4px solid var(--gold); }

        .contact-container { background: #222; padding: 40px; border: 1px solid #444; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; }
        .contact-info a { color: var(--gold); text-decoration: none; font-size: 1.2rem; }

        /* Contact Box */
        .contact-container {
            background: #222;
            padding: 50px;
            border: 1px solid #444;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }
        /* MODAL STYLES */
        .modal {
            display: none; 
            position: fixed; 
            z-index: 1000; 
            left: 0; top: 0; width: 100%; height: 100%; 
            background-color: rgba(0,0,0,0.9); 
            overflow-y: auto;
        }
        .modal-content {
            background-color: #222;
            margin: 5% auto;
            padding: 40px;
            border: 1px solid var(--gold);
            width: 80%;
            max-width: 800px;
            color: var(--light-text);
            position: relative;
            line-height: 1.6;
        }
        .close-btn {
            position: absolute;
            top: 15px; right: 20px;
            color: var(--gold);
            font-size: 30px;
            font-weight: bold;
            cursor: pointer;
        }
        .modal h2 { margin-top: 0; font-size: 1.8rem; }

        footer { text-align: center; padding: 40px; background: #111; font-size: 0.9rem; color: #666; }
        .footer-link { color: #888; text-decoration: none; margin: 0 10px; cursor: pointer; }
        .footer-link:hover { color: var(--gold); }
        .amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
}
.amenity-item {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}
.amenity-item i {
    color: var(--gold);
    margin-right: 15px;
    width: 25px;
    text-align: center;
    font-size: 1.4rem;
}
.distanz-list {
    margin-top: 30px;
    border-top: 1px solid #444;
    padding-top: 20px;
}
.distanz-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #333;
}
.host-section {
    display: flex;
    align-items: center;
    gap: 50px;
    background: linear-gradient(135deg, #222, #1a1a1a);
    padding: 60px 40px;
    border-radius: 10px;
    border: 1px solid #333;
    margin-top: 40px;
}

.host-image {
    flex: 0 0 250px;
    height: 250px;
    border-radius: 50%;
    border: 4px solid var(--gold);
    overflow: hidden;
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.2);
}

.host-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.host-text {
    flex: 1;
}

.host-text h3 {
    font-family: 'Oswald', sans-serif;
    color: var(--gold);
    margin-top: 0;
    font-size: 1.8rem;
}

/* Mobile Optimierung für den Gastgeber */
@media (max-width: 768px) {
    .host-section {
        flex-direction: column;
        text-align: center;
    }
    .host-image {
        flex: 0 0 200px;
        width: 200px;
        height: 200px;
    }
}
/* Sticky Contact Bubble */
.sticky-contact-wrapper {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1500;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.contact-bubble {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5), 0 0 15px rgba(197, 160, 89, 0.4);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.contact-bubble:hover {
    transform: scale(1.1) rotate(5deg);
}

.contact-label {
    background: var(--medium-gray);
    color: var(--gold);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    border: 1px solid var(--gold);
    margin-right: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    pointer-events: none;
    opacity: 0;
    transform: translateX(20px);
    transition: 0.3s;
}

.sticky-contact-wrapper:hover .contact-label {
    opacity: 1;
    transform: translateX(0);
}
.booking-bubble {
    background: #003580; /* Das klassische Booking.com Blau */
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    transition: 0.3s;
    border: 2px solid #fff;
    margin-bottom: 10px;
}

.booking-bubble:hover {
    transform: scale(1.05);
    background: #004aad;
    box-shadow: 0 6px 20px rgba(0,0,0,0.5);
}

.booking-bubble i {
    font-size: 1.2rem;
}
/* Mobil-Anpassung */
@media (max-width: 768px) {
    .contact-bubble { width: 50px; height: 50px; font-size: 20px; }
    .contact-label { display: none; } /* Auf Mobile nur das Icon zeigen */
}