/* ============================================
   TIBBi - Coming Soon Page Stylesheet
   ============================================ */

/* Lokale Font-Einbindung für DSGVO-Konformität */
@font-face {
    font-family: 'Louis George Cafe';
    src: url('../fonts/LouiseGeorgeCafe-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Louis George Cafe';
    src: url('../fonts/LouiseGeorgeCafe-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ============================================
   CSS Reset & Base Styles
   ============================================ */

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

:root {
    --navy: #2B4162;
    --teal-dark: #1B7F79;
    --teal: #5BA39E;
    --sky: #7EB6C5;
    --terracotta: #C57C5B;
    --brown: #9A7B5C;
    --sand: #E8D4A0;
    --cream: #F5EDD3;
    --lavender: #9AA8C7;
}

body {
    font-family: 'Louis George Cafe', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #e3e9f0 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-x: hidden;
}

/* ============================================
   Container
   ============================================ */

.container {
    max-width: 800px;
    width: 100%;
    background: white;
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* ============================================
   Dekorative Hintergrund-Kreise
   ============================================ */

.bg-decoration {
    position: fixed;
    border-radius: 50%;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}

.bg-circle-1 {
    width: 300px;
    height: 300px;
    background: var(--teal);
    top: -150px;
    right: -100px;
}

.bg-circle-2 {
    width: 200px;
    height: 200px;
    background: var(--navy);
    top: 100px;
    left: -80px;
}

.bg-circle-3 {
    width: 250px;
    height: 250px;
    background: var(--terracotta);
    bottom: -100px;
    right: 100px;
}

.bg-circle-4 {
    width: 150px;
    height: 150px;
    background: var(--lavender);
    bottom: 50px;
    left: -50px;
}

/* ============================================
   Logo / Kreise mit Animation
   ============================================ */

.logo-circles {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 40px;
    position: relative;
    height: 120px;
    width: 300px;
}

.circle {
    position: absolute;
    border-radius: 50%;
    animation: float 4s ease-in-out infinite;
}

/* Kreise Animation */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

.circle:nth-child(1) { width: 70px; height: 70px; background: var(--navy); left: 40px; top: 25px; animation-delay: 0s; }
.circle:nth-child(2) { width: 85px; height: 85px; background: var(--teal); left: 100px; top: 35px; animation-delay: 0.3s; }
.circle:nth-child(3) { width: 60px; height: 60px; background: var(--terracotta); left: 170px; top: 15px; animation-delay: 0.6s; }
.circle:nth-child(4) { width: 75px; height: 75px; background: var(--brown); left: 70px; top: 5px; animation-delay: 0.9s; }
.circle:nth-child(5) { width: 50px; height: 50px; background: var(--sky); left: 135px; top: 25px; animation-delay: 1.2s; }
.circle:nth-child(6) { width: 70px; height: 70px; background: var(--teal-dark); left: 20px; top: 50px; animation-delay: 1.5s; }
.circle:nth-child(7) { width: 65px; height: 65px; background: var(--sand); left: 200px; top: 45px; animation-delay: 1.8s; }
.circle:nth-child(8) { width: 45px; height: 45px; background: var(--lavender); left: 155px; top: 60px; animation-delay: 2.1s; }

/* ============================================
   Typography
   ============================================ */

h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 15px;
}

.subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--teal-dark);
    margin-bottom: 40px;
    line-height: 1.6;
}

.description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* ============================================
   Contact Section
   ============================================ */

.contact {
    padding: 30px;
    background: var(--cream);
    border-radius: 15px;
    margin-top: 40px;
}

.contact h2 {
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 20px;
}

.contact p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}

.contact a {
    color: var(--teal-dark);
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}

/* ============================================
   Footer
   ============================================ */

footer {
    margin-top: 40px;
    color: #999;
    font-size: 0.9rem;
}

/* ============================================
   Responsive Design
   ============================================ */

/* Tablet */
@media (max-width: 768px) {
    .container {
        padding: 40px 25px;
    }

    h1 {
        font-size: 2.2rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .description {
        font-size: 1rem;
    }

    .logo-circles {
        transform: scale(0.75);
        height: 100px;
    }

    .contact {
        padding: 20px;
    }

    .contact h2 {
        font-size: 1.2rem;
    }
}

/* Mobile */
@media (max-width: 480px) {
    body {
        padding: 10px;
    }

    .container {
        padding: 30px 20px;
        border-radius: 15px;
    }

    h1 {
        font-size: 1.8rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .description {
        font-size: 0.95rem;
    }

    .logo-circles {
        transform: scale(0.6);
        height: 80px;
    }

    .contact {
        padding: 20px 15px;
    }

    .contact p {
        font-size: 0.9rem;
    }

    footer {
        font-size: 0.8rem;
    }
}
