/**
 * Under Construction Site Styles
 * Inspired by LenaPage design
 */

:root {
    --rose-500: #e88b6b;
    --rose-400: #f5b89e;
    --rose-300: #ffe6d6;
    --plum-600: #7a3b46;
    --hero-strong: #ff9a4d;
    --cream: #fff6ee;
    --charcoal: #2d1c26;
    --white: #ffffff;
    --shadow: rgba(45, 28, 38, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--cream);
    color: var(--charcoal);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    line-height: 1.6;
}

/* Language Selector */
.lang-selector {
    position: fixed;
    top: 1rem;
    right: 1rem;
    display: flex;
    gap: 0.5rem;
    z-index: 100;
    background: var(--white);
    padding: 0.5rem;
    border-radius: 2rem;
    box-shadow: 0 2px 12px var(--shadow);
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.4rem 0.8rem;
    border: none;
    background: transparent;
    border-radius: 1.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    font-size: 0.85rem;
    color: var(--charcoal);
}

.lang-btn:hover {
    background: var(--rose-300);
}

.lang-btn.active {
    background: var(--rose-500);
    color: var(--white);
}

.flag-icon {
    width: 1.4rem;
    height: 1rem;
    border-radius: 2px;
    box-shadow: 0 0 1px rgba(0,0,0,0.3);
}

.lang-btn .lang-label {
    font-weight: 600;
}

/* Main Container */
.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Logo */
.logo-wrapper {
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease-out;
}

.logo {
    max-width: 280px;
    width: 100%;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 8px 32px var(--shadow);
}

/* Content */
.content {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.greeting {
    font-family: 'Manrope', sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.greeting strong {
    color: var(--hero-strong);
    font-weight: 700;
}

.title {
    font-family: 'Manrope', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--plum-600);
    margin-bottom: 1.5rem;
    position: relative;
}

.title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--rose-500);
    border-radius: 2px;
    margin: 1rem auto 0;
}

.description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--charcoal);
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 1.8rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--shadow);
}

.social-btn i {
    font-size: 1.3rem;
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: var(--white);
}

.social-btn.instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(225, 48, 108, 0.4);
}

.social-btn.facebook {
    background: #1877f2;
    color: var(--white);
}

.social-btn.facebook:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.4);
}

/* Footer */
.footer {
    padding: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
    color: var(--charcoal);
    opacity: 0.7;
}

.impressum-link {
    display: inline-block;
    margin-top: 0.5rem;
    color: var(--plum-600);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.impressum-link:hover {
    color: var(--rose-500);
    text-decoration: underline;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.footer-divider {
    color: var(--charcoal);
    opacity: 0.5;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .lang-selector {
        top: 0.5rem;
        right: 0.5rem;
        padding: 0.3rem;
    }

    .lang-btn {
        padding: 0.3rem 0.6rem;
    }

    .lang-btn .lang-label {
        display: none;
    }

    .container {
        padding: 4rem 1.5rem 2rem;
    }

    .logo {
        max-width: 200px;
    }

    .greeting {
        font-size: 1.4rem;
    }

    .title {
        font-size: 2rem;
    }

    .description {
        font-size: 1rem;
    }

    .social-btn {
        padding: 0.8rem 1.4rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 160px;
    }

    .greeting {
        font-size: 1.2rem;
    }

    .title {
        font-size: 1.6rem;
    }

    .social-links {
        flex-direction: column;
        width: 100%;
        padding: 0 1rem;
    }

    .social-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Impressum Page Styles */
.impressum-container {
    justify-content: flex-start;
    padding-top: 4rem;
    max-width: 700px;
    position: relative;
}

.back-btn {
    position: fixed;
    top: 1.5rem;
    left: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background: var(--white);
    color: var(--plum-600);
    text-decoration: none;
    border-radius: 50%;
    font-size: 1.2rem;
    box-shadow: 0 2px 12px var(--shadow);
    transition: all 0.2s ease;
    z-index: 100;
}

.back-btn:hover {
    background: var(--rose-500);
    color: var(--white);
    transform: scale(1.1);
}

.impressum-content {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px var(--shadow);
    text-align: left;
    animation: fadeInUp 0.6s ease-out;
}

.impressum-content h1 {
    font-family: 'Manrope', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--plum-600);
    margin-bottom: 1.5rem;
}

.impressum-content h1 + p {
    margin-top: -0.5rem;
    margin-bottom: 2rem;
    font-style: italic;
    opacity: 0.8;
}

.impressum-content p {
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.impressum-content a {
    color: var(--rose-500);
    text-decoration: none;
    transition: color 0.2s ease;
}

.impressum-content a:hover {
    color: var(--plum-600);
    text-decoration: underline;
}

.impressum-content strong {
    color: var(--charcoal);
}

.impressum-credit {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--rose-300);
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Datenschutz / Legal page extended styles */
.impressum-content h2,
.datenschutz-content h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--plum-600);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.impressum-content h2:first-of-type,
.datenschutz-content h2:first-of-type {
    margin-top: 0;
}

.impressum-content ul,
.datenschutz-content ul {
    margin-bottom: 1.2rem;
    padding-left: 1.5rem;
}

.impressum-content li,
.datenschutz-content li {
    margin-bottom: 0.4rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .impressum-content {
        padding: 1.5rem;
    }

    .impressum-content h1 {
        font-size: 1.6rem;
    }
}

