/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
    background-color: var(--color-white);
    color: var(--color-primary);
    font-family: var(--font-primary);
    font-size: 16px;
    padding: var(--spacing-3xl) 0 var(--spacing-xl) 0;
    border-top: var(--border-width) solid #ddd;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--spacing-xxl);
    margin-bottom: var(--spacing-xxl);
}

.footer-logo {
    flex: 1 1 180px;
}

.footer-logo img {
    width: 120px;
    margin-bottom: var(--spacing-sm);
}

.footer-logo p {
    font-weight: var(--font-weight-medium);
    line-height: 1.2;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    text-align: right;
}

.footer-nav ul li,
.footer-nav-item {
    margin-bottom: var(--spacing-sm);
}

.footer-nav a,
.footer-nav-link {
    color: var(--color-primary);
    text-decoration: none;
    font-family: var(--font-primary);
    font-weight: var(--font-weight-medium);
    font-size: 14px;
    text-transform: uppercase;
    transition: var(--transition-base);
}

.footer-nav a:hover,
.footer-nav-link:hover {
    text-decoration: underline;
    color: var(--color-accent);
}

.footer-contact p {
    margin-bottom: var(--spacing-sm);
    line-height: 1.6;
}

.footer-contact a {
    color: var(--color-primary);
    text-decoration: none;
}

.footer-social a {
    margin-right: var(--spacing-sm);
    display: inline-block;
}

.footer-social img {
    width: 20px;
    height: 20px;
    filter: grayscale(100%);
    transition: var(--transition-base);
}

.footer-social img:hover {
    filter: grayscale(0%);
}

.footer-bottom {
    text-align: right;
    font-size: 12px;
    color: #555;
}

.footer-bottom hr {
    margin-bottom: var(--spacing-sm);
    border: none;
    border-top: var(--border-width) solid #ccc;
}

/* ==========================================================================
   RESPONSIVE FOOTER LAYOUT
   ========================================================================== */

/* Mobile layout changes */
@media (max-width: 768px) {
    .footer-columns {
        flex-direction: column;
        gap: var(--spacing-xl);
    }
    
    /* Logo centered with top padding */
    .footer-logo {
        text-align: center;
        padding-top: 20px;
        order: 1;
        flex: none;
    }
    
    /* Navigation and Contact side by side */
    .footer-nav {
        order: 2;
        flex: 1;
    }
    
    .footer-contact {
        order: 3;
        flex: 1;
    }
    
    /* Create a container for nav and contact to sit side by side */
    .footer-nav,
    .footer-contact {
        width: calc(50% - var(--spacing-md));
        display: inline-block;
        vertical-align: top;
    }
    
    /* Adjust navigation alignment for mobile */
    .footer-nav ul {
        text-align: left;
    }
    
    /* Social icons centered below */
    .footer-social {
        order: 4;
        text-align: center;
        width: 100%;
        margin-top: var(--spacing-lg);
    }
    
    /* Footer bottom centered on mobile */
    .footer-bottom {
        text-align: center;
        margin-top: var(--spacing-lg);
    }
}

/* Extra small mobile screens */
@media (max-width: 480px) {
    .footer-inner {
        padding: 0 var(--spacing-lg);
    }
    
    .footer-columns {
        gap: var(--spacing-lg);
    }
    
    .footer-logo {
        padding-top: 20px;
    }
    
    .footer-logo img {
        width: 100px;
    }
    
    /* Stack nav and contact on very small screens if needed */
    .footer-nav,
    .footer-contact {
        width: calc(50% - var(--spacing-sm));
    }
    
    .footer-nav a,
    .footer-nav-link {
        font-size: 12px;
    }
    
    .footer-contact {
        font-size: 14px;
    }
}

/* ==========================================================================
   Cookie Consent Notice
   ========================================================================== */

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(44, 44, 44, 0.98);
    color: white;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

.cookie-notice p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

.cookie-notice a {
    color: var(--color-orange);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-notice a:hover {
    color: #ff9933;
}

.cookie-accept-btn {
    background: var(--color-orange);
    color: white;
    border: none;
    padding: 12px 30px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
}

.cookie-accept-btn:hover {
    background: #ff9933;
    transform: translateY(-2px);
}

.cookie-accept-btn:active {
    transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cookie-notice {
        padding: 15px;
    }
    
    .cookie-notice-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cookie-notice p {
        font-size: 13px;
    }
    
    .cookie-accept-btn {
        width: 100%;
        padding: 14px 20px;
    }
}

/* ==========================================================================
   Footer Styles
   ========================================================================== */