@import url('https://fonts.googleapis.com/css2?family=Alfa+Slab+One&family=Lexend:wght@100..900&display=swap');

/* CSS Variablen */
:root {
    --bg-dark: #0b0b10;
    --bg-glass: rgba(0, 0, 0, 0.45);
    --accent: #FB48C4;
    --accent-soft: rgba(251, 72, 196, 0.35);
    --text-muted: #bbbbbb;
    --radius: 22px;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Lexend", sans-serif;
        font-optical-sizing: auto;
        
}

/* Body */
body {
    height: 100vh;
    
    color: #ffffff;
    text-align: center;

    background: linear-gradient(-45deg, #0a071e, #1d0310, #000000, #36113e);
    background-size: 400% 400%;
    animation: gradientBG 30s ease infinite;
    background-attachment: fixed;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(14px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 48px;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

header h1 {
    font-size: 22px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 2px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav a {
    position: relative;
    text-decoration: none;
    color: white;
    font-size: 13px;
    letter-spacing: 1px;
}

nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: var(--accent);
    transition: 0.3s;
}

nav a:hover::after {
    width: 100%;
}

/* Hero */
.hero {
    height: 100vh;
    background: url("https://via.placeholder.com/1600x900") center / cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-content h1 {
    font-size: 4.5rem;
    letter-spacing: 6px;
    text-transform: uppercase;
}

.hero-content p {
    font-size: 1.2rem;
    opacity: 0.85;
}


.btn {
    padding: 14px 36px;
    border-radius: 50px;
    border: 2px solid var(--accent);
    background: transparent;
    
    color: white;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: 0.35s;

    background-color:#fb48c51f;
}

.btn:hover {
    background: var(--accent);
    color: black;
    box-shadow: 0 0 30px var(--accent-soft);
}
/* Sections */
section {
    padding: 80px 64px;
}

h2,
.section-title {
    font-size: 36px;
    margin-bottom: 48px;
    text-align: center;
}

/* About */
.about p {
    max-width: 800px;
    margin: auto;
    text-align: center;
    font-size: 16px;
}

/* Music */
.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.music-card {
    background: #000000;
    padding: 30px;
    text-align: center;
}

/* Gallery */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    
}

.gallery img {
    width: 100%;
    display: block;
}

/* Contact */
.contact form {
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact input,
.contact textarea {
    padding: 15px;
    border: none;
    background: #1a1a1a;
    color: #ffffff;
}

.contact button {
    padding: 15px;
    background: #af31891a;
    border: none;
    color: #ffffff;
    font-weight: bold;
    cursor: pointer;
}

.contact input,
.contact textarea {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact button {
    background: var(--accent);
    border-radius: 50px;
    color: black;
    letter-spacing: 1px;
   
}

.contact button:hover {
    box-shadow: 0 0 25px var(--accent-soft);
    
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.6);
    padding: 30px;
    font-size: 13px;
    letter-spacing: 1px;
}
/* Slideshow */
.slideshow {
    width: 1100px;
    height: 350px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 20px 40px #fb48c52c;
    
}
.slides {
    display: flex;
    width: calc(300px * 32);
    animation: slide 120s infinite linear;
}

.slides img {
    width: 300px;
    height: 350px;
    object-fit: cover;
}

/* Slide Animation */
@keyframes slide {
    0% {
        transform: translateX(0);
    }


    100% {
        transform: translateX(-8700px);
    }
}

/* Background Animation */
@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Typography */
.titan-one-regular {
    font-family: "Titan One", sans-serif;
    font-weight: 400;
}

span {
    color: #FB48C4;
}

/* Images */
#portrait {
    width: 150px;
}

.kai {
    padding: 15px;
    width: 120px;
}

/* Cards */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
}

.card {
    background: var(--card);
    padding: 32px;
    border-radius: 24px;
    transition: 0.3s;
    background-color: #00000031;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px #4a153a70;
}

.card img {
    width: 100%;
    border-radius: 16px;
    margin-bottom: 16px;
}

.card h3 {
    margin-bottom: 8px;
}

.card p {
    color: var(--muted);
    font-size: 14px;
}

/* About Layout */
.about-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.about-text {
    max-width: 500px;
    font-size: 16px;
    line-height: 1.6;
}

/* Clickable Box */
.about-box {
    margin: 60px auto 0;
    max-width: 420px;
    padding: 32px;
    background: #fb48c52c;
    border-radius: 24px;
    text-decoration: none;
    color: white;
    display: block;
    transition: 0.3s ease;
    box-shadow: 0 10px 30px #00000070;
}

.about-box h3 {
    margin-bottom: 12px;
    color: #FB48C4;
}

.about-box p {
    color: #ffffff;
    font-size: 14px;
}

.about-box:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 40px #fb48c470;
    background: #fb48c58a;
}

/* Biografie-Section */
.bio-section {
    padding: 50px 20px;
}


.bio-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: flex-start;
}


