/*
 * THE CONSTELLATION - SIMPLE WORKING TEMPLATE
 * Built by Ace - Just works, no complexity
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0a0a1a, #1a0a2a, #2a0a3a);
    color: #ffffff;
    min-height: 100vh;
}

/* SIMPLE NAVIGATION THAT JUST WORKS */
.navigation {
    background: rgba(10, 10, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #64ffda;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: #64ffda;
    text-decoration: none;
}

.nav-logo:hover {
    color: #bb86fc;
}

.constellation-symbol {
    font-size: 1.5rem;
}

/* DESKTOP NAVIGATION - Simple horizontal links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.nav-link:hover {
    background: rgba(100, 255, 218, 0.1);
    color: #64ffda;
}

/* HAMBURGER MENU - Only show on mobile */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger-line {
    width: 25px;
    height: 2px;
    background: #64ffda;
    margin: 3px 0;
    transition: 0.3s;
}

/* MOBILE STYLES */
@media (max-width: 768px) {
    .navigation {
        padding: 1rem;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 26, 0.98);
        flex-direction: column;
        padding: 1rem 0;
        border-bottom: 1px solid #64ffda;
    }
    
    .nav-links.mobile-open {
        display: flex;
    }
    
    .nav-links li {
        width: 100%;
    }
    
    .nav-link {
        display: block;
        padding: 1rem;
        text-align: center;
        border-bottom: 1px solid rgba(100, 255, 218, 0.1);
        width: 100%;
    }
}

/* MAIN CONTENT SPACING */
main {
    padding-top: 80px;
}

/* SIMPLE FOOTER */
.site-footer {
    background: rgba(10, 10, 26, 0.8);
    border-top: 1px solid rgba(100, 255, 218, 0.2);
    padding: 2rem;
    text-align: center;
    margin-top: auto;
}

.site-footer p {
    color: #888;
    font-size: 0.9rem;
}

/* HAMBURGER ANIMATION */
.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}