/* AKIM Landing Page - Basierend auf Original-Design */

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Variablen - AKIM Farbschema */
:root {
    --akim-bg: #8997B0;
    --akim-text: #3D4771;
    --akim-text-dark: #414D5C;
    --akim-header-text: #566473;
    --akim-header-bg: #ffffff;
    --akim-border: #c6d0da;
    --akim-hover: #5f6f81;
    --akim-white: #ffffff;
    --akim-orange: #D35F00;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', Calibri, Arial, sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: var(--akim-text);
    background-color: var(--akim-bg);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    line-height: 1.6;
}

/* Header - AKIM Style */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.header-bar {
    background-color: var(--akim-header-bg);
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--akim-border);
    padding: 0 20px;
}

.header-text {
    font-family: 'Lato', Arial, sans-serif;
    font-size: 1.5em;
    font-weight: 800;
    color: var(--akim-header-text);
    letter-spacing: 1.1px;
    text-align: center;
}

/* Main Container */
main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 40px;
}

.container {
    max-width: 700px;
    width: 100%;
}

/* Logo */
.logo-container {
    text-align: center;
    margin-bottom: 30px;
}

.logo {
    max-width: 200px;
    height: auto;
    box-shadow: 7px 7px 10px -5px rgba(51, 51, 51, 0.8);
}

/* Message Box */
.message-box {
    background-color: var(--akim-white);
    padding: 40px;
    border-radius: 5px;
    box-shadow: 7px 7px 15px -5px rgba(51, 51, 51, 0.5);
}

.message-box h1 {
    font-size: 1.8em;
    font-weight: 600;
    color: var(--akim-header-text);
    margin-bottom: 20px;
    text-align: center;
    letter-spacing: 1.2px;
}

.intro-text,
.outro-text {
    font-size: 1.1em;
    color: var(--akim-text-dark);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    line-height: 1.5;
}

.contact-intro {
    font-size: 1.1em;
    color: var(--akim-text-dark);
    margin-bottom: 25px;
    font-weight: 600;
}

/* Contact Section */
.contact-section {
    margin-bottom: 25px;
    padding-left: 10px;
}

.contact-item {
    margin-bottom: 20px;
}

.contact-item h2 {
    font-size: 1em;
    font-weight: 700;
    color: var(--akim-header-text);
    margin-bottom: 5px;
}

.contact-item p {
    font-size: 1em;
    color: var(--akim-text-dark);
}

.contact-item a {
    color: var(--akim-orange);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--akim-hover);
    text-decoration: underline;
}

.phone-link {
    color: var(--akim-text-dark);
    font-weight: 500;
}

.phone-link:hover {
    color: var(--akim-orange);
}

/* Signature */
.signature {
    font-size: 1.1em;
    color: var(--akim-text-dark);
    text-align: center;
    margin-top: 30px;
    line-height: 1.8;
}

.signature strong {
    font-weight: 700;
    color: var(--akim-header-text);
}

/* Language Link */
.language-link {
    text-align: center;
    margin-top: 25px;
    font-size: 1em;
}

.language-link a {
    color: var(--akim-orange);
    text-decoration: none;
    font-weight: 500;
}

.language-link a:hover {
    color: var(--akim-hover);
    text-decoration: underline;
}

/* Language Divider */
.language-divider {
    border: none;
    border-top: 2px solid var(--akim-border);
    margin: 40px 0;
}

/* Footer */
footer {
    background-color: var(--akim-header-bg);
    border-top: 1px solid var(--akim-border);
}

.footer-bar {
    padding: 15px 20px;
    text-align: center;
}

.footer-bar p {
    font-size: 0.85em;
    color: var(--akim-hover);
    letter-spacing: 0.5px;
}

/* Responsive - Tablets */
@media screen and (max-width: 768px) {
    .header-bar {
        height: 50px;
    }

    .header-text {
        font-size: 1.2em;
    }

    main {
        padding: 80px 15px 30px;
    }

    .logo {
        max-width: 160px;
    }

    .message-box {
        padding: 30px 25px;
    }

    .message-box h1 {
        font-size: 1.5em;
    }

    .intro-text,
    .outro-text,
    .contact-intro,
    .signature {
        font-size: 1em;
    }
}

/* Responsive - Mobile */
@media screen and (max-width: 480px) {
    .header-bar {
        height: 45px;
    }

    .header-text {
        font-size: 1em;
    }

    main {
        padding: 70px 10px 20px;
    }

    .logo-container {
        margin-bottom: 20px;
    }

    .logo {
        max-width: 140px;
    }

    .message-box {
        padding: 25px 20px;
    }

    .message-box h1 {
        font-size: 1.3em;
    }

    .intro-text,
    .outro-text,
    .contact-intro {
        font-size: 0.95em;
    }

    .contact-item h2 {
        font-size: 0.95em;
    }

    .contact-item p {
        font-size: 0.9em;
    }

    .signature {
        font-size: 0.95em;
    }
}