/* Bild links */
.bio-image img {
    width: 100%;
    max-width: 300px;
    border: 5px solid #ffffff66;
    /* weißer Rahmen */
    border-radius: 5px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    justify-content: center;
}


/* Text rechts */
.bio-text {
    flex: 1;
    min-width: 300px;
}


.bio-text h1 {
    color: #ffffff;
    margin-bottom: 10px;
}


.bio-text h2 {
    color: #ffffff;
    font-weight: normal;
    margin-bottom: 20px;
}


.bio-text p {
    margin-bottom: 20px;
    line-height: 1.7;
}


/* Zitat am Ende */
.bio-quote {
    text-align: center;
    font-style: italic;
    color: #FB48C4;
}


/* Responsive Anpassung für Smartphones */
@media (max-width: 768px) {
    .bio-container {
        flex-direction: column;
        align-items: center;
        
    }


    .bio-image img {
        max-width: 200%;
    }


    .bio-text {
        text-align: left;
        
    }
}


.tour {
    display: flex;
    margin-bottom: 25px;
  
    padding: 15px;
    justify-content: center;
}

.date {
    width: 60px;
    text-align: center;
    border: 1px solid white;
    margin-right: 15px;
}

.date span {
    font-size: 12px;
}

.date strong {
    font-size: 22px;
}

/*  */

.main-header {
    background-color: #111;
    padding: 15px 0;
}

