/* Package Cards Reinigung */
.package-card {
    background: var(--bg-card);
    border-radius: 15px;
    box-shadow: var(--shadow-card);
    padding: var(--spacing-xl);
    height: 100%;
    transition: transform var(--transition-normal);
    will-change: transform;
}

.package-card:hover {
    transform: translateY(-5px);
}

.package-card.premium {
    background: var(--gradient-primary);
    color: var(--text-light);
}

.package-title {
    font-size: 1.8rem;
    margin-bottom: var(--spacing-lg);
    text-align: center;
    color: var(--primary-color);
}

.premium .package-title {
    color: var(--text-light);
}

.package-features {
    list-style: none;
    padding: 0;
    margin-bottom: var(--spacing-xl);
}

.package-features li {
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
}

.package-features i {
    color: var(--primary-color);
    margin-right: var(--spacing-md);
}

.premium .package-features i {
    color: var(--text-light);
}

/* Price Table Reinigung*/
.price-table-container {
    margin-top: var(--spacing-xl);
}

.price-table {
    width: 100%;
    margin-bottom: 0;
}

.price-table th {
    background-color: rgba(107, 47, 186, 0.1);
    border: none;
}

.premium .price-table th {
    background-color: rgba(255, 255, 255, 0.1);
}

.price-table td {
    border: none;
    padding: var(--spacing-md);
}

.premium .price-table {
    color: var(--text-light);
}

/* CTA Section Products*/
.cta-section {
    background-color: var(--bg-card);
    padding: var(--spacing-xxl) var(--spacing-xl);
    border-radius: 15px;
    text-align: center;
    margin-top: var(--spacing-lg);
}

/* Feature Cards Products*/
.feature-card {
    background: var(--bg-card);
    padding: var(--spacing-xl);
    border-radius: 8px;
    box-shadow: var(--shadow-card);
    text-align: center;
    height: 100%;
    transition: transform var(--transition-normal);
    will-change: transform;
}

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

.feature-card i {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2rem;
    margin-bottom: var(--spacing-lg);
}

.feature-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.feature-card p {
    color: var(--text-primary);
    margin-bottom: 0;
}

/* Starlight Feature Cards */
.starlight-hero .hero-content {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.feature-card i.fa-star,
.feature-card i.fa-magic {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 2px rgba(255, 215, 0, 0.3));
}

/* Multimedia Feature Cards */
.multimedia-hero .hero-content {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.feature-card i.fa-tv,
.feature-card i.fa-volume-up,
.feature-card i.fa-wifi,
.feature-card i.fa-camera {
    background: linear-gradient(45deg, #2196F3, #00BCD4);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 2px rgba(33, 150, 243, 0.3));
}

/* Product Description */
.product-description {
    margin-bottom: var(--spacing-md);
    line-height: 1.5;
}

.product-description h2 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-xl);
}

.product-description .lead {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xl);
    color: var(--text-primary);
}

/* Dienstleistungen Grid */
.dienstleistungen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 350px));
    gap: 2rem;
    margin-top: 2rem;
    justify-content: center;
    padding: 0 1rem;
}

/* Produkt Karten */
.product-card {
    background: var(--bg-card);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    max-width: 350px;
    margin: 0 auto;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.product-card .product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-card .product-content {
    padding: 1.25rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
}

.product-card .product-description {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.5;
    flex-grow: 1;
    font-family: 'Poppins', sans-serif;
}

.product-card .product-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: 'Raleway', sans-serif;
}

.product-card .product-cta {
    background-color: #5f27cd;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    text-align: center;
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    transition: background-color 0.3s ease;
    align-self: stretch;
    border: none;
    box-shadow: 0 2px 4px rgba(95, 39, 205, 0.2);
}

.product-card .product-cta:hover {
    background-color: #4b1fa3;
    box-shadow: 0 4px 6px rgba(95, 39, 205, 0.3);
}

.d-none {
    display: none !important;
}

@media (max-width: 768px) {
    .product-card {
        max-width: 100%;
    }
    
    .product-card .product-image {
        height: 180px;
    }
    
    .product-card .product-content {
        padding: 1rem;
    }
}

