﻿/* Import the Poppins font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

/* The main banner container, fixed to the bottom */
#cookie-consent-banner {
    display: none; /* Hidden by default, shown by JavaScript */
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #F8F9FA; /* Light grey background */
    color: #212529; /* Dark text color */
    padding: 20px;
    z-index: 9999;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    border-top: 1px solid #dee2e6;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
}

/* Flex container to align text and buttons */
.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
/* Style for any links within the banner text */
.cookie-text a {
    color: #ce8b82; /* Copper color for links */
    text-decoration: none;
}

    .cookie-text a:hover {
        text-decoration: underline;
    }

/* Container for the buttons */
.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

/* General button styling */
.cookie-btn {
    padding: 10px 20px;
    border: 2px solid #590b25; /* Main burgundy border */
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
/* "Decline" button (secondary) */
#cookie-decline-btn {
    background: transparent;
    color: #590b25; /* Burgundy text */
}

    #cookie-decline-btn:hover {
        background-color: #ce8b82; /* Copper hover */
        border-color: #ce8b82;
        color: #fff;
    }
/* "Accept" button (primary) */
#cookie-accept-btn {
    background-color: #590b25; /* Main burgundy background */
    border-color: #590b25;
    color: #fff; /* White text */
}

    #cookie-accept-btn:hover {
        background-color: #ce8b82; /* Copper hover */
        border-color: #ce8b82;
    }
/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        margin-top: 15px;
        width: 100%;
        justify-content: center;
    }
}
