/* --- SITE FOOTER --- */
.site-footer {
    width: 100%;
    padding: 60px 20px;
    background: linear-gradient(135deg, #007bff 0%, #28a745 100%);
    color: white;
    text-align: center;
    margin-top: auto; /* Pushes footer to bottom if page content is short */
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content p {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.7;
    text-decoration: underline;
}

/* --- BACK TO EDITOR BUTTON --- */
.back-to-home {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.back-to-home a {
    display: inline-block;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 24px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.back-to-home a:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* --- COOKIE BANNER --- */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(34, 34, 34, 0.98);
    color: #fff;
    padding: 20px;
    text-align: center;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.3);
}

#cookie-banner p { margin: 0; font-size: 0.9rem; }

#cookie-banner button {
    background: #28a745;
    color: white;
    border: none;
    padding: 8px 22px;
    cursor: pointer;
    border-radius: 20px;
    margin-left: 15px;
    font-weight: bold;
    transition: transform 0.2s ease;
}

#cookie-banner button:hover {
    background: #218838;
    transform: scale(1.05);
}