﻿/* cookieConsent.css */

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
  /*  background-color: #8e7448;*/
    background-color: #3d2116;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(100%);
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

    .cookie-content p {
        margin: 0;
        flex: 1;
        min-width: 300px;
        font-size: 14px;
        line-height: 1.5;
    }

.cookie-link {
    color: #ffffff;
    text-decoration: underline;
    font-weight: 500;
}

    .cookie-link:hover {
        color: #e0e0e0;
    }

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

    .cookie-buttons button {
        padding: 10px 24px;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        font-size: 14px;
        font-weight: 500;
        transition: all 0.3s ease;
    }

.btn-accept {
    background-color: #ffffff;
   /* color: #8e7448;*/
    color: #3d2116;
}

    .btn-accept:hover {
        background-color: #e0e0e0;
    }

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

    .btn-reject:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: stretch;
    }

        .cookie-content p {
            min-width: auto;
            text-align: center;
        }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

        .cookie-buttons button {
            width: 100%;
        }
}