/* Produkt Details Styling */
.product-details {
    background: rgba(108, 43, 217, 0.05);
    padding: var(--spacing-md);
    border-radius: 8px;
    margin-bottom: var(--spacing-md);
}

.product-info {
    margin-bottom: var(--spacing-sm);
    font-size: 0.9rem;
    color: #5e5e5e;
}

.product-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

select.form-select {
    background-color: #5f27cd;
    color: white;
    border: none;
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(95, 39, 205, 0.2);
    transition: background-color 0.3s ease;
    appearance: none;
}

select.form-select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(95, 39, 205, 0.5);
}

option {
    color: black; /* Für Lesbarkeit im Dropdown-Menü */
}

/* Einheitliche Höhe für Galerie-Bilder und -Videos auf der Ambientebeleuchtung-Seite */
.gallery-image {
    width: 100%;
    height: 750px; /* Standardhöhe für Desktop */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 16px;
    background: #000;
}

.gallery-image img,
.gallery-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

@media (max-width: 992px) {
    .gallery-image {
        height: 500px;
    }
}

@media (max-width: 600px) {
    .gallery-image {
        height: 500px;
    }
}

/* Nur für diese Galerie anwenden */
.sternenhimmel-gallery .gallery-image {
    height: 750px; /* oder deine Wunschhöhe */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sternenhimmel-gallery .gallery-image img,
.sternenhimmel-gallery .gallery-image video {
    height: 100%;
    width: auto;
    object-fit: cover;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .sternenhimmel-gallery .gallery-image {
        height: 500px;
    }
}

/* Nur für diese Galerie anwenden */
.aufbereitung-gallery .gallery-image {
    height: 500px; /* oder deine Wunschhöhe */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aufbereitung-gallery .gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .aufbereitung-gallery .gallery-image {
        height: 500px;
    }
}

.product-slider {
    position: relative;
    width: 100%;
    height: auto;
    padding: 0;
    margin-bottom: 1rem;
    border: none;
    background: none;
    box-shadow: none;
}

.slider-wrapper {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    height: 200px;
    transition: transform 0.5s ease;
}

.product-image {
    flex: 0 0 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    color: white;
    border: none;
    font-size: 1.5rem;
    padding: 0.3rem 0.6rem;
    cursor: pointer;
    z-index: 2;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.slider-prev:hover,
.slider-next:hover {
    background: rgba(0, 0, 0, 0.6);
}

.slider-prev {
    left: 8px;
}

.slider-next {
    right: 8px;
}

.slider-indicators {
    display: flex;
    justify-content: center;
    margin-top: 0.5rem;
    gap: 6px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #bbb; /* inaktiv */
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.slider-dot.active {
    background-color: #8b5cf6; /* deine Website-Farbe (Violett) */
}

.image-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.image-overlay img {
    max-width: 90%;
    max-height: 90%;
    box-shadow: 0 0 20px black;
    border-radius: 10px;
}

.close-overlay {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 3rem;
    color: white;
    cursor: pointer;
}

.overlay-slider {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 90vw;
    max-height: 90vh;
    overflow: hidden;
}

#overlay-slider-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}

#overlay-slider-wrapper img {
    flex: 0 0 100%;
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    object-position: center;
    margin: auto;
    display: block;
}
@media (min-width: 768px) {
    #overlay-slider-wrapper img {
        max-width: 90vw;
        max-height: 90vh;
    }
}

#overlay-prev,
#overlay-next {
    position: absolute;
    top: 50%;
    font-size: 3rem;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
    transform: translateY(-50%);
}

#overlay-prev { left: 10px; }
#overlay-next { right: 10px; }

#overlay-slider-dots {
    position: absolute;
    bottom: 15px;
    display: flex;
    gap: 10px;
}

#overlay-slider-dots .slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: white;
    opacity: 0.5;
    cursor: pointer;
}

#overlay-slider-dots .slider-dot.active {
    opacity: 1;
    background: purple;
}
