/**
 * GDPR Cookie Consent Banner Styles
 */

.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 3px solid #f2642b;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    padding: 20px 0;
    display: none;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.cookie-consent-banner.show {
    transform: translateY(0);
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-consent-text {
    flex: 1;
    min-width: 300px;
}

.cookie-consent-text h4 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 18px;
    font-weight: 600;
}

.cookie-consent-text p {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.cookie-consent-text a {
    color: #f2642b;
    text-decoration: underline;
}

.cookie-consent-text a:hover {
    color: #d4551f;
}

.cookie-consent-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-consent-buttons .btn {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-consent-buttons .btn-primary {
    background: #f2642b;
    color: #ffffff;
}

.cookie-consent-buttons .btn-primary:hover {
    background: #d4551f;
}

.cookie-consent-buttons .btn-secondary {
    background: #6c757d;
    color: #ffffff;
}

.cookie-consent-buttons .btn-secondary:hover {
    background: #5a6268;
}

/* YouTube Video Placeholder Styles */
.youtube-video-container {
    width: 100%;
    margin: 20px 0;
    position: relative;
}

.youtube-video-container iframe {
    width: 100%;
    min-height: 400px;
    border: none;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .youtube-video-container iframe {
        min-height: 300px;
    }
}

@media (max-width: 480px) {
    .youtube-video-container iframe {
        min-height: 250px;
    }
}

.youtube-consent-placeholder {
    position: relative;
    width: 100%;
    max-width: 100%;
    background: #000;
    border-radius: 4px;
    overflow: hidden;
}

.youtube-consent-placeholder img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.7;
}

.youtube-consent-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    text-align: center;
    color: #ffffff;
}

.youtube-consent-overlay .youtube-icon {
    font-size: 64px;
    margin-bottom: 20px;
    color: #ff0000;
}

.youtube-consent-overlay .youtube-icon i {
    color: #ff0000;
}

.youtube-consent-overlay h4 {
    margin: 0 0 15px 0;
    font-size: 20px;
    font-weight: 600;
}

.youtube-consent-overlay p {
    margin: 0 0 20px 0;
    font-size: 14px;
    line-height: 1.6;
    max-width: 500px;
}

.youtube-consent-overlay .btn {
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    background: #f2642b;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.youtube-consent-overlay .btn:hover {
    background: #d4551f;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-consent-text {
        min-width: 100%;
    }

    .cookie-consent-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-consent-buttons .btn {
        width: 100%;
    }

    .youtube-consent-overlay {
        padding: 20px;
    }

    .youtube-consent-overlay .youtube-icon {
        font-size: 48px;
        margin-bottom: 15px;
    }

    .youtube-consent-overlay .youtube-icon i {
        font-size: 48px;
    }

    .youtube-consent-overlay h4 {
        font-size: 18px;
    }

    .youtube-consent-overlay p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .cookie-consent-banner {
        padding: 15px 0;
    }

    .cookie-consent-content {
        padding: 0 15px;
    }

    .cookie-consent-text h4 {
        font-size: 16px;
    }

    .cookie-consent-text p {
        font-size: 13px;
    }

    .cookie-consent-buttons .btn {
        padding: 10px 15px;
        font-size: 13px;
    }
}

