/* 
 * Main Theme CSS 
 * Specific styling out of style.css 
 */

/* Header & Nav */
.site-header {
    background-color: var(--color-white);
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.site-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
}
.site-branding .site-title a {
    color: var(--color-primary-dark);
    font-weight: 700;
    font-size: 1.8rem;
    font-family: var(--font-heading);
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 2rem;
}
.main-navigation a {
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text);
    position: relative;
    padding-bottom: 0.5rem;
}
.main-navigation a:hover {
    color: var(--color-primary);
}
.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--color-primary);
    transition: width 0.3s ease;
}
.main-navigation a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}
.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--color-primary-dark);
    margin: 5px 0;
    transition: 0.3s;
}

@media(max-width: 768px) {
    .menu-toggle { display: block; }
    .primary-menu-container {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        padding: 1rem;
    }
    .main-navigation.toggled .primary-menu-container {
        display: block;
    }
    .main-navigation ul {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Footer */
.site-footer {
    background-color: #222;
    color: #fff;
    padding: 4rem 0 2rem;
}
.footer-legal-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.footer-legal-nav a {
    color: #ccc;
    font-size: 0.9rem;
}
.footer-legal-nav a:hover {
    color: var(--color-accent);
}
.footer-banner-container {
    margin-bottom: 2rem;
}
.site-info {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    color: #888;
}
.site-info a {
    color: var(--color-accent);
}

/* GTranslate Plugin fixed positioning */
.gtranslate_wrapper  {
	position: fixed !important;
	left: 20px;
	bottom: 15px;
	z-index:9999;
}
