﻿ /* COOKIE BANNER */

#cookie-banner{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    padding: 20px;
}

.cookie__inner{
    background: #ffffff;
    max-width: 760px;
    width: 100%;
    border-radius: 10px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.25);
}

.cookie__text{
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 25px;
}

.cookie__text strong{
    display: block;
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.cookie__text a{
    color: #c5a059;
    text-decoration: underline;
}

.cookie__actions{
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie__btn{
    border: none;
    padding: 14px 22px;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 6px;
    transition: 0.25s;
    font-weight: 600;
}

.cookie__btn:hover{
    opacity: 0.9;
}

.cookie__btn--accept{
    background: #1a2e35;
    color: white;
}

.cookie__btn--necessary{
    background: #c5a059;
    color: white;
}

.cookie__btn--decline{
    background: #e5e5e5;
    color: #333;
}


/* FOOTER */

.footer-row{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-row a{
    color: #1a2e35;
    text-decoration: none;
}

.footer-row a:hover{
    text-decoration: underline;
}
