﻿/* Reset default margin and padding for body and wrapper */
body,
.wrapper {
    margin: 0;
    padding: 0;
}

/* Set minimum height for the wrapper to 100% of viewport height */
.wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Make the footer sticky to the bottom */
footer {
    margin-top: auto;
}

.header {
    background-color: #000;
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.logo {
    width: 100px;
    margin-right: auto;
}


.lang-switch {
    display: flex;
    align-items: center;
}

    .lang-switch .lang-link {
        color: #fff;
        text-decoration: none;
        margin-left: 10px;
        transition: opacity 0.3s ease;
        position: relative;
        padding-right: 16px;
    }

        .lang-switch .lang-link:after {
            content: "\f078";
            font-family: "FontAwesome";
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
        }

        .lang-switch .lang-link:hover {
            opacity: 0.8;
        }

/* Styling for the select button */
.client-type .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background-color: #000;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

    .client-type .btn i {
        margin-right: 5px;
    }

    .client-type .btn:hover {
        background-color: #ff0000;
    }

/* Styling for the client-type section */
.client-type {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

    .client-type h3 {
        margin-top: 20px;
    }

    .client-type p {
        margin-bottom: 20px;
    }

    .client-type .btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .client-type .btn i {
            margin-right: 5px;
        }

    .client-type .picture-pane {
        margin-top: 20px;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .client-type .picture-pane img {
            max-width: 100%;
            height: auto;
        }

/* Modern styling for the language switch buttons */
.lang-link {
    padding: 8px 16px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

    .lang-link:after {
        content: "\f078";
        font-family: "FontAwesome";
        position: absolute;
        right: 8px;
        top: 50%;
        transform: translateY(-50%);
    }

    .lang-link:hover {
        background-color: #ff0000;
    }

/* Sticky footer */
html, body {
    height: 100vh;
}

body {
    display: flex;
    flex-direction: column;
}

.wrapper {
    flex: 1;
}

footer {
    flex-shrink: 0;
}

#landing {
    background-image: url("Images/v748-toon-103.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: rgba(0, 0, 0, 0.5); /* Set the background color with transparency */
    height: 100vh; /* Set the height to 100% of the viewport height */
}
