/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
 
}

/* BODY */
body {
    font-family: Arial, sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* HEADER */
header {
    position: fixed;
    width: 100%;
    padding: 20px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(12px);
    z-index: 1000;
}

header.scrolled {
    background: rgba(0, 0, 0, 0.95);
}

header div {
    font-size: 1.4rem;
    font-weight: bold;
    letter-spacing: 2px;
}

nav a {
    color: #ffffff;
    margin-left: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

nav a:hover {
    color: #ffffff4c;
}

/* HERO */
.hero {
    height: 100vh;
    background: url('/DJ/pics/Hlelei/hintergrund.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 0 20px;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.85));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 20px;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.8);
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.8);
}

/* BUTTON */
.btn {
    padding: 15px 40px;
    background: #ff97e05b;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
    display: inline-block;
}

.btn:hover {
    color: rgba(255, 255, 255, 0.265);
    background: #b19baa6d;
    transform: translateY(-3px);
}

/* SECTIONS */
.section {
    padding: 140px 10%;
    background: #000000;
}

.section:nth-child(even) {
    background: #000000;
}

.section h2 {
    font-size: 3rem;
    margin-bottom: 30px;
}

.section p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #dddddd;
}

/* FLEX LAYOUT */
.flex {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.flex img {
    width: 100%;
    max-width: 300px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.text {
    flex: 1;
    min-width: 300px;
}

/* CARDS */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: #000000;
    padding: 30px;
    border-radius: 12px;
    transition: 0.4s;
    border: 1px solid #222;
}

.card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.card p {
    color: #bbb;
}

.card:hover {
    transform: translateY(-10px);
    background: #060606;
}

/* PARALLAX */
.parallax {
    height: 60vh;
    background: url('/DJ/pics/dj4.jpg') center/cover fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.parallax h2 {
    font-size: 3.5rem;
    text-shadow: 0 5px 25px rgba(0, 0, 0, 0.8);
}

/* SCROLL REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(80px);
    transition: 1s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* FOOTER */
footer {
    text-align: center;
    padding: 50px;
    background: #000;
    font-size: 0.9rem;
    color: #777;
}

/* RESPONSIVE */
@media(max-width: 900px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .section {
        padding: 100px 5%;
    }

    header {
        padding: 20px 30px;
    }

    nav a {
        margin-left: 15px;
    }
}

.tour-item {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
    padding: 20px;
    background: #111;
    border-left: 4px solid #ffc6ee71;
}

.past-events {
    text-align: center;
    margin-top: 40px;
}

.btn-past {
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid #fb48c540;
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px #fb48c55d, 0 0 20px #fb48c55d, 0 0 30prgba(251, 72, 197, 0.212)C4;
}

.btn-past:hover {
    background: #fb48c54e;
    color: rgba(255, 255, 255, 0.256);
    box-shadow: 0 0 20px #ffffff0f, 0 0 40px #ffffff0f, 0 0 60px #ffffff0f;
    transform: translateY(-3px);
}

/* BOOKING FORM */

.booking-form {
    max-width: 700px;
    margin: 50px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #ccc;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border-radius: 6px;
    border: 1px solid #333;
    background: #1a1a1a;
    color: white;
    font-size: 1rem;
    transition: 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffa7e5;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

button {
    padding: 15px;
    color: #ffffff;
    background: #fb48c557;
    border: none;
    cursor: pointer;

}

button:hover {
    color: #ebb5db7c;
    background: #ffb0e75f;
}

.link{
    color: rgba(255, 255, 255, 0.432);
    text-decoration: none;
}

.footer {
    text-align: center;
    padding: 40px 20px;
    background: #000;
    color: #ffffffa0;
    font-size: 0.9rem;
}

.footer a.webCreator {
    color: var(--accent);
    margin-left: 5px;
    transition: 0.3s;
}

.footer a.webCreator:hover {
    color: #fff;
}

.about-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    border: 2px solid #fb48c56d;
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.about-btn:hover {
    background: #fb48c541;
    color: rgb(255, 255, 255);
}

.bio-quote {
    text-align: center;
    font-style: italic;
    color: #ff97e0;
}

.card {
    overflow: hidden;
}

.card img {
    width: 100%;
    height: auto;
    /* 👉 keine Verzerrung, volle Höhe */
    border-radius: 10px;
    margin-bottom: 15px;
}

.equipment-wrapper {
    max-width: 900px;
    margin: 0 auto;
    /* 👉 zentriert alles */
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.equipment-item {
    justify-content: center;
    /* 👉 Inhalt mittig */
    text-align: left;
}

/* Grundlayout */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    background: #111;
    color: white;
    position: relative;
}

.logo {
    font-size: 1.3rem;
    font-weight: bold;
}

/* Navigation Desktop */
.nav {
    display: flex;
    gap: 24px;
}

.nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

/* Burger Button */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.burger span {
    width: 26px;
    height: 3px;
    background: white;
    display: block;
    border-radius: 2px;
    transition: 0.3s;
}

/* 📱 Mobile Styles */
@media (max-width: 768px) {

    .burger {
        display: flex;
    }

    .nav {
        position: absolute;
        top: 100%;
        right: 0;
        background: #111;
        flex-direction: column;
        width: 220px;
        padding: 20px;
        gap: 16px;
        transform: translateY(-20px);
        opacity: 0;
        pointer-events: none;
        transition: 0.25s ease;
        border-radius: 0 0 12px 12px;
    }

    .nav.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
}

/* Navigation Links */
.nav a {
    position: relative;
    text-decoration: none;
    color: white;
    padding: 4px 0;
}

/* der Strich */
.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background: #ffa8e577;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

/* Hover Effekt */
.nav a:hover::after {
    transform: scaleX(1);
}

/* aktuelle Seite (bleibt sichtbar) */
.nav a.active::after {
    transform: scaleX(1);
}

/* Header fixieren beim Scrollen */
.header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.85);
    /* leicht transparent, schöner Effekt */
    backdrop-filter: blur(10px);
    transition: background 0.3s ease;
}

/* Hero-Titel horizontal und vertikal Abstand geben */
.hero-content {
    padding: 40px 20px;
    /* 40px oben/unten, 20px links/rechts */
    text-align: center;
    /* Titel zentrieren */
}

.hero-content h1 {
    margin: 0;
    /* Standard-Margin entfernen */
    font-size: 3rem;
    /* optional: anpassen */
    color: #fff;
    /* sichtbar auf dunklem Hintergrund */
    word-wrap: break-word;
    /* verhindert, dass Text über den Rand geht */
}

.title{
    padding-left: 50px;
}

/* --- GLOBAL MOBILE ADJUSTMENTS --- */
@media(max-width: 768px) {
    body {
        font-size: 14px;
        /* kleinere Basis-Schriftgröße */
    }

    header,
    .header {
        padding: 15px 20px;
    }

    nav a,
    .nav a {
        font-size: 0.95rem;
        margin-left: 15px;
    }

    .hero {
        height: 70vh;
        padding: 0 15px;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .section {
        padding: 80px 5%;
    }

    .flex {
        gap: 30px;
        flex-direction: column;
        align-items: center;
    }

    .text {
        text-align: center;
    }

    .card-grid {
        gap: 20px;
        grid-template-columns: 1fr;
    }

    .btn,
    .btn-past,
    .about-btn,
    button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .booking-form {
        margin: 30px 10px;
        gap: 20px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 0.95rem;
        padding: 12px;
    }

    .parallax h2 {
        font-size: 2.5rem;
    }

    .equipment-wrapper {
        gap: 40px;
        padding: 0 10px;
    }

    .equipment-item {
        text-align: center;
    }

    .title {
        padding-left: 20px;
    }
}

/* Mobile Navigation Anpassungen */
@media(max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section h2 {
        font-size: 2rem;
    }

    .btn,
    .btn-past,
    .about-btn,
    button {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .booking-form {
        margin: 20px 5px;
    }

    nav a,
    .nav a {
        font-size: 0.85rem;
    }
}