/* ===== MODULAR FOOTER STYLES ===== */

/* Modular Footer */
.modular-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100vw;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: auto;
    transform: translateY(0);
    opacity: 1;
    margin: 0;
    padding: 0;
}

.modular-footer.visible {
    transform: translateY(0);
    opacity: 1;
}

.footer-container {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

/* Footer Navigation Links */
.footer-navigation {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    flex: 1;
    flex-wrap: nowrap;
    min-width: 0;
}

.footer-nav-link {
    font-family: "header1", sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    color: white;
    text-decoration: none;
    letter-spacing: 0.02em;
    cursor: cell !important;
    white-space: nowrap;
    flex-shrink: 0;
}

.footer-social {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: flex-start;
    flex: 1;
}

.footer-link {
    font-family: "header1", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: white;
    text-decoration: none;
    letter-spacing: 0.02em;
}

/* SVG Icon Styles */
.footer-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.footer-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    flex: 1;
    justify-content: flex-end;
}

.footer-copyright {
    font-family: "header1", sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.02em;
}

.footer-designer {
    font-family: "header1", sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.02em;
}

.designer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 1000px) {
    .footer-nav-link {
        font-size: 0.75rem;
    }
    
    .footer-navigation {
        gap: 15px;
    }
}

@media (max-width: 800px) {
    .footer-container {
        padding: 15px 20px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-navigation {
        gap: 20px;
        order: 1;
        justify-content: center;
        flex: none;
        flex-wrap: wrap;
    }
    
    .footer-social {
        gap: 20px;
        order: 2;
        justify-content: center;
        flex: none;
    }
    
    .footer-info {
        align-items: center;
        gap: 6px;
        order: 3;
        flex: none;
    }
    
    .footer-nav-link {
        font-size: 0.9rem;
    }
    
    .footer-link {
        font-size: 0.9rem;
    }
    
    .footer-copyright {
        font-size: 0.8rem;
    }
    
    .footer-designer {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .footer-navigation {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-social {
        gap: 15px;
    }
    
    .footer-nav-link {
        font-size: 0.8rem;
    }
    
    .footer-link {
        font-size: 0.8rem;
    }
    
    .footer-copyright {
        font-size: 0.7rem;
    }
    
    .footer-designer {
        font-size: 0.6rem;
    }
    
    /* Change footer positioning for scrollable pages on mobile */
    .modular-footer.scrollable-page {
        position: relative;
        height: auto;
        min-height: 60px;
        margin-top: 40px; /* Add space above footer */
    }
    
    /* Keep fixed positioning for main landing page */
    .modular-footer:not(.scrollable-page) {
        position: fixed;
        height: auto;
        min-height: 60px;
    }
    
    .footer-container {
        padding: 10px 15px;
    }
}

/* Ensure the footer doesn't interfere with existing tour-footer styles */
.tour-footer {
    display: none; /* Hide the old footer when using modular footer */
}

/* Ensure crosshair cursor on non-clickable footer elements */
.modular-footer,
.footer-container,
.footer-content,
.footer-social,
.footer-info,
.footer-copyright,
.footer-designer {
    cursor: crosshair !important;
}

/* Clickable footer elements should show cell cursor */
.footer-link,
.designer-link {
    cursor: cell !important;
}

/* Ensure seamless integration with page content */
.modular-footer {
    /* Remove debug borders - footer is working correctly */
} 