/* Cookie Consent Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--deep-navy); /* Matches footer/brand */
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: none; /* Hidden by default, shown via JS */
    font-family: var(--font-secondary);
}

.cookie-banner.visible {
    display: block;
    animation: slideUp 0.5s ease-out forwards;
}

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

.cookie-content {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 0 var(--container-padding);
}

.cookie-text {
    flex: 1 1 600px;
}

.cookie-text h3 {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.cookie-text p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.cookie-text a {
    color: var(--cyan);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-text a:hover {
    color: #ffffff;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: inherit;
}

.cookie-btn-accept {
    background-color: var(--electric-blue);
    color: #ffffff;
}

.cookie-btn-accept:hover {
    background-color: #0056b3; /* Darker shade of electric blue */
    transform: translateY(-2px);
}

.cookie-btn-decline {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #ffffff;
}

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

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cookie-text {
        flex: 1 1 auto;
    }
    
    .cookie-actions {
        width: 100%;
        justify-content: flex-end;
    }
    
    .cookie-btn {
        flex: 1;
        text-align: center;
    }
}
