:root {
    --default-font: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Marcellus", sans-serif;
    --poppins-font: "Poppins", sans-serif;

}

/* Reset and Base Styles */
:root {
    --primary-color: #1a73e8;
    --primary-hover: #1557b0;
    --default-color: #6c757d;
    --secondary-color: #6c757d;
    --secondary-hover: #5a6268;
    --success-color: #28a745;
    --success-hover: #218838;
    --error-color: #c90000;
    --border-color: #ddd;
    --white-color: white;
    --text-color: #333;
    --text-light: #555;
    --star-color: #ffbf00;
    /* Default color used for the majority of the text content across the entire website */
    --heading-color: #2c4964;
    /* Color for headings, subheadings and title throughout the website */
    --accent-color: #64BEB6;
    --dark-color: #081e33;
}

.all-cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 20px;
}

.all-cookie-modal.show {
    display: flex;
}

.all-cookie-content {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    max-width: 1200px;
    width: 95%;
    text-align: center;
    position: relative;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
}

.all-cookie-content h2 {
    color: var(--heading-color);
    font-family: var(--heading-font);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.all-cookie-content p {
    margin-bottom: 1.5rem;
    color: var(--text-color);
    font-family: var(--poppins-font);
    font-size: 0.90rem;
    line-height: 1.6;
    font-weight: bold;
}

a {
    color: var(--primary-color);

    text-decoration: none;
    text-decoration: underline;

    font-size: 14px;
}

a:hover {
    color: var(--dark-color);

}

.all-cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.all-cookie-buttons button {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 100px;
}

.all-cookie-modal .accept-cookies {
    color: white;
    background-color: var(--heading-color);
}

.all-cookie-modal .decline-cookies {
    background-color: var(--heading-color);
    color: white;
}

.all-cookie-modal .decline-cookies:hover {
    background-color: var(--error-color);
    color: white;
}

.all-cookie-modal .accept-cookies:hover {
    background-color: var(--success-color);
    color: var(--white-color);
}

/* Responsive styles */
@media (max-width: 480px) {
    .all-cookie-content {
        padding: 1.5rem;
        width: 85%;
    }

    .all-cookie-content h2 {
        font-size: 1.3rem;
    }

    .all-cookie-content p {
        font-size: 0.85rem;
    }

    .all-cookie-buttons button {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
}