/**
 * ========================================
 * HOMEPAGE - FRANZISKA IM MITTELPUNKT
 * Warme Teal-Farben statt Blau
 * ========================================
 */

/* PRIMARY COLOR: Warmes Teal/Türkis */
:root {
    --home-primary: #17a2b8;
    --home-primary-dark: #138496;
    --home-primary-light: #5bc0de;
}

/* Homepage specific carousel adjustments */
@media (max-width: 991px) {
    #carousel {
        display: none !important;
    }
}

/* ========================================
   HERO SECTION - MODERN & CLEAN
   ======================================== */

.header-carousel-item .carousel-caption {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
}

.header-carousel-item .carousel-caption-content {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    border-radius: 16px;
    padding: 2rem;
}

.header-carousel-item .carousel-caption h5 {
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    letter-spacing: 3px;
}

.header-carousel-item .carousel-caption h1 {
    font-weight: 800;
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.8);
    line-height: 1.2;
}

.header-carousel-item .carousel-caption p {
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
    font-size: 1.1rem;
}

/* Button mit Teal */
.header-carousel-item .btn-primary {
    background: var(--home-primary);
    border-color: var(--home-primary);
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(23, 162, 184, 0.4);
    transition: all 0.3s ease;
}

.header-carousel-item .btn-primary:hover {
    background: var(--home-primary-dark);
    border-color: var(--home-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(23, 162, 184, 0.5);
}

/* ========================================
   FRANZISKA HERO - DOMINANT & EINDRUCKSVOLL
   ======================================== */

.home-franziska-hero {
    background: #ffffff;
    padding: 6rem 0 !important;
}

/* Dominantes Bild mit Effekt */
.home-franziska-image-wrapper {
    position: relative;
    overflow: visible;
}

.home-franziska-image-wrapper img {
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    width: 100%;
    display: block;
}

.home-franziska-image-wrapper:hover img {
    transform: scale(1.02);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.25);
}

/* Slogan Badge - elegant platziert */
.home-franziska-badge {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--home-primary);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(23, 162, 184, 0.4);
    white-space: nowrap;
    z-index: 10;
}

.home-franziska-badge p {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
}

.home-franziska-badge i {
    font-style: italic;
    font-weight: 500;
}

/* Content Area */
.home-franziska-content h1 {
    font-weight: 900;
    color: #212529;
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.home-franziska-content h3 {
    color: var(--home-primary);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.home-franziska-content p.lead {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #495057;
}

/* ========================================
   EINHEITLICHER HINTERGRUND
   ======================================== */

.home-services-section,
.home-testimonial-section {
    background: #f8f9fa !important;
}

/* ========================================
   SERVICE CARDS - TEAL ACCENT
   ======================================== */

.home-services-section {
    padding: 5rem 0;
    border-top: 1px solid #e9ecef;
}

.home-service-card {
    background: #ffffff;
    border: 1px solid #e9ecef !important;
    border-radius: 16px !important;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.home-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--home-primary) !important;
}

.home-service-card .service-img {
    overflow: hidden;
    border-radius: 16px 16px 0 0 !important;
}

.home-service-card .service-img img {
    transition: transform 0.5s ease;
    border-radius: 16px 16px 0 0 !important;
}

.home-service-card:hover .service-img img {
    transform: scale(1.08);
}

.home-service-card .service-content {
    background: #ffffff !important;
    border-radius: 0 0 16px 16px !important;
    padding: 1.5rem !important;
}

.home-service-card h5 {
    font-weight: 700;
    color: #212529;
    transition: color 0.3s ease;
}

.home-service-card:hover h5 {
    color: var(--home-primary);
}

.home-service-card p {
    color: #6c757d;
    line-height: 1.6;
}

/* Button mit Teal */
.home-service-card .btn-primary {
    background: var(--home-primary);
    border-color: var(--home-primary);
    padding: 10px 25px;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(23, 162, 184, 0.3);
    transition: all 0.3s ease;
}

.home-service-card:hover .btn-primary {
    background: var(--home-primary-dark);
    border-color: var(--home-primary-dark);
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(23, 162, 184, 0.4);
}

/* ========================================
   TESTIMONIALS - NEUTRAL & CLEAN
   ======================================== */

.home-testimonial-section {
    padding: 5rem 0;
    border-top: 1px solid #e9ecef;
}

/* Titel */
.home-testimonial-section .section-title h1 {
    color: #212529 !important;
    font-weight: 800;
}

.home-testimonial-section .section-title h4 {
    color: #6c757d !important;
}

/* Clean Cards ohne Teal */
.home-testimonial-section .testimonial-inner {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 12px !important;
    padding: 2.5rem !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
}

.home-testimonial-section .testimonial-item:hover .testimonial-inner {
    transform: translateY(-8px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
    border-color: #dee2e6;
}

/* User Icon - neutral grau */
.home-testimonial-section .testimonial-icon {
    margin-bottom: 1.5rem !important;
    text-align: center;
}

.home-testimonial-section .testimonial-icon i {
    font-size: 4rem;
    color: #6c757d;
    opacity: 0.3;
}

/* Text lesbar */
.home-testimonial-section p {
    color: #495057 !important;
    font-size: 1.05rem;
    line-height: 1.8;
    font-style: italic;
}

.home-testimonial-section h5 {
    color: #212529 !important;
    font-weight: 700;
    margin-top: 1rem;
}

/* Sterne in GOLD statt Teal */
.home-testimonial-section .text-testimonial-star {
    color: #ffc107;
    font-size: 1rem;
}

/* Location Text */
.home-testimonial-section .text-physioheld-color-1-50 {
    color: #6c757d !important;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 992px) {
    .home-franziska-content h1 {
        font-size: 3rem;
    }

    .home-franziska-badge {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 1.5rem;
        display: inline-block;
    }

    .home-franziska-image-wrapper {
        margin-bottom: 3rem;
    }
}

@media (max-width: 768px) {
    .home-franziska-content h1 {
        font-size: 2.5rem;
    }

    .home-franziska-badge {
        font-size: 0.95rem;
        padding: 0.8rem 1.5rem;
    }

    .home-service-card {
        margin-bottom: 1.5rem;
    }

    .header-carousel-item .carousel-caption h1 {
        font-size: 2rem;
    }
}

/* ========================================
   FONT FAMILY
   ======================================== */

@media all {
    html, body, h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
        font-family: 'Raleway', cursive, 'Open Sans', sans-serif;
    }
}
