/*
Theme Name: Inferno Festival Theme
Author: Dein Name
Version: 1.0
*/

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    background-color: #0b0c10;
    color: #ffffff;
    font-family: 'Montserrat', Arial, sans-serif;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: rgba(11, 12, 16, 0.95);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 69, 0, 0.3);
    backdrop-filter: blur(5px);
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    font-size: 22px;
    color: #ff4500;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
}
.logo img {
    height: 45px;
    width: auto;
}

/* Dynamisches WP-Menü Styling */
nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}
nav a {
    color: #d1d5db;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    transition: color 0.2s;
}
nav a:hover {
    color: #ff4500;
}

.btn-header {
    background: #2b7a9e;
    color: #fff;
    padding: 10px 20px;
    border-radius: 3px;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    transition: background 0.2s;
    white-space: nowrap;
}
.btn-header:hover {
    background: #3b91ba;
}

.burger-menu,
.mobile-only-btn {
    display: none;
}

.burger-menu {
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}
.burger-menu span {
    width: 100%;
    height: 3px;
    background: #ff4500;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hero-wrapper {
    height: 100vh;
    position: relative;
    margin-top: 75px;
}
.hero {
    position: sticky;
    top: 75px;
    height: calc(100vh - 75px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: radial-gradient(circle, rgba(255, 69, 0, 0.2) 0%, rgba(11, 12, 16, 1) 75%);
    padding: 40px 20px;
    z-index: 1;
    overflow: hidden;
}

.hero::before,
.hero::after {
    content: '';
    position: absolute;
    top: -5%;
    bottom: -5%;
    width: 320px;
    z-index: 1;
    pointer-events: none;
    background-repeat: no-repeat;
    background-size: 100% 130%;
    will-change: transform, opacity;
    transition: transform 0.05s linear, opacity 0.05s linear;
}

.hero::before {
    left: 0;
    background-image: url('assets/images/Flamme_links.png');
    background-position: left center;
    transform-origin: left center;
}

.hero::after {
    right: 0;
    background-image: url('assets/images/Flamme_rechts.png');
    background-position: right center;
    transform-origin: right center;
}

.main-logo {
    max-width: 450px;
    width: 100%;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 25px rgba(255, 69, 0, 0.6));
    will-change: transform, opacity;
    transition: transform 0.05s linear, opacity 0.05s linear;
    z-index: 2;
}
.hero-subtitle {
    font-size: 24px;
    color: #ff5500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    font-weight: 900;
    text-shadow: 0 0 10px rgba(255, 69, 0, 0.5);
    z-index: 2;
}
.btn-hero {
    border: 2px solid #ff4500;
    background: rgba(255, 69, 0, 0.05);
    color: #ffffff;
    padding: 12px 35px;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    text-decoration: none;
    box-shadow: 0 0 15px rgba(255, 69, 0, 0.4);
    transition: all 0.3s ease;
    z-index: 2;
}
.btn-hero:hover {
    background: #ff4500;
    color: #000;
    box-shadow: 0 0 25px rgba(255, 69, 0, 0.8);
}

.content-container {
    position: relative;
    z-index: 2;
    background: #0b0c10;
    padding: 40px 20px;
    box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.9);
    flex: 1;
}
.page-wrapper {
    max-width: 1000px;
    margin: 100px auto 40px;
    padding: 0 20px;
}
.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 900;
    text-transform: uppercase;
    color: #ff5500;
    margin: 30px 0 25px;
    letter-spacing: 2px;
}
.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.artist-card {
    background: #101216;
    border: 2px solid #2b4c5e;
    border-radius: 4px;
    padding: 35px 15px;
    text-align: center;
    font-size: 22px;
    font-weight: 900;
    color: #ff6600;
}

footer {
    position: relative;
    z-index: 3;
    background: #07080a;
    border-top: 1px solid rgba(255, 69, 0, 0.2);
    padding: 30px 20px;
    text-align: center;
    color: #8b929e;
    font-size: 13px;
}
.footer-nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 20px;
    margin-bottom: 15px;
}
.footer-nav a {
    color: #d1d5db;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    transition: color 0.2s;
}
.footer-nav a:hover {
    color: #ff4500;
}

@media (max-width: 768px) {
    header {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        padding: 10px 15px;
    }
    .logo {
        grid-column: 1;
        justify-self: start;
    }
    .logo span {
        display: none;
    }
    .btn-header {
        grid-column: 2;
        justify-self: center;
        padding: 8px 14px;
        font-size: 12px;
    }
    .burger-menu {
        grid-column: 3;
        justify-self: end;
        display: flex;
    }
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: rgba(11, 12, 16, 0.98);
        backdrop-filter: blur(10px);
        border-left: 1px solid rgba(255, 69, 0, 0.3);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        z-index: 1000;
    }
    nav.active {
        right: 0;
    }
    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }
    nav a {
        font-size: 18px;
    }
    .mobile-only-btn {
        display: block;
        margin-top: 15px;
    }
    .btn-menu-ticket {
        background: #ff4500 !important;
        color: #000 !important;
        padding: 10px 25px;
        border-radius: 4px;
        font-weight: 900;
        text-transform: uppercase;
        display: inline-block;
    }
    .hero::before,
    .hero::after {
        width: 110px;
        background-size: 100% 110%;
    }
    .hero::before {
        background-position: left 20%;
    }
    .hero::after {
        background-position: right 20%;
    }
    .main-logo {
        max-width: 260px;
    }
    .hero-subtitle {
        font-size: 15px;
        padding: 0 10px;
    }
    .artists-grid {
        grid-template-columns: 1fr;
    }
}
