/* Shared by / (cs) and /en/ (en) — keep both pages visually identical. */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #003840;
    background-image:
        radial-gradient(ellipse at 30% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 80%, rgba(0, 0, 0, 0.1) 0%, transparent 60%);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    text-align: center;
    padding: 2rem;
}

.logo {
    width: min(400px, 80vw);
    height: auto;
    filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.15));
    animation: fadeIn 1s ease-out;
}

.title {
    margin-top: 2rem;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 300;
    color: #fff;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    animation: fadeIn 1s ease-out 0.3s both;
}

.divider {
    width: 60px;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
    margin: 1.5rem auto;
    animation: fadeIn 1s ease-out 0.5s both;
}

.subtitle {
    font-size: clamp(0.85rem, 2vw, 1.1rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.15em;
    animation: fadeIn 1s ease-out 0.7s both;
}

.services {
    margin-top: 1.75rem;
    font-size: clamp(0.7rem, 1.6vw, 0.85rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.12em;
    line-height: 1.9;
    animation: fadeIn 1s ease-out 0.9s both;
}

.contact {
    display: inline-block;
    margin-top: 2.5rem;
    padding: 0.85rem 2.25rem;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color 0.25s ease, border-color 0.25s ease;
    animation: fadeIn 1s ease-out 1.1s both;
}

.contact:hover,
.contact:focus-visible {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.7);
}

/* Language switch sits outside the centered block so it never shifts the logo. */
.lang-switch {
    position: absolute;
    top: 1.5rem;
    right: 1.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    animation: fadeIn 1s ease-out 1.2s both;
}

.lang-switch a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color 0.2s ease;
}

.lang-switch a:hover,
.lang-switch a:focus-visible {
    color: rgba(255, 255, 255, 0.85);
}

.lang-switch [aria-current="page"] {
    color: #fff;
}

.lang-switch .sep {
    color: rgba(255, 255, 255, 0.25);
}

footer {
    padding: 1.5rem 2rem 2rem;
    text-align: center;
    font-size: 0.72rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.08em;
    line-height: 1.8;
    animation: fadeIn 1s ease-out 1.3s both;
}

footer a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: color 0.2s ease, border-color 0.2s ease;
}

footer a:hover,
footer a:focus-visible {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.6);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}
