/* Clamp subtitle text to 2 lines with ellipsis */
.german-subtitle, .english-subtitle {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    max-width: 100%;
}
@media (max-width: 700px) {
    .footer-content {
        flex-direction: row;
        align-items: flex-start;
        gap: 1rem;
    }
    .footer-company {
        flex: 0 0 auto;
        width: auto;
        margin-right: 1rem;
    }
    .footer-contact {
        flex: 1 1 0;
        width: 100%;
    }
}
/* Footer logo styling */
.footer-logo {
    height: 140px;
    margin-bottom: 8px;
    display: block;
    margin-left: 0;
    margin-right: 0;
}
@media (max-width: 700px) {
    html, body {
        margin: 0 !important;
        padding: 0 !important;
        border: 0 !important;
    }
    .container.video-container {
        margin: 0 !important;
        padding: 0 !important;
        height: auto;
        min-height: unset;
        max-height: unset;
    }
    .responsive-video {
        width: 100vw !important;
        min-width: 100vw !important;
        max-width: 100vw !important;
        object-fit: contain !important;
        height: 40vh !important;
        max-height: 50vw !important;
        border-radius: 0;
    }
}
@media (max-width: 700px) {
    .responsive-video {
        width: 100vw !important;
        min-width: 100vw !important;
        max-width: 100vw !important;
        object-fit: contain !important;
        height: 40vh !important;
        max-height: 50vw !important;
        border-radius: 0;
    }
    .container.video-container {
        height: auto;
        min-height: unset;
        max-height: unset;
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
}
.coming-soon-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.main-title {
    white-space: nowrap;
}

@media (max-width: 700px) {
    .main-title {
        white-space: normal;
    }
}
.container.video-container {
    width: 100vw;
    height: 100vh;
    max-width: 100vw;
    max-height: 100vh;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.responsive-video {
    width: 100vw !important;
    height: 100vh !important;
    max-width: 100vw !important;
    max-height: 100vh !important;
    object-fit: cover;
    display: block;
    border-radius: 0;
    box-shadow: none;
    background: #111;
}
/* Coming Soon Section above footer */
.coming-soon-section {
    position: relative;
    z-index: 10;
    /* background: rgba(0,0,0,0.85); */
    border-radius: 16px 16px 0 0;
    margin: 0 auto 0 auto;
    max-width: 700px;
    padding: 2.5rem 1.5rem 0rem 1.5rem;
    /* box-shadow: 0 -2px 16px rgba(0,0,0,0.18); */
    margin-bottom: 0;
    /* margin-top removed to keep section in normal flow */
}

@media (max-width: 700px) {
    .coming-soon-section {
        max-width: 98vw;
        padding: 1.2rem 0.5rem 1.2rem 0.5rem;
        /* No margin-bottom so it sits flush above the footer */
    }
}
/* Animated Coming Soon Text */
.coming-soon-animated {
    display: inline-block;
    animation: glow-pulse 1.5s infinite alternate, wave 2.5s infinite linear;
    background: linear-gradient(90deg, #676259 40%, #fffbe6 60%, #191303 100%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 8px #3b331f88);
    font-size: 3.5rem;
    line-height: 1.1;
}

@keyframes glow-pulse {
    0% {
        text-shadow: 0 0 8px #DAA520, 0 0 16px #fffbe6;
        filter: brightness(1.1);
    }
    100% {
        text-shadow: 0 0 24px #DAA520, 0 0 32px #fffbe6;
        filter: brightness(1.3);
    }
}

@keyframes wave {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}
/* Coming Soon Banner Styles */
.coming-soon-banner {
    width: 100%;
    max-width: 600px;
    margin: 1.5rem auto 0 auto;
    background: linear-gradient(90deg, #DAA520 0%, #ffecb3 100%);
    color: #222;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 2px;
    padding: 1rem 0.5rem;
    animation: fadeInUp 1s ease-out;
}

@media (max-width: 600px) {
    .coming-soon-banner {
        font-size: 1.2rem;
        padding: 0.7rem 0.3rem;
        max-width: 95vw;
    }
    .coming-soon-animated {
        font-size: 2rem;
    }
}
/* Show only the appropriate video for device */
.mobile-video {
    display: none !important;
}
.pc-video {
    display: block !important;
}

@media (max-width: 900px) {
    .mobile-video {
        display: block !important;
    }
    .pc-video {
        display: none !important;
    }
}
/* Responsive video styles */
.video-section {
    width: 100%;
    max-width: 700px;
    margin: 0 auto 2rem auto;
      display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.responsive-video {
    width: 100%;
    max-width: 100vw;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    background: #111;
    display: block;
}


.video-bg {
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
.video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
    background: #111;
    display: block;
}

.container {
    position: relative;
    z-index: 2;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 0;
    text-align: center;
    margin-bottom: 0 !important;
    margin-top: 0;
    background: none;
}



.container, .footer {
    position: relative;
    z-index: 2;
    margin-bottom: 0;
    padding-bottom: 0 !important;
}

.background-overlay {
    z-index: 1;
}

.pc-video {
    max-width: 100vw;
    width: 100%;
}

@media (max-width: 600px) {
    .responsive-video {
        max-width: 100vw;
        min-width: 0;
    }
    .video-section {
        max-width: 100vw;
        padding: 0 0.5rem;
    }
}
@media (max-width: 600px) {
    .footer {
        padding: 1.2rem 0.5rem 0.7rem 0.5rem;
        font-size: 0.95rem;
    }
    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 0;
    }
    .footer-title {
        font-size: 1.1rem;
        margin-bottom: 0.2rem;
    }
    .footer-tagline {
        font-size: 0.95rem;
        margin-bottom: 0.7rem;
    }
    .footer-contact-item {
        font-size: 0.95rem;
        gap: 0.5rem;
    }
    .footer-founder {
        font-size: 0.95rem;
        margin-top: 0.7rem;
    }
}
/* Footer styles */
.footer {
    width: 100%;
    background: rgba(13, 13, 13, 0.764); /* transparent background */
    color: #fff;
    padding: 2rem 1rem 1rem 1rem;
    position: relative;
    bottom: 0;
    left: 0;
    z-index: 10;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    margin-top: 0;
    margin-bottom: 0;
}

.footer-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    text-align: left;
}

.footer-company {
    flex: 1 1 200px;
}
.footer-title {
    font-size: 1.5rem;
    color: #DAA520;
    font-weight: bold;
    margin-bottom: 0.3rem;
    text-align: left;
}
.footer-tagline {
    font-size: 1.1rem;
    color: #f0f0f0;
    margin-bottom: 1rem;
}
.footer-contact {
    flex: 2 1 300px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: #DAA520;
    font-size: 1rem;
}
.footer-founder {
    flex: 1 1 200px;
    margin-top: 1rem;
    color: #f0f0f0;
    font-size: 1rem;
}
.footer-founder-title {
    color: #DAA520;
    font-weight: bold;
    margin-right: 0.5rem;
}

@media (max-width: 900px) {
    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 1.5rem;
    }
    .footer-company, .footer-contact, .footer-founder {
        flex: unset;
        width: 100%;
    }
}
 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Times New Roman', Times, serif;
            background: #000;
            color: #fff;
            min-height: 100vh;
            overflow-x: hidden;
            position: relative;
        }

        .background-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.95) 100%);
            z-index: 1;
        }

        .container {
            position: relative;
            z-index: 2;
            min-height: 100vh;
            display: flex;
            flex-direction: column-reverse;
            align-items: center;
            padding: 2rem 2rem 0 2rem;
            text-align: center;
            margin-bottom: 0 !important;
            margin-top: 10rem;
        }

        .main-title {
            font-size: 3.5rem;
            font-weight: bold;
            color: #DAA520;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
            margin-bottom: 1rem;
            letter-spacing: 3px;
            animation: fadeInUp 1s ease-out;
        }

        .underline {
            width: 100%;
            max-width: 600px;
            height: 3px;
            background: linear-gradient(90deg, transparent, #DAA520, transparent);
            margin-bottom: 2rem;
            animation: fadeInUp 1s ease-out 0.3s both;
        }

        .german-subtitle {
            font-size: 1.4rem;
            color: #f0f0f0;
            margin-bottom: 1rem;
            opacity: 0.9;
            animation: fadeInUp 1s ease-out 0.6s both;
            line-height: 1.4;
        }

        .english-subtitle {
            font-size: 1.3rem;
            color: #e0e0e0;
            margin-bottom: 3rem;
            opacity: 0.8;
            animation: fadeInUp 1s ease-out 0.8s both;
            line-height: 1.4;
        }

        .beer-tap-animation {
            margin: 2rem 0;
            animation: fadeInUp 1s ease-out 1s both;
            position: relative;
        }

        .beer-tap {
            width: 120px;
            height: 120px;
            position: relative;
            margin: 0 auto;
            animation: bounce 2s ease-in-out infinite;
        }

        .beer-tap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .tap-handle {
            width: 12px;
            height: 40px;
            background: linear-gradient(45deg, #ff6b35, #ff8c42);
            border-radius: 6px 6px 2px 2px;
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
        }

        .tap-body {
            width: 40px;
            height: 30px;
            background: linear-gradient(45deg, #c0c0c0, #e0e0e0);
            border-radius: 8px;
            position: absolute;
            top: 10px;
            left: 50%;
            transform: translateX(-50%);
            box-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .tap-spout {
            width: 8px;
            height: 15px;
            background: #888;
            border-radius: 0 0 4px 4px;
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
        }

        .beer-mug {
            width: 50px;
            height: 60px;
            background: linear-gradient(180deg, #fff 0%, #fff 20%, #ffd700 20%, #ffd700 100%);
            border-radius: 0 0 8px 8px;
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            border: 3px solid #ddd;
            box-shadow: 2px 2px 6px rgba(0,0,0,0.3);
        }

        .beer-handle {
            width: 8px;
            height: 25px;
            border: 3px solid #ddd;
            border-left: none;
            border-radius: 0 8px 8px 0;
            position: absolute;
            right: -11px;
            bottom: 15px;
            background: transparent;
        }

        .foam {
            width: 44px;
            height: 12px;
            background: #fff;
            border-radius: 50%;
            position: absolute;
            top: 8px;
            left: 3px;
            animation: foam-bubble 3s ease-in-out infinite;
        }

        .logo-section {
            margin: 3rem 0;
            animation: fadeInUp 1s ease-out 1.2s both;
        }

        .logo-circle {
            width: 120px;
            height: 120px;
            border: 2px solid #DAA520;
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            background: rgba(0,0,0,0.3);
            backdrop-filter: blur(5px);
        }

        .logo-text-top {
            font-size: 10px;
            color: #DAA520;
            letter-spacing: 2px;
            margin-bottom: 5px;
        }

        .logo-glasses {
            display: flex;
            gap: 5px;
            margin-bottom: 5px;
        }

        .wine-glass {
            width: 15px;
            height: 20px;
            background: linear-gradient(180deg, transparent 0%, transparent 60%, #8B0000 60%, #8B0000 100%);
            border: 1px solid #fff;
            border-radius: 0 0 0 8px;
            position: relative;
        }

        .wine-glass::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 1px;
            height: 8px;
            background: #fff;
        }

        .beer-glass {
            width: 12px;
            height: 20px;
            background: linear-gradient(180deg, #fff 0%, #fff 15%, #ffd700 15%, #ffd700 100%);
            border: 1px solid #fff;
            border-radius: 0 0 2px 2px;
            position: relative;
        }

        .beer-glass::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 1px;
            height: 8px;
            background: #fff;
        }

        .logo-text-bottom {
            font-size: 10px;
            color: #DAA520;
            letter-spacing: 2px;
        }

        .company-name {
            font-size: 2rem;
            font-weight: bold;
            color: #DAA520;
            margin-bottom: 0.5rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
        }

        .company-info {
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 2.5rem;
            max-width: 500px;
            margin: 2rem auto;
            animation: fadeInUp 1s ease-out 1.4s both;
            position: relative;
        }

        .red-arrow {
            position: absolute;
            top: -20px;
            right: 20px;
            width: 60px;
            height: 40px;
        }

        .arrow-line {
            stroke: #ff4444;
            stroke-width: 3;
            fill: none;
            stroke-linecap: round;
            animation: draw-arrow 2s ease-in-out infinite;
        }

        .tagline {
            font-size: 1.2rem;
            color: #f0f0f0;
            margin-bottom: 2rem;
            font-weight: bold;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 2rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            color: #DAA520;
            font-size: 1rem;
        }

        .contact-icon {
            font-size: 1.2rem;
            min-width: 25px;
        }

        .founder-info {
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(218, 165, 32, 0.3);
            color: #f0f0f0;
        }

        .founder-title {
            color: #DAA520;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-8px); }
            60% { transform: translateY(-4px); }
        }

        @keyframes foam-bubble {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.1); opacity: 0.8; }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes draw-arrow {
            0%, 100% { stroke-dasharray: 0, 100; }
            50% { stroke-dasharray: 50, 50; }
        }

        @media (max-width: 768px) {
            .main-title {
                font-size: 2.5rem;
                letter-spacing: 2px;
            }
            
            .company-info {
                padding: 2rem;
                margin: 1rem;
            }
        }