/*
 * Angebot Page Styles - Q-Bab Burger
 * Extracted from inline styles for better performance and caching
 */

:root {
            --primary-color: #ff6b35;
            --primary-dark: #e85a2a;
            --primary-light: #ff8659;
            --secondary-color: #2d3142;
            --accent-color: #ffc857;
            --text-color: #4a4a4a;
            --text-light: #8a8a8a;
            --bg-dark: #1a1a2e;
            --white: #ffffff;
            --black: #0f0f0f;
        }

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

        body {
            font-family: 'Poppins', sans-serif;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--bg-dark) 0%, #16213e 50%, var(--secondary-color) 100%);
            overflow: hidden;
            position: relative;
        }

        /* Animated background elements */
        .bg-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 0;
        }

        .bg-shapes span {
            position: absolute;
            display: block;
            width: 20px;
            height: 20px;
            background: rgba(255, 107, 53, 0.1);
            animation: float 25s linear infinite;
            bottom: -150px;
            border-radius: 50%;
        }

        .bg-shapes span:nth-child(1) {
            left: 25%;
            width: 80px;
            height: 80px;
            animation-delay: 0s;
            animation-duration: 20s;
        }

        .bg-shapes span:nth-child(2) {
            left: 10%;
            width: 20px;
            height: 20px;
            animation-delay: 2s;
            animation-duration: 25s;
        }

        .bg-shapes span:nth-child(3) {
            left: 70%;
            width: 50px;
            height: 50px;
            animation-delay: 4s;
        }

        .bg-shapes span:nth-child(4) {
            left: 40%;
            width: 60px;
            height: 60px;
            animation-delay: 0s;
            animation-duration: 18s;
        }

        .bg-shapes span:nth-child(5) {
            left: 65%;
            width: 20px;
            height: 20px;
            animation-delay: 0s;
        }

        .bg-shapes span:nth-child(6) {
            left: 75%;
            width: 110px;
            height: 110px;
            animation-delay: 3s;
        }

        .bg-shapes span:nth-child(7) {
            left: 35%;
            width: 150px;
            height: 150px;
            animation-delay: 7s;
        }

        .bg-shapes span:nth-child(8) {
            left: 50%;
            width: 25px;
            height: 25px;
            animation-delay: 15s;
            animation-duration: 45s;
        }

        .bg-shapes span:nth-child(9) {
            left: 20%;
            width: 15px;
            height: 15px;
            animation-delay: 2s;
            animation-duration: 35s;
        }

        .bg-shapes span:nth-child(10) {
            left: 85%;
            width: 90px;
            height: 90px;
            animation-delay: 0s;
            animation-duration: 22s;
        }

        @keyframes float {
            0% {
                transform: translateY(0) rotate(0deg);
                opacity: 1;
                border-radius: 50%;
            }
            100% {
                transform: translateY(-1200px) rotate(720deg);
                opacity: 0;
                border-radius: 50%;
            }
        }

        /* Main container */
        .container {
            text-align: center;
            z-index: 1;
            padding: 40px;
            max-width: 700px;
            background: rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(10px);
            border-radius: 30px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        }

        /* Logo */
        .logo-container {
            margin-bottom: 30px;
            animation: fadeInDown 1s ease-out;
        }

        .logo {
            width: 180px;
            height: 180px;
            object-fit: contain;
            filter: drop-shadow(0 10px 30px rgba(255, 107, 53, 0.4));
            animation: pulse 3s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }

        /* Brand name */
        .brand-name {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 5rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 10px;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
            animation: fadeInUp 1s ease-out 0.3s backwards;
            letter-spacing: 4px;
        }

        .brand-name span {
            color: var(--primary-color);
            text-shadow: 0 0 30px rgba(255, 107, 53, 0.8);
        }

        /* Domain */
        .domain {
            font-size: 1.3rem;
            color: var(--accent-color);
            letter-spacing: 3px;
            margin-bottom: 50px;
            animation: fadeInUp 1s ease-out 0.5s backwards;
            font-weight: 300;
            text-shadow: 0 2px 10px rgba(255, 200, 87, 0.5);
        }

        /* Main message */
        .message {
            animation: fadeInUp 1s ease-out 0.7s backwards;
            margin-bottom: 40px;
        }

        .message h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.8rem;
            color: var(--white);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .message p {
            font-size: 1.15rem;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.8;
            margin-bottom: 30px;
            font-weight: 300;
        }

        .message strong {
            color: var(--accent-color);
            font-weight: 600;
        }

        /* Construction icon */
        .construction-icon {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 40px;
            animation: fadeInUp 1s ease-out 0.9s backwards;
        }

        .construction-icon span {
            font-size: 3.5rem;
            animation: bounce 1.5s ease-in-out infinite;
            filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
        }

        .construction-icon span:nth-child(2) {
            animation-delay: 0.3s;
        }

        .construction-icon span:nth-child(3) {
            animation-delay: 0.6s;
        }

        @keyframes bounce {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-15px);
            }
        }

        /* Progress bar */
        .progress-section {
            animation: fadeInUp 1s ease-out 1.1s backwards;
            margin-bottom: 40px;
        }

        .progress-label {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.95rem;
            font-weight: 500;
        }

        .progress-container {
            background: rgba(255, 255, 255, 0.15);
            border-radius: 50px;
            padding: 5px;
            margin-bottom: 20px;
            box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.3);
        }

        .progress-bar {
            height: 12px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
            border-radius: 50px;
            width: 0%;
            animation: progressAnim 2s ease-out 1.5s forwards;
            position: relative;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(255, 107, 53, 0.6);
        }

        .progress-bar::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            animation: shimmer 2.5s infinite;
        }

        @keyframes shimmer {
            0% {
                transform: translateX(-100%);
            }
            100% {
                transform: translateX(100%);
            }
        }

        @keyframes progressAnim {
            0% {
                width: 0%;
            }
            100% {
                width: 75%;
            }
        }

        /* Features List */
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
            animation: fadeInUp 1s ease-out 1.3s backwards;
        }

        .feature {
            background: rgba(255, 255, 255, 0.05);
            padding: 20px;
            border-radius: 15px;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .feature:hover {
            background: rgba(255, 107, 53, 0.15);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
        }

        .feature-icon {
            font-size: 2.5rem;
            margin-bottom: 10px;
        }

        .feature-title {
            color: var(--white);
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .feature-text {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }

        /* Contact info */
        .contact-info {
            animation: fadeInUp 1s ease-out 1.5s backwards;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
        }

        .contact-info p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1rem;
            margin-bottom: 15px;
            line-height: 1.6;
        }

        .contact-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .contact-link {
            color: var(--primary-color);
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 500;
            padding: 10px 20px;
            background: rgba(255, 107, 53, 0.1);
            border-radius: 25px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .contact-link:hover {
            background: var(--primary-color);
            color: var(--white);
            transform: translateY(-3px);
            box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
        }

        /* 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) {
            .brand-name {
                font-size: 3.5rem;
            }

            .message h2 {
                font-size: 2rem;
            }

            .logo {
                width: 140px;
                height: 140px;
            }

            .container {
                padding: 30px 20px;
                margin: 20px;
            }

            .features {
                grid-template-columns: 1fr;
            }

            .contact-links {
                flex-direction: column;
            }
        }

        @media (max-width: 480px) {
            .brand-name {
                font-size: 2.8rem;
            }

            .message h2 {
                font-size: 1.6rem;
            }

            .domain {
                font-size: 1rem;
                letter-spacing: 2px;
            }

            .construction-icon span {
                font-size: 2.5rem;
            }

            .progress-label {
                font-size: 0.85rem;
            }
        }