.nav-container {
    max-width: 1000px;
    margin: auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: white;
    font-size: 22px;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.hero-section {
 
    padding: 70px 20px;
    text-align: center;
}

.hero-section h1 {
    margin: 0;
    font-size: 36px;
}

.content-section {
    max-width: 800px;
    margin: auto;
    padding: 40px 20px;
    font-size: 18px;
    line-height: 1.6;
}

.about-events-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* Mobile: untereinander */
@media (max-width: 900px) {
    .about-events-wrapper {
        grid-template-columns: 1fr;
    }
}

/* Optional: etwas Card-Feeling */
.about,
.events {
    background: var(--bg-glass);
    border-radius: var(--radius);

    backdrop-filter: blur(10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

/* Hero Section mit Hintergrundbild */
.hero {
    position: relative;
    height: 100vh;
    /* Bildschirmhöhe */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    background-image: url('../DJ/pics/e5ab50f7-4e5e-4d03-879f-fa8bff98a84a.png');
    /* dein Bild */
    background-size: cover;
    /* Bild passt sich Bildschirm an */
    background-position: center;
    /* Bild zentrieren */
    background-repeat: no-repeat;
    /* kein Kacheln */
}

/* Optional: Overlay für dunkleren Effekt */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* halbtransparentes Schwarz */
    z-index: 1;
}

/* Hero Content über dem Overlay */
.hero-content {
    position: relative;
    z-index: 2;
}

/* HERO SECTION */
.hero {
    height: 100vh;
    /* volle Bildschirmhöhe */
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
        url("/DJ/pics/titelbild.png");
    /* <-- dein Bild */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;


    display: flex;
    align-items: center;
    justify-content: center;


    text-align: center;
    color: white;
}


/* Inhalt im Hero */
.hero-content h1 {
    font-size: 4rem;
    letter-spacing: 4px;
}


.hero-content h1 span {
    color: #FB48C4;
    /* Neon Akzent */
}


.hero-content p {
    font-size: 1.2rem;
    margin: 20px 0;
    opacity: 0.9;
}


/* Button */



/*  */



/* === FIX: Bootstrap Carousel Fade === */
.carousel {
position: relative;
}

.carousel-inner {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}


/* Alle Slides übereinander */
.carousel-fade .carousel-item {
position: absolute;
top: 0;
left: 0;


width: 100%;
height: 100%;


opacity: 0;
transition: opacity 1s ease-in-out;


}
.carousel-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}


/* Aktives Slide sichtbar */
.carousel-fade .carousel-item.active {
opacity: 1;
position: relative;
z-index: 1;
}


/* Bilder korrekt skalieren */

/* ===== Equipment Bilder – ohne Hintergrund ===== */
   

    .setup {
        width: 280px;
        height: 280px;
        object-fit: contain;
        background: transparent;
        /* KEIN Hintergrund */
        border-radius: 16px;
        filter: drop-shadow(0 12px 25px rgba(0, 0, 0, 0.6));
        transition: transform 0.3s ease, filter 0.3s ease;
    }


    /* Hover Effekt */
    .setup:hover {
        transform: translateY(-8px) scale(1.04);
        filter: drop-shadow(0 20px 40px rgba(105, 68, 101, 0.4));
    }


    /* Responsive */
    @media (max-width: 768px) {
        .setup {
            width: 220px;
            height: 220px;
        }
    }

        /* ===== Equipment Galerie ===== */
        .equipment-gallery {
            display: flex;
            justify-content: center;
            gap: 3rem;
            flex-wrap: wrap;
            padding: 4rem 1.5rem;
        }
    
        .equipment-item {
            text-align: center;
            max-width: 300px;
        }
    
        /* Bilder */
        .setup {
            width: 280px;
            height: auto;
            object-fit: contain;
            filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.45));
            transition: transform 0.35s ease, filter 0.35s ease;
        }
    
        .equipment-item:hover .setup {
            transform: translateY(-6px) scale(1.05);
            filter:
                drop-shadow(0 14px 30px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 18px rgba(117, 76, 106, 0.25));
        }
    
        /* Beschreibung */
        .equipment-text {
            margin-top: 1rem;
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: 0.5px;
        }
    
        .equipment-text span {
            display: block;
            font-size: 0.85rem;
            opacity: 0.7;
            margin-top: 0.2rem;
        }
    
        /* Mobile */
        @media (max-width: 768px) {
            .setup {
                width: 220px;
            }
        }

                /* ============================= */
                /* 📱 MOBILE FIRST OPTIMIERUNG */
                /* ============================= */
        
                @media (max-width: 768px) {
        
                    /* BODY */
                    body {
                        font-size: 15px;
                    }
        
                    /* HEADER */
                    header {
                        position: relative;
                        /* FIX: kein fixed auf Handy */
                        flex-direction: column;
                        gap: 15px;
                        padding: 15px 20px;
                        text-align: center;
                    }
        
                    header h1 {
                        font-size: 24px;
                    }
        
                    /* NAVIGATION */
                    nav ul {
                        flex-wrap: wrap;
                        justify-content: center;
                        gap: 15px;
                    }
        
                    nav a {
                        font-size: 13px;
                    }
        
                    /* SECTIONS */
                    section {
                        padding: 50px 20px;
                    }
        
                    /* BIO SECTION */
                    .bio-container {
                        flex-direction: column;
                        align-items: center;
                        text-align: left;
                    }
        
                    .bio-image img {
                        max-width: 220px;
                    }
        
                    .bio-text {
                        min-width: 100%;
                    }
        
                    .bio-text h1 {
                        font-size: 22px;
                        text-align: center;
                    }
        
                    .bio-text p {
                        font-size: 15px;
                        line-height: 1.6;
                    }
        
                    .bio-quote {
                        text-align: center;
                        font-size: 14px;
                    }
        
                    /* HERO */
                    .hero {
                        height: 70vh;
                        padding: 20px;
                    }
        
                    .hero-content h1 {
                        font-size: 2.2rem;
                        letter-spacing: 2px;
                    }
        
                    .hero-content p {
                        font-size: 1rem;
                    }
        
                    /* BUTTON */
                   
        
                    /* SLIDESHOW */
                    .slideshow {
                        width: 100%;
                        height: 220px;
                    }
        
                    .slides img {
                        width: 220px;
                        height: 220px;
                    }
        
                    /* CARDS / GRIDS */
                    .cards,
                    .music-grid,
                    .gallery-grid {
                        gap: 20px;
                    }
        
                    /* FOOTER */
                    footer {
                        font-size: 12px;
                    }
                }

.webCreator{
    color: rgba(255, 152, 233, 0.427);
}

.emailbox{
    
        color: rgb(255, 255, 255);
}

.link{
    color: rgb(255, 255, 255);
}

/* ========================= */
/* Vergangene Events */
/* ========================= */

#past-events {
    padding-top: 140px;
    /* wegen fixed Header */
}

#past-events .card h3 {
    font-size: 18px;
    margin-top: 10px;
}

#past-events .card p {
    font-size: 14px;
    line-height: 1.5;
}

.coloring{
    color: white;
}


@media (max-width: 768px) {
    header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
      
    }

    body {
        padding-top: 120px;
    }
}

