/*
Theme Name: Aliens with Love
Theme URI: https://example.org/aliens-with-love
Author: Jeremy Beers
Author URI: https://example.org
Description: A clean theme for Aliens with Love. Lightweight, responsive, and festival friendly.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: aliens-with-love
*/


:root{
--primary:#0b6e4f;
--accent:#9ad4c4;
--bg:#0e0e10;
--paper:#ffffff;
--muted:#9aa0a6;
}


html,body{height:100%;margin:0;font-family:Inter,system-ui,Helvetica,Arial,sans-serif;background:var(--bg);color:var(--paper)}


a{color:var(--accent);text-decoration:none}


.site-header{padding:24px 20px;text-align:center}
.site-title{font-weight:700;letter-spacing:0.02em}
.main-wrap{max-width:1100px;margin:0 auto;padding:28px}
.site-footer{padding:24px;text-align:center;font-size:0.95rem;color:var(--muted)}


.post{background:rgba(255,255,255,0.03);padding:18px;border-radius:10px;margin-bottom:18px}
.post-title{font-size:1.5rem;margin:0 0 8px}
.post-meta{font-size:0.85rem;color:var(--muted);margin-bottom:12px}

.nav {
    width: 100%;
}

.nav-menu {
    display: flex;               /* horizontal layout for desktop */
    justify-content: center;     /* center items horizontally */
    align-items: center;         /* vertical alignment */
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;                   /* space between menu items */
}

.nav-menu li {
    margin: 0;
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    background: none;
    border: none;
    color: var(--paper);
    cursor: pointer;
    margin-bottom: 8px;
}

/* Mobile dropdown */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    .nav-menu.show {
        display: flex;
    }
    .menu-toggle {
        display: block;
    }
}



.menu-toggle{display:none;font-size:1.8rem;background:none;border:none;color:var(--paper);cursor:pointer;margin:12px 0}


@media(max-width:768px){
}