/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    color: #fff;
    background-color: #000;
}

/* Video Background */
.image-background {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: 0;
}

.image-background img {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 200vw;
    height: 200vh;
    object-fit: cover;
    transform: translate(-50%, -50%);
}

@media (max-width: 414px) {
    .section {
        padding: 30px 10px; /* Weniger Padding auf kleinen Bildschirmen */
    }

    .hero-content h1 {
        font-size: 2rem; /* Kleinere Schriftgröße */
    }

    .hero-content p {
        font-size: 1rem; /* Kleinere Schriftgröße */
    }

    .btn {
        font-size: 16px; /* Kleinere Schriftgröße für Buttons */
    }
}

/* Overlay */
.overlay-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 7%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

/* Content */
.hero-content, .section, footer {
    position: relative;
    z-index: 2;
}

/* Hero Content */
.hero-content {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -20%);
    text-align: center;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.btn {
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    border: none;
    outline: none;
    width: 100%;
    height: 55px;
    background: #FFF;
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    font-size: 16px;
    color: #000;
    font-weight: 600;
	border-radius:8px;
	cursor:pointer;
	font-family:Arial;
	font-size:20px;
}

.btn::after {
    content: "";
    z-index: -1;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #333;
    left: 0;
    top: 0;
    border-radius: 10px;
  }
.btn::before {
    content: "";
    background: linear-gradient(
        45deg,
        #A2FF00, #7FFF00, #00FF1E, #00FF66,
        #00FFA8, #00FFEE, #00FFB3, #A2FF00
    );
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 600%;
    z-index: -1;
    width: calc(100% + 4px);
    height:  calc(100% + 4px);
    filter: blur(8px);
    animation: glowing 20s linear infinite;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
    opacity: 0;
}

@keyframes glowing {
    0% {background-position: 0 0;}
    50% {background-position: 400% 0;}
    100% {background-position: 0 0;}
}

/* hover */
.btn:hover::before {
    opacity: 1;
}

.btn:active:after {
    background: transparent;
}

.navbar {
    position: fixed;
    top: 0;
    height: 12%;
    display: flex;
    align-items: center;
    justify-content: center; /* Zentriert die Inhalte horizontal */
    width: 100%;
    height: 8vh;
    z-index: 99;
    background-image: linear-gradient(rgb(0, 0, 0, 1), rgb(0, 0, 0, 1));
}

.navbar ul {
    display: flex; /* Macht die Listenelemente inline */
    list-style: none; /* Entfernt die Aufzählungszeichen */
}

.navbar ul li {
    margin: 0 25px; /* Fügt Abstand zwischen den Links hinzu */
}

.navbar ul li a {
    color: #fff; /* Link color */
    text-decoration: none; /* Remove underline */
    text-transform: uppercase; /* Uppercase text */
    font-weight: bold; /* Bold text */
    font-size: 0.8rem; /* Font size */
    padding: 5px 0px; /* Add padding for clickable area */
    transition: color 0.3s; /* Transition for hover effect */
}


.navbar ul li a:hover {
    color: #d3d3d3;
}

/* Section Styles */
.section {
    padding: 50px 20px;
    text-align: center;
}

.section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Grid Layout */
.artist-grid, .event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 2rem;
}

.artist-card, .event-card {
    background-color: #111;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s;
}

.artist-card img, .event-card img, .event-card video {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.artist-card:hover, .event-card:hover {
    transform: scale(1.005);
}

.artist-card h3, .event-card h3 {
    margin-top: 10px;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Footer */
footer {
    background-color: #111;
    padding: 20px;
    text-align: center;
    z-index: 10;
    
}

.social-media a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
}

footer p {
    margin-top: 10px;
    font-size: 0.9rem;
}
