/* Footer Styles */
.site-footer {
    background-color: #000000;
    color: #ffffff;
    padding: 60px 0 20px;
    font-family: 'Gill Sans Thin', 'Gill Sans Light', 'Gill Sans Nova', sans-serif;
    position: relative;
    z-index: 100;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Main Footer Section */
.footer-main {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-logo img {
    margin-bottom: 20px;
    transition: opacity 0.3s ease;
}

.footer-logo img:hover {
    opacity: 0.8;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Headings */
.footer-col h3 {
    font-family: 'Gill Sans Thin', 'Gill Sans Light', 'Gill Sans Nova', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Lists */
.opening-hours,
.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.opening-hours li,
.contact-info li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    opacity: 0.9;
}

.opening-hours span {
    font-weight: 500;
    margin-right: 8px;
}

/* Links */
.footer-col a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #cccccc;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

/* Legal Section */
.footer-legal {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.legal-links {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.legal-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.legal-links a:hover {
    opacity: 1;
    color: #d4af37;
}

/* Copyright */
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    padding: 20px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-consent p {
    margin: 0;
    font-size: 0.9rem;
    flex: 1;
    min-width: 280px;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cookie-buttons button {
    padding: 8px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #ffffff;
    color: #000000;
}

.btn-reject {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-settings {
    background: transparent;
    color: #ffffff;
    text-decoration: underline;
}

.btn-accept:hover {
    background: #cccccc;
}

.btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-settings:hover {
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-col {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .legal-links {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .cookie-consent {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 40px 0 15px;
    }
    
    .footer-container {
        padding: 0 15px;
        text-align: center;
    }

    .footer-col h3 {
        font-size: 1.1rem;
    }

    .footer-description {
        font-size: 0.7rem;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .opening-hours li,
    .contact-info li {
        font-size: 0.7rem;
    }
    
    .social-links a {
        font-size: 1.3rem;
    }
    
    .legal-links a {
        font-size: 0.7rem;
    }
    
    .footer-bottom p {
        font-size: 0.65rem;
    }
    
    .cookie-consent p {
        font-size: 0.7rem;
    }
    
    .cookie-buttons button {
        font-size: 0.7rem;
    }
}
