/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #000000;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Mobile Navbar */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 15px;
    }
    
    .nav-logo {
        order: 1;
    }
    
    .nav-toggle {
        order: 2;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 25px;
        cursor: pointer;
        z-index: 1000;
    }
    
    .nav-toggle span {
        width: 100%;
        height: 3px;
        background: #ffffff;
        border-radius: 2px;
        transition: all 0.3s ease;
        transform-origin: center;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .nav-links {
        order: 3;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
    }
    
    .nav-links.active {
        transform: translateX(0);
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 25px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        min-width: 200px;
        text-align: center;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover {
        background: rgba(0, 175, 199, 0.2);
        border-color: #00AFC7;
        color: #00AFC7;
        transform: scale(1.05);
    }
    
    .nav-link::after {
        display: none;
    }
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav-toggle {
    display: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #00AFC7;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00AFC7;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 15px;
    }
    
    .nav-logo {
        order: 1;
    }
    
    .nav-toggle {
        order: 2;
        display: flex !important;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 25px;
        cursor: pointer;
        z-index: 1000;
        background: transparent;
    }
    
    .nav-toggle span {
        width: 100%;
        height: 3px;
        background: #ffffff;
        border-radius: 2px;
        transition: all 0.3s ease;
        transform-origin: center;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .nav-links {
        order: 3;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
        display: flex !important;
    }
    
    .nav-links.active {
        transform: translateX(0);
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 25px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        min-width: 200px;
        text-align: center;
        transition: all 0.3s ease;
        color: #ffffff;
    }
    
    .nav-link:hover {
        background: rgba(0, 175, 199, 0.2);
        border-color: #00AFC7;
        color: #00AFC7;
        transform: scale(1.05);
    }
    
    .nav-link::after {
        display: none;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    /* Ensure video plays smoothly */
    pointer-events: none;
    /* Optimize for performance */
    will-change: transform;
    /* Ensure video covers the entire area */
    min-width: 100%;
    min-height: 100%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.hero-content {
    text-align: center;
    z-index: 1;
    padding: 0 20px;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    padding-bottom: 100px;
}

.hero-logo {
    margin-bottom: 3rem;
}

.hero-logo-img {
    width: 500px;
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-cta {
    display: inline-block;
    background: transparent;
    color: #ffffff;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #ffffff;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.hero-cta:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 8px 30px rgba(255, 255, 255, 0.3),
        0 0 20px rgba(255, 255, 255, 0.2),
        0 0 40px rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

.hero-cta:hover::before {
    left: 100%;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-cta-secondary {
    background: rgba(0, 175, 199, 0.1);
    border-color: #00AFC7;
    color: #00AFC7;
}

.hero-cta-secondary:hover {
    background: #00AFC7;
    color: #000000;
    border-color: #00AFC7;
    box-shadow: 
        0 8px 30px rgba(0, 175, 199, 0.3),
        0 0 20px rgba(0, 175, 199, 0.2),
        0 0 40px rgba(0, 175, 199, 0.1);
}

.hero-cta:active {
    transform: translateY(-1px) scale(1.02);
}

/* Events Section */
.events {
    padding: 5rem 0;
    background: #000000;
    margin-top: 0;
    position: relative;
    z-index: 1;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #ffffff;
}

/* Events Grid - Now handled by slider */

.event-card {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    min-height: 500px;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.event-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.event-image:hover {
    transform: scale(1.05);
    filter: brightness(1.1) contrast(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.event-content {
    padding: 1.5rem;
}

.event-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 1rem 0;
    color: #ffffff;
    text-align: center;
    text-shadow: 0 0 10px rgba(0, 175, 199, 0.3);
    padding: 0 1rem;
}

.event-description {
    color: #cccccc;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.event-date {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #000000, #1a1a1a);
    padding: 1.2rem;
    border-radius: 12px;
    border: 2px solid #00AFC7;
    box-shadow: 0 0 20px rgba(0, 175, 199, 0.3);
    position: relative;
    overflow: hidden;
}

.event-date::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00AFC7, #00d4ff, #00AFC7);
    box-shadow: 0 0 10px rgba(0, 175, 199, 0.5);
}

.date-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
}

.date-day {
    color: #ffffff;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.date-month {
    color: #00AFC7;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.date-weekday {
    color: #cccccc;
    font-size: 0.7rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.date-right {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.date-title {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.date-time {
    color: #00d4ff;
    font-size: 1.2rem;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
    background: rgba(0, 175, 199, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    border: 1px solid rgba(0, 175, 199, 0.3);
    text-align: center;
    min-width: 80px;
    position: relative;
}



.event-ticket {
    display: inline-block;
    background: transparent;
    color: #ffffff;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #ffffff;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.event-ticket::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.event-ticket:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 8px 30px rgba(255, 255, 255, 0.3),
        0 0 20px rgba(255, 255, 255, 0.2),
        0 0 40px rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

.event-ticket:hover::before {
    left: 100%;
}

.event-ticket:active {
    transform: translateY(-1px) scale(1.02);
}

.loading {
    text-align: center;
    color: #cccccc;
    font-size: 1.1rem;
    grid-column: 1 / -1;
    padding: 2rem;
}

/* Social Media Section */
.social-media {
    padding: 5rem 0;
    background: #000000;
    position: relative;
}

.social-media::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00AFC7, #00d4ff, #00AFC7, transparent);
    box-shadow: 0 0 20px rgba(0, 175, 199, 0.5);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.social-card {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 175, 199, 0.1), transparent);
    transition: left 0.6s ease;
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    border-color: #00AFC7;
}

.social-card:hover::before {
    left: 100%;
}

.social-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.social-card:hover .social-icon {
    transform: scale(1.1);
}

.social-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.social-card p {
    color: #cccccc;
    font-size: 0.9rem;
    margin: 0;
}

/* Social Media Platform Colors */
.social-card:nth-child(1) .social-icon {
    color: #E4405F; /* Instagram */
}

.social-card:nth-child(2) .social-icon {
    color: #1877F2; /* Facebook */
}

.social-card:nth-child(3) .social-icon {
    color: #FFFC00; /* Snapchat */
}

.social-card:nth-child(4) .social-icon {
    color: #25D366; /* WhatsApp */
}

/* Footer */
.footer {
    background: #000000;
    padding: 2rem 0 1rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00AFC7, #00d4ff, #00AFC7, transparent);
    box-shadow: 0 0 20px rgba(0, 175, 199, 0.5);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 30px;
    width: auto;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-link {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ff6b35;
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #333333;
}

.footer-bottom p {
    color: #888888;
    font-size: 0.8rem;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-logo-img {
        width: 250px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .event-card {
        min-height: 450px;
    }
    
    .event-image {
        height: 240px;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-links {
        gap: 1rem;
    }
    
    /* Ensure events section starts immediately after hero on mobile */
    .events {
        margin-top: 0;
        padding-top: 3rem;
    }
    
    /* Ensure hero section doesn't show any strip when scrolling */
    .hero {
        height: 100vh;
        min-height: 100vh;
    }
    
    /* Social media responsive adjustments */
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .social-card {
        padding: 1.5rem;
    }
    
    .social-icon {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-logo-img {
        width: 200px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 1rem 15px;
    }
    
    .event-content {
        padding: 1rem;
    }
    
    /* Additional mobile fixes for perfect scroll behavior */
    .events {
        padding-top: 2rem;
    }
    
    /* Ensure no gap between hero and events */
    .hero + .events {
        margin-top: 0;
    }
    
    /* Social media small screen adjustments */
    .social-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .social-card {
        padding: 1rem;
    }
    
    .social-icon {
        font-size: 2rem;
    }
}

/* Animation for cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.event-card {
    animation: fadeInUp 0.6s ease forwards;
}

.event-card:nth-child(2) {
    animation-delay: 0.1s;
}

.event-card:nth-child(3) {
    animation-delay: 0.2s;
}

.event-card:nth-child(4) {
    animation-delay: 0.3s;
}

/* Content Section Styles */
.content-section {
    padding: 8rem 0 5rem;
    background: #000000;
    min-height: 100vh;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
}

.impressum-content {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.impressum-section {
    margin-bottom: 2rem;
}

.impressum-section:last-child {
    margin-bottom: 0;
}

.impressum-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #00AFC7;
    margin-bottom: 1rem;
    border-bottom: 2px solid #333333;
    padding-bottom: 0.5rem;
}

.impressum-section p {
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.impressum-section a {
    color: #00AFC7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.impressum-section a:hover {
    color: #ffffff;
}

.back-link {
    text-align: center;
    margin-top: 2rem;
}

.back-button {
    display: inline-block;
    background: transparent;
    color: #ffffff;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #ffffff;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.back-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.back-button:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 8px 30px rgba(255, 255, 255, 0.3),
        0 0 20px rgba(255, 255, 255, 0.2),
        0 0 40px rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

.back-button:hover::before {
    left: 100%;
}

.back-button:active {
    transform: translateY(-1px) scale(1.02);
}

/* Responsive Design for Content Pages */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .impressum-content {
        padding: 1.5rem;
    }
    
    .impressum-section h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 2rem;
    }
    
    .impressum-content {
        padding: 1rem;
    }
    
    .content-wrapper {
        padding: 0 15px;
    }
}

/* Lounge Reservation Styles */
.lounge-content {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 3rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.lounge-section {
    margin-bottom: 2.5rem;
}

.lounge-section:last-child {
    margin-bottom: 0;
}

.lounge-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00AFC7;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(0, 175, 199, 0.3);
}

.lounge-section p {
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    font-size: 1.2rem;
}

/* Info-box styles removed - no longer needed */

.whatsapp-container {
    text-align: center;
    margin: 2rem 0;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: #25D366;
    color: #ffffff;
    padding: 1.5rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    position: relative;
    overflow: hidden;
}

.whatsapp-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.whatsapp-button:hover {
    background: #128C7E;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 8px 30px rgba(37, 211, 102, 0.4),
        0 0 20px rgba(37, 211, 102, 0.2);
}

.whatsapp-button:hover::before {
    left: 100%;
}

.whatsapp-button:active {
    transform: translateY(-1px) scale(1.02);
}

.whatsapp-button i {
    font-size: 1.5rem;
}

.contact-info {
    background: #000000;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: #00AFC7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #ffffff;
}

/* Responsive Design for Lounge Page */
@media (max-width: 768px) {
    .lounge-content {
        padding: 1.5rem;
    }
    
    .lounge-section h2 {
        font-size: 1.3rem;
    }
    
    .whatsapp-button {
        padding: 1.2rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .lounge-content {
        padding: 1rem;
    }
    
    .whatsapp-button {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .whatsapp-button i {
        font-size: 1.3rem;
    }
} 

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #000000;
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00AFC7, #00d4ff, #00AFC7, transparent);
    box-shadow: 0 0 20px rgba(0, 175, 199, 0.5);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.faq-question {
    padding: 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question h3 {
    margin: 0;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.faq-question:hover h3 {
    color: #00d4ff;
}

.faq-question i {
    color: #00d4ff;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
}

.faq-answer.active {
    max-height: 500px;
    padding: 0 24px 24px 24px;
}

.faq-answer p {
    margin: 0;
    color: #cccccc;
    line-height: 1.6;
    font-size: 16px;
}

.faq-answer a {
    color: #00d4ff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.faq-answer a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Jobs Section */
.jobs {
    padding: 80px 0;
    background: #000000;
    position: relative;
    color: #ffffff;
}

.jobs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00AFC7, #00d4ff, #00AFC7, transparent);
    box-shadow: 0 0 20px rgba(0, 175, 199, 0.5);
}

.jobs h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(0, 175, 199, 0.5);
}

.jobs-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.job-category {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.job-category:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.job-category .category-title {
    color: #00AFC7;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0;
    text-align: left;
    transition: color 0.3s ease;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px 12px 0 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: none;
}

.job-category .category-title:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #00d4ff;
}

.job-category .category-title span {
    flex: 1;
}

.job-category .category-title i {
    color: #00d4ff;
    font-size: 16px;
    transition: transform 0.3s ease;
    margin-left: 1rem;
}

.job-details {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: none;
    border-radius: 0 0 12px 12px;
    padding: 1rem;
}

.job-details p {
    margin: 0 0 0.8rem 0;
    color: #cccccc;
    line-height: 1.6;
    font-size: 16px;
}

.job-details strong {
    color: #00d4ff;
}

.job-details ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.job-details li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
    color: #cccccc;
    font-size: 16px;
}

.job-info {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    margin-top: 2rem;
    transition: all 0.3s ease;
}

.job-info:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.job-info h4 {
    color: #00AFC7;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.job-info p {
    margin: 0 0 1rem 0;
    color: #cccccc;
    line-height: 1.6;
    font-size: 16px;
}

.job-info a {
    color: #00d4ff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.job-info a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.job-info strong {
    color: #00d4ff;
}

.job-info em {
    color: #cccccc;
    font-style: italic;
}

.application-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
}

.application-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.application-method:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.application-method i {
    font-size: 1.5rem;
    color: #00AFC7;
    min-width: 24px;
}

.application-method a {
    color: #00d4ff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.application-method a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

/* Job Application Buttons */
.job-application-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.job-apply-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 140px;
    justify-content: center;
}

.job-whatsapp-btn {
    background: #25D366;
    color: #ffffff;
    border-color: #25D366;
}

.job-whatsapp-btn:hover {
    background: #128C7E;
    border-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.job-email-btn {
    background: #00AFC7;
    color: #ffffff;
    border-color: #00AFC7;
}

.job-email-btn:hover {
    background: #008ba3;
    border-color: #008ba3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 175, 199, 0.3);
}

.job-apply-btn i {
    font-size: 16px;
}

/* Responsive Job Application Buttons */
@media (max-width: 768px) {
    .job-application-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .job-apply-btn {
        width: 100%;
        min-width: auto;
        padding: 1rem 1.5rem;
        font-size: 16px;
    }
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .faq {
        padding: 60px 0;
    }
    
    .faq-container {
        padding: 0 20px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
    
    .faq-answer.active {
        padding: 0 20px 20px 20px;
    }
    
    .faq-answer p {
        font-size: 15px;
    }
} 

/* Getränkekarte Section - Updated with Drink Menu */
.getraenkekarte {
    padding: 80px 0;
    background: #000000;
    position: relative;
}

.getraenkekarte::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00AFC7, #00d4ff, #00AFC7, transparent);
    box-shadow: 0 0 20px rgba(0, 175, 199, 0.5);
}

.getraenkekarte-content {
    max-width: 1000px;
    margin: 0 auto;
}

.drink-menu {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.drink-category {
    margin-bottom: 2.5rem;
}

.drink-category:last-of-type {
    margin-bottom: 2rem;
}

.category-title {
    color: #00AFC7;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(0, 175, 199, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.category-title:hover {
    color: #00d4ff;
    border-bottom-color: rgba(0, 212, 255, 0.5);
}

.category-title.active {
    color: #00d4ff;
    border-bottom-color: rgba(0, 212, 255, 0.7);
}

.category-title i {
    color: #00AFC7;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.category-title.active i {
    transform: rotate(180deg);
}

.drink-items {
    display: grid;
    gap: 0.8rem;
}

.drink-item {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 1rem;
    align-items: center;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.drink-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 175, 199, 0.2);
    transform: translateX(5px);
}

.drink-name {
    color: #ffffff;
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 1.4;
}

.drink-size {
    color: #00AFC7;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    min-width: 60px;
}

.drink-price {
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    text-align: right;
    min-width: 70px;
}

.allergene-info {
    background: rgba(0, 175, 199, 0.1);
    border: 1px solid rgba(0, 175, 199, 0.2);
    border-radius: 6px;
    padding: 0.8rem;
    margin: 1rem 0;
}

.allergene-info h4 {
    color: #00AFC7;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.allergene-info p {
    color: #cccccc;
    font-size: 0.75rem;
    line-height: 1.4;
    margin: 0;
}

.pdf-download {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pdf-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #00AFC7, #00d4ff);
    color: #000000;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 175, 199, 0.3);
}

.pdf-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 175, 199, 0.4);
    background: linear-gradient(135deg, #00d4ff, #00AFC7);
}

.pdf-link i {
    font-size: 1.2rem;
}

/* Responsive Getränkekarte */
@media (max-width: 768px) {
    .getraenkekarte {
        padding: 60px 0;
    }
    
    .getraenkekarte-content {
        padding: 0 20px;
    }
    
    .drink-menu {
        padding: 1.5rem;
    }
    
    .drink-item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        text-align: center;
    }
    
    .drink-size, .drink-price {
        text-align: center;
        min-width: auto;
    }
    
    .category-title {
        font-size: 1.3rem;
        text-align: center;
    }
    
    .pdf-link {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .drink-menu {
        padding: 1rem;
    }
    
    .drink-item {
        padding: 0.6rem 0.8rem;
    }
    
    .drink-name {
        font-size: 0.9rem;
    }
    
    .drink-size, .drink-price {
        font-size: 0.85rem;
    }
} 

/* Events Slider */
.events-slider-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.events-slider {
    overflow: hidden;
    width: 100%;
    max-width: calc(100% - 120px); /* Account for navigation buttons */
}

.events-grid {
    display: flex;
    transition: transform 0.5s ease;
    gap: 0;
    width: 100%;
}

.events-grid .event-card {
    width: calc(50% - 1rem);
    flex-shrink: 0;
    margin: 0 0.5rem;
    max-width: none;
}

/* Mobile: 1 event per slide */
@media (max-width: 768px) {
    .events-grid .event-card {
        width: 100%;
        margin: 0;
    }
}

.slider-btn {
    background: rgba(0, 175, 199, 0.1);
    border: 2px solid #00AFC7;
    color: #00AFC7;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 10;
}

.slider-btn:hover {
    background: #00AFC7;
    color: #000000;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 175, 199, 0.5);
}

.slider-btn:active {
    transform: scale(0.95);
}

.slider-btn i {
    font-size: 1.2rem;
    font-weight: bold;
}

.slider-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

.slider-btn:disabled:hover {
    background: rgba(0, 175, 199, 0.1);
    color: #00AFC7;
    transform: none;
    box-shadow: none;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #00AFC7;
    transform: scale(1.2);
}

.slider-dot:hover {
    background: rgba(0, 175, 199, 0.7);
}

/* Events Explore Section */
.events-explore-section {
    text-align: center;
    margin-top: 3rem;
    padding: 0 20px;
}

.events-explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #00AFC7, #00d4ff);
    color: #000000;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 175, 199, 0.3);
    border: 2px solid transparent;
}

.events-explore-btn:hover {
    background: linear-gradient(135deg, #00d4ff, #00AFC7);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 175, 199, 0.5);
    color: #000000;
}

.events-explore-btn:active {
    transform: translateY(-1px);
}

.events-explore-btn i {
    font-size: 1.2rem;
}

/* All Events Page Styles */
.events-header {
    padding: 120px 0 80px 0;
    background: #000000;
    text-align: center;
    color: #ffffff;
}

.events-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    margin-top: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.all-events {
    padding: 80px 0;
    background: #000000;
}

.all-events .events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.back-home-section {
    padding: 60px 0;
    background: #000000;
    text-align: center;
}

.back-home-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.back-home-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.back-home-btn i {
    font-size: 1.2rem;
}

/* Responsive Events Slider */
@media (max-width: 1200px) {
    .events-grid .event-card {
        width: calc((100% - 2.5rem) / 2); /* 2 cards on medium screens */
    }
}

@media (max-width: 768px) {
    .events-slider {
        max-width: calc(100% - 100px);
    }
    
    .slider-btn {
        width: 45px;
        height: 45px;
    }
    
    .events-grid .event-card {
        width: 100%; /* 1 card on mobile */
    }
    
    .slider-dots {
        margin-top: 1.5rem;
    }
    
    /* Mobile Event Cards - Compact Design */
    .event-card {
        padding: 0;
        min-height: auto;
        overflow: hidden;
    }
    
    /* Description removed from HTML on mobile */
    
    /* Title is always visible on all devices */
    .event-card .event-title {
        text-align: center;
        margin: 0.8rem 0;
        padding: 0 0.5rem;
        font-size: 1.2rem;
        line-height: 1.3;
    }
    
    .event-card .event-date {
        padding: 0.8rem;
        margin-bottom: 0.8rem;
    }
    
    .event-card .event-image {
        width: 100%;
        height: 200px; /* Same height as desktop */
        object-fit: cover;
        margin: 0;
        border-radius: 0;
    }
    
    .event-card .event-actions {
        margin-top: 0.5rem;
    }
    
    .event-card .event-actions .btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .event-card .event-ticket {
        display: block;
        width: 100%;
        text-align: center;
        margin: 0;
    }
}

@media (max-width: 480px) {
    .events-slider-container {
        gap: 0.5rem;
    }
    
    .events-slider {
        max-width: calc(100% - 80px);
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
    }
    
    .slider-btn i {
        font-size: 1rem;
    }
    
    /* Mobile Events Explore Button */
    .events-explore-section {
        margin-top: 2rem;
        padding: 0 15px;
    }
    
    .events-explore-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 1.2rem 2rem;
        font-size: 1rem;
    }
    
    /* Extra Small Mobile Event Cards */
    .event-card {
        padding: 0;
        overflow: hidden;
    }
    
    /* Title is always visible on all devices */
    .event-card .event-title {
        text-align: center;
        margin: 0.6rem 0;
        padding: 0 0.4rem;
        font-size: 1.1rem;
        line-height: 1.3;
    }
    
    .event-card .event-date {
        padding: 0.6rem;
        margin-bottom: 0.6rem;
    }
    
    .event-card .event-image {
        width: 100%;
        height: 200px; /* Same height as desktop */
        object-fit: cover;
        margin: 0;
        border-radius: 0;
    }
    
    .event-card .event-actions .btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .event-card .event-ticket {
        display: block;
        width: 100%;
        text-align: center;
        margin: 0;
    }
} 