/* ----------------------------------------------------------------------------------- */
/* Reception/styles.css */
/* ----------------------------------------------------------------------------------- */
body {
    background-color: black;
    color: aliceblue;
    font-family: Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.reception-page {
    font-family: Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 16px;
}

a, a:visited {
    color: #fff;
}

/* ----------------------------------------------------------------------------------- */
/* header and navigation  */
/* ----------------------------------------------------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    box-sizing: border-box;
    margin: 0;
    padding-top: 10px;
    padding-left: 15%;
    padding-right: 15%;
    background-color: #000;
}

.header-logo {
    flex: 1;
}

.header-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

img.logo {
    height: 90px;
    width: auto;
}

.header-navigation-container {
    display: flex;
    justify-content: right;
}

.navigation-small-screen {
    flex: 100px;
}

.navigation-large-screen {
}

.navigation a.nav-item-selected {
    color: orange;
}

/* ----------------------------------------------------------------------------------- */
/* body */
/* ----------------------------------------------------------------------------------- */
.body {
    padding-left: 15%;
    padding-right: 15%;
    padding-top: 110px;
    min-height: 75vh;
}

.home-hero {
    height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    text-shadow: -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000,
    1px 1px 0 #000;
    background-image: url('../images/hero-background-desk.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.home-hero h3 {
    font-size: 50px;
    margin: 0;
}

.home-hero p {
    font-size: 30px;
}

.home-hero a {
    display: inline-block;
    padding: 0.6em 1.2em;
    background-color: #007BFF;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.home-hero a {
    background-color: #0056b3;
}

/* ----------------------------------------------------------------------------------- */
/* footer  */
/* ----------------------------------------------------------------------------------- */
.footer {
    padding-left: 15%;
    padding-right: 15%;
}

.footer-content {
    text-align: right;
}

a.footer-link {
    color: gray;
}

/* ----------------------------------------------------------------------------------- */
/* Forms and validation */
/* ----------------------------------------------------------------------------------- */
.register-user-form-container, .login-user-form-container, .contact-form-container, .forgot-password-form-container, .reset-password-form-container {
    display: block;
    padding-left: 30%;
    padding-right: 30%;
    font-size: 14px;
}

.register-user-form, .login-user-form, .contact-form, .forgot-password-form, .reset-password-form {
    display: block;
    padding: 10px 10%;
    border: 1px solid;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

input.input-validation-error, select.input-validation-error, textarea.input-validation-error {
    color: #b00020;
    border-color: #e74c3c;
    background-color: #fff0f0;
}

.form-button {
    color: white;
    background-color: #1c8b37;
    border-color: #fff;
}

.form-button:hover {
    font-weight: bold;
}

.field-validation-error {
    color: #e74c3c;
}

/* ----------------------------------------------------------------------------------- */
/* Media queries */
/* ----------------------------------------------------------------------------------- */
/* xs - mobile portrait 575px */
/* medium - tablet 768px */
@media screen and (max-width: 768px) {
    .header, .body, .footer {
        padding-left: 10px;
        padding-right: 10px;
    }

    .register-user-form-container, .login-user-form-container, .contact-form-container, .forgot-password-form-container, .reset-password-form-container {
        padding-left: 0;
        padding-right: 0;
    }

    .register-user-form, .login-user-form, .contact-form, .forgot-password-form, .reset-password-form {
        padding: 10px 10px;
    }
}
