/*
Theme Name: Jazzfestival Neuwied
Author: Live Events
Version: 1.0
Text Domain: jazzfestival
*/

:root {
    --bg: #000000;
    --yellow: #FFD700;
    --orange: #FF8C00;
    --gray: rgba(200, 200, 200, 0.1);
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background: var(--bg);
    color: white;
    overflow-x: hidden;
}

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

header {
    position: fixed;
    top: 0;
    width: 100%;
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.logo {
    font-size: 2.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo .header-logo-img {
    height: 50px;
    width: auto;
    display: block;
}

.logo .logo-text {
    background: linear-gradient(90deg, var(--yellow), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    white-space: nowrap;
}

.logo a {
    background: linear-gradient(90deg, var(--yellow), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
}

nav {
    display: flex;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin: 0;
}

nav a {
    color: white;
    text-decoration: none;
    margin-left: 30px;
    font-weight: 600;
    transition: color 0.3s;
    display: block;
}

nav a:hover {
    color: var(--yellow);
}

.hero {
    height: 100vh;
    background: url('https://jazzfestival-neuwied.de/wp-content/uploads/2023/04/cropped-8E73FD88-E902-42FC-B953-6C2E571D72B9-e1549449527638-2-e1680775993304.jpeg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    text-align: center;
    padding: 40px;
    backdrop-filter: blur(15px);
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    max-width: 800px;
}

.hero h1 {
    font-size: 4rem;
    background: linear-gradient(90deg, var(--yellow), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0 0 20px 0;
}

.hero p {
    font-size: 2rem;
    color: var(--yellow);
    margin: 20px 0;
}

.program {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    backdrop-filter: blur(15px);
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.2);
}

.card h3 {
    color: var(--yellow);
    font-size: 1.8rem;
    margin-top: 0;
    font-weight: 600;
    letter-spacing: 1px;
}

.card img {
    width: 100%;
    height: auto;
    display: block;
}

.card p {
    color: #ccc;
    line-height: 1.6;
}

.card .excerpt {
    color: #bbb;
    font-size: 1rem;
    line-height: 1.6;
    margin: 15px 0;
    font-style: normal;
}

section {
    padding: 100px 5%;
}

h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
    background: linear-gradient(90deg, var(--yellow), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

h3 {
    font-weight: 600;
    letter-spacing: 1px;
}

.btn {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 40px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 140, 0, 0.15));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: var(--yellow);
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2), 
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.25), rgba(255, 140, 0, 0.25));
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.4), 
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-card {
    margin-top: 20px;
    padding: 12px 30px;
    font-size: 0.85rem;
}

footer {
    text-align: center;
    padding: 50px;
    background: rgba(0, 0, 0, 0.8);
    font-size: 1rem;
}

footer a {
    color: var(--yellow);
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: var(--orange);
}

/* WordPress Specific */
.wp-block-image {
    margin: 20px 0;
}

.aligncenter {
    text-align: center;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--orange);
    font-size: 2rem;
    cursor: pointer;
    padding: 8px;
    font-weight: normal;
    z-index: 1001;
    line-height: 1;
}

.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    z-index: 998;
}

.menu-overlay.active {
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { 
        font-size: 2.5rem; 
    }
    
    .hero p { 
        font-size: 1.3rem; 
    }
    
    .hero-content {
        padding: 30px 20px;
    }
    
    header {
        flex-wrap: nowrap;
        padding: 15px 20px;
        justify-content: space-between;
        align-items: center;
    }
    
    .logo {
        font-size: 1.3rem;
        margin-bottom: 0;
        gap: 10px;
    }
    
    .logo .header-logo-img {
        height: 35px;
    }
    
    .menu-toggle {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        transition: right 0.3s ease;
        padding: 80px 30px 30px;
        overflow-y: auto;
        z-index: 999;
        display: flex;
        flex-direction: column;
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        width: 100%;
        margin: 0;
        padding: 0;
        list-style: none;
    }
    
    nav ul li {
        margin: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    nav a { 
        margin: 0;
        padding: 15px 0;
        display: block;
        font-size: 1.1rem;
    }
    
    section {
        padding: 60px 20px;
    }
    
    .program {
        grid-template-columns: 1fr;
    }
    
    h2 {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }
    
    .card {
        padding: 25px;
    }
}