/* Styles für die Startseite */

/* Vollbild-Carousel */
.fullscreen-carousel {
    position: relative;
    height: 70vh;
    overflow: hidden;
}

.fullscreen-carousel-container {
    height: 100%;
}

.carousel-item {
    height: 70vh;
    background-position: center;
    background-size: cover;
}

.carousel-item img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.carousel-caption {
    bottom: 20%;
    z-index: 2;
}

.carousel-caption h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.carousel-caption p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Scroll-Down-Indikator */
.scroll-down-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 2rem;
    cursor: pointer;
    animation: bounce 2s infinite;
    z-index: 3;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-30px);
    }
    60% {
        transform: translateY(-15px);
    }
}

/* Content Sections */
.content-section {
    padding: 5rem 0;
}

/* Divider */
.divider-custom {
    margin: 1.25rem 0 1.5rem;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.divider-line {
    width: 100%;
    max-width: 7rem;
    height: 0.25rem;
    background-color: var(--primary-color);
    border-radius: 1rem;
    margin: 0 1rem;
}

.divider-icon {
    font-size: 2rem;
    color: var(--primary-color);
}

/* Features List */
.features-list {
    list-style: none;
    padding-left: 0;
}

.features-list li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.feature-box {
    transition: transform 0.3s ease-in-out;
    background-color: white;
}

.feature-box:hover {
    transform: translateY(-5px);
}

/* Stadt-Kategorie Styles */
.city-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.city-category-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.city-category-card:hover {
    transform: translateY(-10px);
}

.city-category-image {
    height: 250px;
    object-fit: cover;
}

.city-category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem;
    color: white;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .carousel-caption h2 {
        font-size: 2.5rem;
    }
    
    .carousel-caption p {
        font-size: 1.2rem;
    }
    
    .content-section {
        padding: 3rem 0;
    }
    
    .city-section {
        padding: 3rem 0;
    }
    
    .city-category-image {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .carousel-caption h2 {
        font-size: 2rem;
    }
    
    .carousel-caption p {
        font-size: 1rem;
    }
    
    .content-section {
        padding: 2rem 0;
    }
    
    .city-section {
        padding: 2rem 0;
    }
    
    .city-category-image {
        height: 180px;
    }
}
