/* Footer Styles */
footer {
    background: #000;
    color: #999;
    padding: 4rem 2rem 2rem;
    font-size: 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand p {
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.footer-section h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.footer-section p {
    margin-bottom: 0.75rem;
    line-height: 1.7;
    font-weight: 300;
}

.footer-section a {
    display: block;
    margin-bottom: 0.75rem;
    color: #999;
    text-decoration: none;
    transition: color 0.5s ease;
    font-weight: 400;
}

.footer-section a:hover {
    color: #FFAD00;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
}

footer p {
    margin-bottom: 0.5rem;
    font-weight: 300;
}

footer a {
    color: #999;
    text-decoration: none;
    margin: 0 1rem;
    transition: color 0.5s ease;
    font-weight: 400;
}

footer a:hover {
    color: #FFAD00;
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000;
    border-top: 1px solid rgba(255, 173, 0, 0.2);
    color: #ccc;
    padding: 1.5rem 2rem;
    z-index: 999;
    display: none;
    font-size: 1.05rem;
    font-weight: 300;
}

.cookie-notice.show {
    display: flex;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    width: 100%;
}

.cookie-text {
    flex: 1;
    line-height: 1.6;
}

.cookie-text a {
    color: #FFAD00;
    text-decoration: none;
    transition: color 0.5s ease;
}

.cookie-text a:hover {
    color: #FF9E00;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.7rem 1.8rem;
    background: #fff;
    border: 1px solid #fff;
    color: #000;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.4px;
    cursor: pointer;
    transition: all 0.5s ease;
    border-radius: 8px;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

.cookie-btn:hover {
    background: #f5f5f5;
    border-color: #f5f5f5;
}

.cookie-btn.secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ccc;
}

.cookie-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

    .cookie-btn {
        flex: 1;
    }
}
