* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
body {
    background: linear-gradient(120deg, #1a1a1a, #4b2c4f);

    color: #f5f5f5;
    line-height: 1.6;
}
header h1, .hero h2, h3 {
    font-family: 'Creepster', cursive;
}

header {
    background-color: #000;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 10;
}
header h1 {
    font-size: 1.8rem;
    color: #e63946;
}
nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: color 0.3s;
}
nav a:hover {
    color: #ff7518;
}
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 60px 20px;
}
.hero img {
    width: 500px;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
@media (max-width: 768px) {
    .hero img {
        width: 100%;
        max-width: 600px;
    }
}



.hero h2 {
    margin-top: 30px;
    font-size: 2rem;
    color: #d62828;
}
.hero p {
    margin-top: 10px;
    max-width: 700px;
    font-size: 1.1rem;
}
.content-section {
    padding: 40px 20px;
    max-width: 1400px;
    margin: 0 auto;
}
.content-section h3 {
    color: #e63946;
    margin-bottom: 20px;
}
.content-section p {
    margin-bottom: 20px;
}
footer {
    background-color: #730c0c;
    text-align: center;
    padding: 20px;
    margin-top: 60px;
    box-shadow: 0 -2px 6px rgba(0,0,0,0.05);
}
footer p {
    color: #f5f5f5;
    font-size: 0.9rem;
}

footer a {
    color: #e63946;
    text-decoration: none;
    font-weight: 600;
}

.band-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 20px;
}
.member {
    text-align: center;
    background: #3d0000;

    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;

}
.member:hover {
    cursor: pointer;
    transform: scale(1.05);
    transition: transform 0.3s;
}

.member img {
    width: 150px;
    max-width: 100%;
    height: auto;
    filter: brightness(40%);

    border-radius: 100%;
    margin-bottom: 10px;
}
.member h4 {
    font-size: 1.2rem;
    color: #e63946;
}
.member p {
    font-size: 1rem;
    color: #ffffff;
}

/* Modal Styles */
.modal {
    font-family: 'Creepster', cursive;
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5); /* Black background with opacity */
}
.modal-flex {
    display: flex;
    align-items: flex-start;

    gap: 20px;
}

.modal-img {
    filter: brightness(40%);
    width: 300px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    opacity: 0.1;
    z-index: 9999;
    pointer-events: none;
}

.modal-info {
    text-align: left;
}

.modal-info h2 {
    margin-bottom: 10px;
    color: #e63946;
}

.modal-info p {
    margin: 5px 0;
    line-height: 1.5;
}
.modal-content {
    background-color: rgba(0, 0, 0); /* Black background with opacity */

    margin: auto;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 600px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    font-family: 'Creepster', cursive;
}

.modal-content h2 {
    color: #e63946;
    margin-bottom: 15px;
}

.modal-content p {
    margin: 10px 0;
    line-height: 1.5;
}

.close-btn {
    color: #ff6767;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-btn:hover,
.close-btn:focus {
    color: #e63946;
    text-decoration: none;
}

button {
    background-color: #ff7518;
    box-shadow: 0 0 10px #ff7518;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.iframe-spotify {


    transition: transform 0.3s;
}

.iframe-spotify:hover {
    transform: scale(1.02);
    transition: transform 0.3s;
}

.social-media {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

#mobil-place{
    display: none;
}

/* Modal Styles for Mobile */
@media (max-width: 768px) {
    .modal-content {
        width: 90%; /* Adjust width for smaller screens */
        max-width: 400px; /* Limit the maximum width */
        margin: auto; /* Adjust vertical margin */
        padding: 15px; /* Reduce padding */
    }


    #mobil-place{
        display: block;
    }
    .modal-flex {
        flex-direction: column; /* Stack image and info vertically */
        align-items: center; /* Center align content */
        gap: 10px; /* Reduce gap between elements */
    }

    .modal-img {
        width: 80%; /* Make the image responsive */
        max-width: 200px; /* Limit the maximum width */
    }

    .modal-info {
        text-align: center; /* Center align text for better readability */
    }

    .modal-info h2 {
        font-size: 1.5rem; /* Adjust font size for smaller screens */
    }

    .modal-info p {
        font-size: 1rem; /* Adjust paragraph font size */
    }
}

span {
    color: #e63946;
    font-weight: 600;
}

nav a {
    cursor: pointer;
}

/* Menu icon styles */
.menu-icon {
    display: none; /* Hide by default */

}

