/* Cookie Consent Banner Styling */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #111b31; /* Using primary color from custom.css */
    color: #fff;
    padding: 20px;
    z-index: 999999;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
    border-top: 1px solid #1f2d4d;
    opacity: 0;
    animation: slideUpBanner 0.5s forwards;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Onest", sans-serif;
}

@keyframes slideUpBanner {
    from {
        opacity: 0;
        transform: translateY(100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cookie-banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    width: 100%;
    gap: 30px;
    padding: 0 15px;
}

.cookie-text {
    flex: 1;
}

.cookie-text h3 {
    margin: 0 0 10px 0;
    font-size: 1.1rem;
    color: #fff;
    font-weight: 700;
}

.cookie-text p {
    margin: 0;
    font-size: 0.9rem;
    color: #e0e0e0;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
    align-items: center;
}

/* Custom button styles for the banner to match site but function independently */
.cookie-btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-transform: uppercase;
    font-family: inherit;
    white-space: nowrap;
}

.cookie-btn-accept {
    background-color: #03c9a8; /* Accent color */
    color: #fff;
}

.cookie-btn-accept:hover {
    background-color: #fff;
    color: #111b31;
}

.cookie-btn-decline {
    background-color: transparent;
    border: 1px solid #666;
    color: #ccc;
}

.cookie-btn-decline:hover {
    border-color: #fff;
    color: #fff;
    background-color: rgba(255,255,255,0.05);
}

@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: space-between;
    }

    .cookie-btn {
        flex: 1;
        text-align: center;
    }
}
