:root {
    --font-main: 'Inter', sans-serif;
    --brand-blue: #265cd1;
    --brand-azure: #4cc6ff;
    --dark-bg: #0f172a;
    --white: #ffffff;
    --text-grey: #475569;
    --text-dark: #0f172a;
    --light-grey: #94a3b8;
    --star-gold: #fbbf24;
    --footer-text: #94a3b8;
    --hero-text: #94a3b8;
}

.modra {
    color: var(--brand-azure) !important;
}



/* ========================================================================== P A T I Č K A ========================================================================== */

.main-footer {
    background-color: var(--dark-bg);
    color: var(--footer-text);
    padding: 60px 0 0 0;
    width: 100%;
    font-family: 'Inter', sans-serif;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 2fr 1fr 1.3fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-column h3 {
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 24px 0;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.footer-logo-wrap { margin-bottom: 20px; display: block; }
.footer-svg-logo { height: 60px; width: auto; display: block; }

.footer-brand .footer-bio {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 16px 0;
    max-width: 360px;
}

.footer-author-name {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.01em;
}

.footer-nav ul { list-style: none; padding: 0; margin: 0; }
.footer-nav ul li { margin-bottom: 12px; }
.footer-nav ul li a {
    color: var(--footer-text);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s ease;
}
.footer-nav ul li a:hover { color: var(--brand-azure); }

.footer-contact-item { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; }
.footer-contact-icon { width: 40px; height: 40px; object-fit: contain; flex-shrink: 0; }

.footer-direct-link {
    color: var(--white); 
    text-decoration: none;
    font-size: 16px; 
    font-weight: 700; 
    transition: color 0.2s ease;
}
.footer-direct-link:hover { color: var(--brand-azure); text-decoration: underline; }

.footer-ico { font-size: 16px; color: var(--light-grey); margin: 32px 0 0 0; }

.footer-bottom {
    background-color: #0b111e;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-bottom-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p { font-size: 13px; color: var(--text-grey); margin: 0; }
.footer-credit { font-weight: 500; color: var(--text-grey) !important; }


@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .footer-bottom-container {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-top: 30px;
        padding-bottom: 40px;
    }
    .footer-brand {
        grid-column: span 1;
    }
    
    .footer-column h3 { font-size: 20px; }
    .footer-brand .footer-bio { font-size: 18px; }
    .footer-author-name { font-size: 20px; }
    .footer-nav ul li a { font-size: 20px; }
    .footer-direct-link { font-size: 20px; }
    .footer-ico { font-size: 20px; }
    .footer-bottom p { font-size: 16px; }
}

/* ========================================================================== C O O K I E S ========================================================================== */

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 850px;
    background: var(--dark-bg);
    color: var(--white);
    padding: 18px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    z-index: 99999;
    font-family: 'Inter', sans-serif;
}

.cookie-box { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; align-items: center; }
.cookie-text h3 { margin: 0 0 6px 0; font-size: 18px; }
.cookie-text p { margin: 0; font-size: 13px; color: var(--footer-text); max-width: 520px; }
.cookie-buttons { display: flex; gap: 10px; }

.btn { border: none; padding: 10px 14px; border-radius: 8px; cursor: pointer; font-size: 13px; }
.btn-accept { background: #22c55e; color: var(--white); }
.btn-reject { background: #ef4444; color: var(--white); }