/* Cookie Consent Banner Styling */
.consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-secondary);
    border-top: 2px solid var(--color-primary);
    color: var(--color-white);
    padding: 20px;
    z-index: 9999;
    display: none; /* Hidden by default */
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

.consent-banner.visible {
    display: block;
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.consent-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    text-align: center;
}

.consent-text {
    font-size: 0.95rem;
    line-height: 1.5;
}

.consent-text a {
    text-decoration: underline;
}

.consent-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-consent {
    padding: 10px 25px;
    font-size: 0.9rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.btn-accept {
    background-color: var(--color-primary);
    color: var(--color-white);
    border: none;
}

.btn-accept:hover {
    background-color: var(--color-primary-dark);
}

.btn-decline {
    background-color: transparent;
    color: var(--color-white);
    border: 1px solid var(--color-white);
}

.btn-decline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
    .consent-container {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
    
    .consent-text {
        max-width: 70%;
    }
}
