
/* ===================================
   PARTY-LIMOS.DE - CENTRAL STYLESHEET
   =================================== */

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

:root {
    --primary: #e91e63;
    --secondary: #2196f3;
    --dark: #1a1a1a;
    --light: #f5f5f5;
    --gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --glass: rgba(255, 255, 255, 0.1);
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    width: 100vw;
}

body.has-nav {
    padding-top: 60px;
}

/* ===================================
   NAVIGATION
   =================================== */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 2000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

nav.scrolled {
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    background: rgba(26, 26, 26, 0.98);
}

.nav-container {
    width: 100%;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: inline-block;
    text-decoration: none;
    height: 60px;
}

.logo img {
    height: 100%;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.logo:hover img {
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(233, 30, 99, 0.5));
    transform: scale(1.05);
}

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

.nav-links li {
    margin: 0;
    opacity: 1;
    transform: none;
    transition: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

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

.nav-links a.active {
    color: var(--primary);
}

.nav-links a.active::after {
    width: 100%;
}

/* Mobile Menu Overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 2050;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.mobile-overlay.show {
    display: block;
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu {
    display: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    padding: 0;
    position: relative;
    z-index: 2100;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.mobile-menu:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.05);
}

.mobile-menu span {
    position: absolute;
    width: 22px;
    height: 2px;
    background: white;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: block;
    left: 50%;
    transform: translateX(-50%);
}

.mobile-menu span:nth-child(1) { top: 11px; }
.mobile-menu span:nth-child(2) { top: 19px; }
.mobile-menu span:nth-child(3) { top: 27px; }

.mobile-menu.active span:nth-child(1) {
    transform: translateX(-50%) rotate(45deg);
    top: 19px;
}
.mobile-menu.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-50%) scale(0);
}
.mobile-menu.active span:nth-child(3) {
    transform: translateX(-50%) rotate(-45deg);
    top: 19px;
}

.mobile-header {
    display: none !important;
}

.close-btn {
    display: none !important;
}

@media (max-width: 768px) {
    .mobile-header {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        padding: 20px 2rem;
        margin-bottom: 20px;
        border-bottom: 1px solid rgba(255,255,255,0.2);
    }

    .close-btn {
        display: inline-flex !important;
        background: transparent;
        border: 1px solid rgba(255,255,255,0.3);
        color: white;
        font-size: 1.5rem;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        cursor: pointer;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        margin: 0;
        padding: 0;
    }

    .close-btn:hover {
        background: rgba(255,255,255,0.1);
        transform: scale(1.1);
        border-color: white;
    }
}

.mobile-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    letter-spacing: 1px;
}
