/* ===== OPTIMIERTER HERO SECTION V3 ===== */
.hero-section-v3 {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Hero Background - Vereinfacht */
.hero-background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 110%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay-modern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(5, 73, 14, 0.75) 0%,
        rgba(184, 158, 111, 0.4) 50%,
        rgba(5, 73, 14, 0.8) 100%
    );
}

/* Subtile floating dots */
.hero-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(239, 227, 184, 0.3);
    border-radius: 50%;
    animation: gentleFloat 8s ease-in-out infinite;
}

.dot-1 { top: 20%; left: 15%; animation-delay: 0s; }
.dot-2 { top: 40%; right: 20%; animation-delay: 2s; }
.dot-3 { bottom: 30%; left: 10%; animation-delay: 4s; }
.dot-4 { top: 60%; left: 60%; animation-delay: 6s; }
.dot-5 { bottom: 20%; right: 15%; animation-delay: 1s; }

@keyframes gentleFloat {
    0%, 100% { transform: translateY(0px); opacity: 0.3; }
    50% { transform: translateY(-20px); opacity: 0.6; }
}

/* Hero Content Container */
.hero-content-container {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 120px 0 80px;
}

.hero-content-main {
    color: white;
}

/* Wellness Tag - Vereinfacht */
.wellness-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 8px 20px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.wellness-tag:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.wellness-tag i {
    color: #efe3b8;
    font-size: 1.1rem;
}

/* Hero Titel - Cleaner */
.hero-title-main {
    font-family: 'Telegraf', sans-serif;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.title-small {
    display: block;
    font-size: 1.2rem;
    font-weight: 300;
    color: #efe3b8;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.title-large {
    display: block;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    color: white;
    margin-bottom: 0.3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.title-subtitle {
    display: block;
    font-size: 1.4rem;
    font-weight: 400;
    color: #b89e6f;
    font-style: italic;
}

/* Hero Description */
.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 500px;
}

/* Benefits Row - Horizontal Layout */
.hero-benefits-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.benefit-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    padding: 8px 15px;
    font-size: 0.85rem;
    font-weight: 500;
    color: white;
    transition: all 0.3s ease;
}

.benefit-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.benefit-badge i {
    color: #efe3b8;
    font-size: 1rem;
}

/* Hero Actions - Optimierte Buttons ohne Online-Buchung */
.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn-hero-primary,
.btn-hero-secondary {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 18px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
    min-width: 180px;
    text-align: center;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #b89e6f, #b69c45);
    color: white;
    box-shadow: 0 4px 15px rgba(184, 158, 111, 0.4);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(184, 158, 111, 0.6);
    color: white;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    color: white;
}

.btn-hero-primary i,
.btn-hero-secondary i {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.btn-hero-primary span,
.btn-hero-secondary span {
    font-size: 1rem;
    font-weight: 600;
    display: block;
}

.btn-hero-primary small,
.btn-hero-secondary small {
    font-size: 0.8rem;
    opacity: 0.9;
    font-weight: 400;
    display: block;
}

/* Trust Simple - Erweitert */
.hero-trust-simple {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    padding: 8px 0;
}

.trust-item i {
    color: #efe3b8;
    font-size: 1rem;
    width: 16px;
    text-align: center;
}

/* Hero Visual Area */
.hero-visual-area {
    text-align: center;
    position: relative;
}

.hero-logo-container {
    position: relative;
    margin-bottom: 3rem;
}

.hero-logo {
    max-width: 180px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.logo-ambient-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(184, 158, 111, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: gentleGlow 4s ease-in-out infinite alternate;
}

@keyframes gentleGlow {
    from { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    to { opacity: 0.6; transform: translate(-50%, -50%) scale(1.1); }
}

/* Info Cards */
.hero-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 20px;
    color: white;
    transition: all 0.3s ease;
}

.info-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.card-icon {
    width: 50px;
    height: 50px;
    background: #b89e6f;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.card-content h4 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.card-content p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Scroll Hint */
.hero-scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    z-index: 10;
}

.scroll-mouse {
    width: 25px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollAnimation 2s infinite;
}

@keyframes scrollAnimation {
    0% { top: 6px; opacity: 1; }
    50% { top: 20px; opacity: 0.3; }
    100% { top: 6px; opacity: 1; }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content-container {
        padding: 100px 0 60px;
    }
}

@media (max-width: 768px) {
    .hero-background {
        background-attachment: scroll;
    }

    .hero-content-container {
        padding: 80px 0 40px;
    }

    .title-large {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }

    .hero-benefits-row {
        justify-content: center;
    }

    .benefit-badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        justify-content: center;
        text-align: center;
    }

    .hero-trust-simple {
        justify-content: center;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-description {
        font-size: 1rem;
    }

    .wellness-tag {
        font-size: 0.8rem;
        padding: 6px 15px;
    }

    .title-small {
        font-size: 1rem;
    }

    .title-subtitle {
        font-size: 1.2rem;
    }
}
