/*
Theme Name: Liebis Custom Theme
Author: digitalewege
Version: 1.0
*/

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #fff;
    color: #333;
}

/* Header Styles */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-title {
    margin: 0;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.site-title a {
    text-decoration: none;
    color: #000;
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

.main-navigation a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    transition: color 0.3s;
}

.main-navigation a:hover {
    color: #000;
}

.menu-toggle {
    display: none;
}

/* Footer Styles */
.site-footer {
    background-color: #1a1a1a;
    color: #aaa;
    padding: 40px 20px;
    text-align: center;
    margin-top: auto;
}

.site-footer p {
    margin: 10px 0;
    font-size: 14px;
}

/* Basic response nav */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    .main-navigation ul {
        display: none; /* Simplified for now */
    }
}
