/* Video Container Styles */
.video-section {
    margin: 2rem 0;
    padding: 1rem;
    background-color: #f8fbff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.video-section h2 {
    margin-bottom: 1rem;
    color: #2c5282;
    text-align: center;
}

/* Spezieller Stil für die hervorgehobenen Video-Überschriften */
.special-video-heading {
    background: linear-gradient(to right, #7ab51d, #5c8a17);
    color: white !important;
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

/* Stil für die Fragen-Box */
#ask-ai {
    background: linear-gradient(to right, #7ab51d, #5c8a17);
    border-radius: 10px;
    padding: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

#ask-ai h3 {
    color: white;
    margin-top: 0;
    text-align: center;
    font-size: 1.4em;
}

#ask-ai .form-control {
    background: white;
    border-radius: 8px;
    padding: 15px;
    margin-top: 15px;
}

#ask-ai .ai-disclaimer {
    margin-top: 15px;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 10px;
    border-radius: 8px;
}

#ask-ai .ai-disclaimer p {
    color: white !important;
    font-size: 0.9em;
}

.video-thumbnail-container {
    position: relative;
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-thumbnail-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.video-thumbnail-container img {
    width: 100%;
    height: auto;
    display: block;
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.video-play-button svg {
    width: 30px;
    height: 30px;
    fill: #3182ce;
}

.video-thumbnail-container:hover .video-play-button {
    background-color: rgba(255, 255, 255, 0.9);
}

/* Modal Dialog Styles */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    background-color: #000;
    border-radius: 8px;
    overflow: hidden;
}

.close-video {
    position: absolute;
    top: 10px;
    right: 15px;
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
}

.video-embed {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .video-thumbnail-container {
        max-width: 100%;
    }
    
    .video-play-button {
        width: 50px;
        height: 50px;
    }
    
    .video-play-button svg {
        width: 20px;
        height: 20px;
    }
    
    .video-modal-content {
        width: 95%;
    }
}

/* Trinity Animation Container */
.trinity-animation-container {
    margin: 2rem auto;
    text-align: center;
    max-width: 640px;
}

.trinity-animation {
    width: 100%;
    border-radius: 10px 10px 0 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: block;
}

.savings-banner {
    background: linear-gradient(to right, #7ab51d, #5c8a17);
    color: white;
    font-weight: bold;
    padding: 15px;
    text-align: center;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-size: 1.2em;
} 