/* Color Palette */
:root {
    --yellow-gold: #FFCF50;
    --olive-green: #636F48;
    --light-green: #A5B465;
    --light-beige: #FDFAE2;
    --dark-gray: #333;
}

/* Remove Scrollbar */
html, body {
    overflow: hidden;
    height: 100%;
    margin: 0;
    padding: 0;
}

/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: var(--light-beige);
    color: var(--dark-gray);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh;
}

/* Header Navigation */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--olive-green);
    padding: 15px 20px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 2;
    z-index: 1000;
}

/* Logo */
.logo-container .logo {
    width: 120px;
	margin: 5px;
}

/* Navigation */
.nav-menu {
    display: flex;
    margin: 0 15px;
}

.nav-menu ul {
    display: flex;
    justify-content: center; /* Center items horizontally */
    align-items: center; /* Align items vertically */
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-menu ul li {
    margin: 0 15px;
}

.nav-menu ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

.nav-menu ul li a:hover {
    text-decoration: underline;
}

/* Mobile Menu Button */
.menu-toggle {
    display: none;
    background: var(--yellow-gold);
    border: none;
    color: white;
    font-size: 20px;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 5px;
}

/* Language Switcher inside Mobile Menu */
.mobile-language-switcher {
    display: block;
    margin-top: 10px;
}

.mobile-language-switcher .flag-icon {
    width: 30px;
    height: 20px;
    margin: 5px;
    cursor: pointer;
    border-radius: 3px;
}

/* Main Content */
.container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    margin-top: 80px;
}

.content {
    max-width: 600px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Typography */
h1 {
    color: var(--yellow-gold);
    font-size: 42px;
    margin-bottom: 10px;
}

p {
    font-size: 18px;
    margin-bottom: 15px;
}

/* Email */
.email {
    font-size: 16px;
    color: var(--olive-green);
}

.email a {
    color: var(--light-green);
    text-decoration: none;
    font-weight: bold;
}

/* Footer */
footer {
    background: var(--olive-green);
    color: white;
    padding: 15px 0;
    font-size: 14px;
    position: fixed;
    bottom: 0;
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
	header {
		display: flex;
		justify-content: space-between;
		align-items: center;
		background: var(--olive-green);
		padding: 15px 20px;
		position: fixed;
		width: 90%;
		top: 0;
		left: 0;
		z-index: 1000;
	}

    .menu-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
		margin: 20px 0;
        right: 0;
        background: var(--olive-green);
        width: 100%;
        text-align: center;
    }

    .nav-menu ul {
        flex-direction: column;
        width: 100%;
        padding: 0;
    }

    .nav-menu ul li {
        padding: 10px 0;
    }

    .nav-menu ul li a {
        display: block;
        width: 100%;
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-language-switcher {
        display: block;
    }
}