/* Hide nav links and show menu icon on small screens */
@media (max-width: 768px) {
    nav {
        display: none;
        flex-direction: column;
        background-color: #fff;
        position: absolute;
        top: 60px;
        right: 20px;
        width: 200px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        border-radius: 10px;
    }

    nav a {
        margin: 10px 0;
        padding: 10px;
        text-align: center;
        display: block;
    }

    .menu-icon {
        display: block;
        font-size: 1.5rem;
        cursor: pointer;
    }
}

#demoModal{
    display: flex;

}
#headertitle{
    font-family: 'Creepster', cursive;
}

.social-media-social {
    text-align: center;
    background: #270101;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;

}


/* Modal Fade-In/Fade-Out */
.modal {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.4,0,0.2,1);
}
.modal.show {
    opacity: 1;
    pointer-events: auto;
}

/* Modal-Content Slide & Scale */
.modal-content {
    transform: translateY(-40px) scale(0.95);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.4,0,0.2,1), opacity 0.5s cubic-bezier(0.4,0,0.2,1);
}
.modal.show .modal-content {
    transform: translateY(0) scale(1);
    opacity: 1;
}
.social-media-social:hover {
    cursor: pointer;
    transform: scale(1.05);
    transition: transform 0.3s;
}

.social-media-section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 40px 20px;
}

.social-media-section h1 {
    color: #e63946;
    margin-bottom: 20px;
}

.band-members a {
    text-decoration: none;
    color: inherit;
}

.modal-img {
    width: 100%;
    max-width: 300px; /* Limit the maximum width */
    height: auto; /* Maintain aspect ratio */
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#weh3 {
    cursor: pointer;
}


.musiksingle {
    display: flex;
    align-items: center;

    gap: 20px;
    margin-bottom: 20px;
    background: #fff;
    width: 90vw;
    max-width: 1200px;
    padding: 15px;
    border-radius: 10px;

    transition: transform 0.3s;
}

.musiksingle img {
    width: 150px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.icon {
    width: 50px !important;
    height: 50px !important;

}
@media (max-width: 768px) {
    .musiksingle {
        display: block;
        text-align: center;
    }
    .musiksingle img {
        width: 60%;
        max-width: 300px;
        margin-bottom: 20px;
    }


    .icon {
        width: 30px !important;
        height: 30px !important;

    }

}

.musiksingle h1 {

    font-size: 1.5rem;
    color: #e63946;
    margin: 0;
}

.musiksingle p {
    font-size: 1rem;
    color: #ffffff;
    margin: 5px 0 0;
}

.musiksingle:hover {
    transform: scale(1.02);
    transition: transform 0.3s;
}

.event {
    background: linear-gradient(rgba(39, 39, 39, 0.7), rgba(0, 0, 0, 0.8));
    padding: 40px 20px;

    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    margin: 20px 10px;
    width: calc(50% - 40px);
    transition: transform 0.3s, box-shadow 0.3s;
}

@media (max-width: 768px) {
    .event {
        width: calc(100% - 40px);
    }
}

.event:hover {
    transform: translateY(-5px);
    transition: transform 0.3s;
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.event h3 {
    color: #e63946;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.event p {
    margin: 5px 0;
}

.event button {
    background-color: #e63946;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#about {
    background-color: #070707;
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
}
 h1{   color: #e63946;     font-family: 'Creepster', cursive;}
#about h2{   color: #e63946;       font-family: 'Poppins', sans-serif;}
#about h3{color: #e63946;      font-family: 'Poppins', sans-serif;}


/* Form styles */
#contactForm {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #2c0000;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.success-message {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

.success-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 600px;
    width: 90%;
    animation: fadeIn 0.5s ease-in-out;
}

.success-card h3 {
    color: #28a745;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.success-card img {
    width: 150px;
    height: 150px;
    margin-bottom: 20px;
    border-radius: 5%;
    transition: transform 0.3s ease;
}



.success-card p {
    font-size: 1rem;
    color: #333;
    line-height: 1.5;
}

.success-card button {
    background-color: #e63946;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    margin-top: 20px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
#contactForm label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
}
#contactForm input, #contactForm textarea, #contactForm select {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
#contactForm button {
    background-color: #e63946;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
}
#contactForm button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}
.error-message {
    color: red;
    font-size: 0.9rem;
    margin-top: -15px;
    margin-bottom: 10px;
}

#imprint {
    background-color: #0c0c0c;
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
}


#loadingIndicator {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f5f5f5;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.musiksingle{
    background-position: center; background: linear-gradient(rgba(39, 39, 39, 0.7), rgba(0, 0, 0, 0.8)), url('file/Musikbg.jpg'); background-repeat: no-repeat; background-size: cover;}