.ml-auto {
    margin-left: auto !important;
}
@import url("https://fonts.googleapis.com/css2?family=Roboto&family=Roboto+Condensed");

@font-face {
    font-family: 'icons';
    src: url('icons.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

* {
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    font-family: "Roboto", sans-serif;
    font-variant-ligatures: none;
    margin: 0;
    padding: 0;
    color: #333333;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
}

a {
    color: rgba(0, 0, 0, 0.8);
    text-decoration: none;
}

#toolbar {
    padding: 0.5rem 0;
}

#header {
    border-bottom: 2px solid #dcdcdc;
    padding: 1rem 0;
}

#header .container {
    justify-content: space-between;
}

#header .icon {
    margin-right: 0.5rem;
}

#header .menu-item {
    font-family: "Roboto Condensed", sans-serif;
}

#content {
    background-color: #f5f5f5;
    padding: 2rem 0;
    flex: 1;
}

#content .container {
    background-color: #ffffff;
    padding: 2rem;
}



h1 {
    font-size: 2rem;
    font-weight: 500;
    margin: 0 0 1.5rem 0;
    padding-left: 1rem;
    border-left: 4px solid #fabe19;
    line-height: 1.2;
}

h2 {
    font-size: 1.25rem;
    font-weight: 500;
    margin: 1.5rem 0 1rem 0;
}

label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #333333;
}

input[type="text"],
input[type="number"],
input[type="email"],
input[type="tel"],
select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    margin-bottom: 1rem;
}

input[type="checkbox"] {
    margin-bottom: 1rem;
}

/* Euro symbol for number input */
.euro-input-wrapper {
    position: relative;
    display: inline-block;
}
.euro-input-wrapper::before {
    content: '€';
    position: absolute;
    left: 0.5em;
    top: 38%;
    transform: translateY(-50%);
    color: #888;
    font-size: 1em;
    pointer-events: none;
}
.euro-input-wrapper input[type="number"] {
    padding-left: 1.5em;
}

button {
    background-color: #fabe19;
    color: #000000;
    border: none;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 4px;
    font-family: inherit;
}

button:hover {
    background-color: #e5aa0f;
}

#footer-top {
    padding: 2rem 0;
}

#footer-top .site-logo {
    display: block;
    margin-left: auto;
}

#footer-social {
    color: #ffffff;
    background-color: #3d3d3d;
    padding: 1.5rem 0;
    text-align: left;
    font-size: 1rem;
    border-bottom: 3px solid #fabe19;
}

#footer-social .container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
}

#footer-social .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.8em;
    height: 1.8em;
    background-color: #fabe19;
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.2rem;
    transition: background-color 0.3s;
}

#footer-social .social-icon:hover {
    background-color: #e5aa0f;
}

#footer {
    color: #ffffff;
    background: #3d3d3d;
    padding: 3rem 0;
}

#footer .footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 3rem;
    align-items: start;
}

#footer h3 {
    color: #fabe19;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 1rem 0;
}

#footer .footer-date {
    margin: 0 0 0.5rem 0;
}

#footer .footer-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

#footer .footer-list li {
    margin-bottom: 0.5rem;
}

#footer .footer-list a {
    color: #ffffff;
    text-decoration: none;
}

#footer .footer-list a:hover {
    color: #fabe19;
}

#footer .footer-link {
    color: #ffffff;
    text-decoration: none;
    display: inline-block;
}

#footer .footer-link:hover {
    color: #fabe19;
}

#footer .footer-cta {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

#footer .btn-membership {
    background-color: #fabe19;
    color: #000000;
    padding: 1rem 2rem;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    display: inline-block;
    white-space: nowrap;
    transition: background-color 0.3s;
}

#footer .btn-membership:hover {
    background-color: #e5aa0f;
}

#bottom {
    background-color: #2d2d2d;
    color: rgba(255, 255, 255, 0.7);
    padding: 1.5rem 0;
    font-size: 0.85rem;
}

#bottom .container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

#bottom a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    text-transform: capitalize;
}

#bottom a:hover {
    color: #ffffff;
}

#bottom .copyright {
    margin-left: auto;
}

@media (max-width: 768px) {
    #footer .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    #footer .footer-cta {
        justify-content: center;
    }
    
    #bottom .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    #bottom .copyright {
        margin-left: 0;
    }
}

.banner {
    color: rgba(0, 0, 0, 0.6);
    background-color: #fabe19;
    font-size: .85rem;
}

.container {
    max-width: 1320px;
    position: relative;
    margin: auto;
    padding: 0 1rem;
}

.flex {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.text-line {
    margin-inline: 1rem;
}

.icon {
    font-family: "icons";
}

.invert {
    color: #fabe19;
}

.invert a {
    color: #fabe19;
}

.round {
    background-color: #333333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2em;
    height: 2em;
    min-width: 2em;
    min-height: 2em;
}

.site-logo {
    height: auto;
    width: 96px;
}
