/* Keep The Faith - Static Website Styles */
/* DSGVO-compliant self-hosted Poppins font implementation */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #d4af37;
    --gold-dark: #b8941f;
    --gold-light: #f4d03f;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #000;
    font-weight: 400;
}

/* Typography Enhancement - Poppins Font Weights */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 1rem;
}

h1 {
    font-weight: 700;
}

h2 {
    font-weight: 600;
}

h3 {
    font-weight: 600;
}

h4, h5 {
    font-weight: 500;
}

p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.hero-content h1 {
    font-weight: 800;
}

.section-header h1,
.section-header h2 {
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 2px solid var(--gold);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center;
    height: 70px;
}

.logo {
    height: 50px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--gold);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.mobile-menu {
    display: none;
}

/* Social Sidebar */
.social-sidebar {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 40;
}

.social-sidebar-container {
    background: rgba(17, 24, 39, 0.9);
    backdrop-filter: blur(8px);
    border-radius: 50px;
    padding: 16px;
    border: 1px solid #374151;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.social-sidebar a {
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-youtube {
    color: #ef4444;
}

.social-youtube:hover {
    color: #dc2626;
    transform: scale(1.1);
}

.social-facebook {
    color: #3b82f6;
}

.social-facebook:hover {
    color: #2563eb;
    transform: scale(1.1);
}

.social-instagram {
    color: #ec4899;
}

.social-instagram:hover {
    color: #db2777;
    transform: scale(1.1);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)), url('../assets/hero-bg.jpg');
    background-size: cover;
    background-position: center 20%;
    background-attachment: scroll;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    /* Ensure space for fixed header */
    padding-top: 90px;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2));
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1000px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    margin-bottom: 20px;
    background: linear-gradient(45deg, #DEC05B 0%, #E9D382 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
    animation: goldShine 3s ease-in-out infinite;
    text-shadow: none;
    display: inline-block;
    line-height: 1.2;
}

@keyframes goldShine {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-content p {
    font-size: clamp(1rem, 4vw, 1.5rem);
    margin-bottom: 30px;
    color: #ccc;
    font-weight: 300;
    line-height: 1.5;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 5vw, 1.8rem) !important;
    font-weight: 500 !important;
    color: #fff !important;
    letter-spacing: 2px;
    margin-bottom: 40px !important;
    line-height: 1.3;
}

.hero-video {
    margin: 40px 0;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    aspect-ratio: 16/9;
    border-radius: 20px;
    overflow: hidden;
    border: 4px solid #CCAC5C;
    box-shadow: 0 20px 50px rgba(204, 172, 92, 0.4);
    min-height: 500px;
}

@media (min-width: 1024px) {
    .video-container {
        min-height: 600px;
    }
}

@media (max-width: 768px) {
    .video-container {
        min-height: 250px;
        border-width: 3px;
    }
}

@media (max-width: 480px) {
    .video-container {
        min-height: 200px;
        border-width: 2px;
        border-radius: 15px;
    }
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.cta-button {
    display: inline-block;
    padding: 12px 24px;
    background: #CCAC5C;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(204, 172, 92, 0.3);
    font-size: 0.9rem;
    border: 2px solid transparent;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(204, 172, 92, 0.5);
    background: #D8B968;
}

/* Sections */
.section {
    padding: 80px 0;
}

/* Live-Teaser Section */
.live-teaser-section {
    background: linear-gradient(135deg, rgba(0,0,0,0.9), rgba(30,30,30,0.9)), url('../assets/KTF-119-1920x1080.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.teaser-video {
    max-width: 1200px;
    margin: 0 auto;
}

/* Social Follow Section */
.social-follow {
    text-align: center;
    margin: 40px 0;
    padding: 20px 0;
}

.social-follow h4 {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(204, 172, 92, 0.1);
    border: 2px solid var(--gold);
    border-radius: 50%;
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gold);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(204, 172, 92, 0.4);
}

.social-link svg {
    width: 24px;
    height: 24px;
}

.teaser-description {
    text-align: center;
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.teaser-description h3 {
    background: linear-gradient(45deg, #DEC05B 0%, #E9D382 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: bold;
    display: inline-block;
}

.teaser-description p {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.6;
}

.social-follow-section {
    background: rgba(17, 24, 39, 0.8);
    padding: 60px 0;
    border-top: 1px solid #374151;
    border-bottom: 1px solid #374151;
}

.social-follow {
    text-align: center;
}

.social-follow h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link.youtube {
    color: #FF0000;
    background: rgba(255, 0, 0, 0.1);
}

.social-link.facebook {
    color: #1877F2;
    background: rgba(24, 119, 242, 0.1);
}

.social-link.instagram {
    color: #E4405F;
    background: rgba(228, 64, 95, 0.1);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.1);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h1,
.section-header h2 {
    font-size: 3rem;
    background: linear-gradient(45deg, #DEC05B 0%, #E9D382 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    font-weight: bold;
    display: inline-block;
}

.section-header p {
    color: #ddd;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.5;
    margin-top: 20px;
}

.section-divider {
    width: 100px;
    height: 4px;
    background: var(--gold);
    margin: 0 auto;
}

/* Band Section */
.band-section {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(17, 24, 39, 0.8)), url('../assets/KTF-102-1920x1080.jpg');
    background-size: cover;
    background-position: center;
}

.band-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.band-intro p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 40px;
    line-height: 1.7;
}

.lars-highlight {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 30px;
    margin: 40px 0;
    text-align: left;
}

.lars-highlight h3 {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.lars-highlight p {
    color: #ccc;
    margin-bottom: 15px;
    line-height: 1.6;
}

.band-members {
    max-width: 1200px;
    margin: 0 auto;
}

.band-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.band-row-two {
    max-width: 800px;
    margin: 30px auto 0;
}

.band-member {
    background: rgba(17, 24, 39, 0.5);
    border: 1px solid #374151;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.band-member:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
}

.member-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    border: 3px solid var(--gold);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.band-member h3 {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.member-role {
    color: #9ca3af;
    font-weight: 500;
    margin-bottom: 15px;
}

.member-description {
    color: #ddd;
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 400;
}

.member-quote {
    background: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    padding: 10px;
    margin-top: 15px;
    color: var(--gold);
    font-style: italic;
    font-size: 0.9rem;
}

.band-closing {
    max-width: 800px;
    margin: 60px auto 0;
    text-align: center;
}

.band-closing h3 {
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.band-closing p {
    color: #ddd;
    font-size: 1.2rem;
    line-height: 1.7;
    font-weight: 400;
}

/* Tour Dates */
.tour-dates {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    border-radius: 15px;
    padding: 40px;
    margin-top: 30px;
}

.tour-date {
    background: rgba(17, 24, 39, 0.7);
    border: 1px solid #374151;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.tour-date:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
}

.tour-info h4 {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.tour-info p {
    color: #ccc;
    margin: 2px 0;
}

.tour-ticket-btn {
    background: linear-gradient(45deg, #CCAC5C, #E9D382);
    color: #000;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.tour-ticket-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

/* Tour Dates Section */
.tour-section {
    background: linear-gradient(135deg, rgba(0,0,0,0.9), rgba(30,30,30,0.9)), url('../assets/KTF-126-1920x1080.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.tour-date-card {
    background: rgba(17, 24, 39, 0.7);
    border: 1px solid #374151;
    border-radius: 15px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.tour-date-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
}

.date-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
    border-radius: 12px;
    padding: 20px;
    min-width: 100px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.date-day {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--gold);
    line-height: 1;
}

.date-month {
    font-size: 1rem;
    font-weight: 600;
    color: #E9D382;
    margin: 5px 0;
    letter-spacing: 1px;
}

.date-year {
    font-size: 1.1rem;
    color: #ccc;
    font-weight: 500;
}

.event-info {
    flex: 1;
}

.event-info h3 {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.event-info .venue {
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.event-info .time {
    color: #9ca3af;
    font-size: 1rem;
    font-weight: 500;
}

.ticket-info .ticket-btn {
    background: linear-gradient(45deg, #CCAC5C, #E9D382);
    color: #000;
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 1rem;
}

.ticket-info .ticket-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.ticket-info-text {
    color: #9ca3af;
    font-size: 1rem;
    font-style: italic;
    padding: 15px 30px;
    display: inline-block;
}

.upcoming-info-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.08));
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    margin-top: 20px;
}

.upcoming-content h3 {
    color: var(--gold);
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.upcoming-content p {
    color: #ddd;
    font-size: 1.1rem;
    margin: 0;
}

/* Gallery */
.gallery-section {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(17, 24, 39, 0.8));
    min-height: 100vh;
    padding-top: 120px;
}

/* Gallery Section */
.gallery-section {
    background: linear-gradient(135deg, rgba(0,0,0,0.9), rgba(30,30,30,0.9)), url('../assets/KTF-113-1920x1080.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    aspect-ratio: 16/10;
}

.gallery-item:hover {
    border-color: var(--gold);
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Download Section */
.download-section {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(17, 24, 39, 0.8));
    min-height: 100vh;
    padding-top: 120px;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.download-card {
    background: rgba(17, 24, 39, 0.5);
    border: 1px solid #374151;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.download-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
}

.download-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.download-card h3 {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.download-card p {
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.6;
}

.download-btn {
    display: inline-block;
    padding: 12px 25px;
    background: var(--gold);
    color: #000;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background: var(--gold-light);
    transform: scale(1.05);
}

.download-info {
    max-width: 600px;
    margin: 60px auto 0;
    text-align: center;
    background: rgba(17, 24, 39, 0.3);
    border-radius: 15px;
    padding: 40px;
}

.download-info h3 {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.download-info p {
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 20px;
}

.contact-quick {
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
}

.contact-quick p {
    margin-bottom: 8px;
    color: #fff;
}

.contact-quick a {
    color: var(--gold);
    text-decoration: none;
}

.contact-quick a:hover {
    color: var(--gold-light);
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.8), rgba(0, 0, 0, 0.9)), url('../assets/1-1920x1440.jpg');
    background-size: cover;
    background-position: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 60px;
    margin-top: 50px;
}

.contact-info h3,
.contact-form-wrapper h3 {
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.contact-card {
    background: rgba(30, 30, 30, 0.9);
    border: 2px solid rgba(204, 172, 92, 0.3);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-card:hover {
    border-color: #CCAC5C;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(204, 172, 92, 0.25);
}

.contact-icon {
    color: #CCAC5C;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(204, 172, 92, 0.1);
    border-radius: 10px;
    padding: 8px;
}

.contact-details h4 {
    background: linear-gradient(45deg, #DEC05B 0%, #E9D382 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    font-size: 1.3rem;
    font-weight: bold;
    display: inline-block;
}

.contact-details p {
    color: #ccc;
    margin-bottom: 12px;
    line-height: 1.6;
    font-size: 1rem;
}

.contact-phone,
.contact-email {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.contact-phone svg,
.contact-email svg {
    color: #CCAC5C;
    opacity: 0.8;
}

.contact-details a {
    color: #CCAC5C;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #E9D382;
    text-decoration: underline;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: #ccc;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #374151;
    border-radius: 8px;
    background: rgba(17, 24, 39, 0.5);
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(17, 24, 39, 0.8);
}

/* Remove default validation styling on page load */
.form-group input,
.form-group textarea {
    border-color: #374151;
}

.form-group input.error,
.form-group textarea.error {
    border-color: #ef4444;
}

.form-group .error-message {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 5px;
    display: none;
}

.form-group .error-message.show {
    display: block;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #6b7280;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
    margin: 0;
}

.checkbox-group label {
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-group a {
    color: var(--gold);
    text-decoration: underline;
}

.submit-btn {
    padding: 15px 30px;
    background: #CCAC5C;
    color: #000;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(204, 172, 92, 0.4);
    background: #D8B968;
}

/* Footer */
.footer {
    background: #000;
    color: #fff;
    padding: 60px 0 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.footer-social-section {
    margin-bottom: 40px;
}

.footer-social-section h3 {
    background: linear-gradient(45deg, #DEC05B 0%, #E9D382 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: bold;
    display: inline-block;
}

.footer-social-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon.youtube {
    color: #FF0000;
    background: rgba(255, 0, 0, 0.1);
}

.social-icon.facebook {
    color: #1877F2;
    background: rgba(24, 119, 242, 0.1);
}

.social-icon.instagram {
    color: #E4405F;
    background: rgba(228, 64, 95, 0.1);
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
}

.footer-legal {
    margin-bottom: 40px;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-size: 1.1rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #CCAC5C;
}

.footer-links .separator {
    color: #666;
    font-size: 1.2rem;
}

.footer-bottom {
    background: #111;
    padding: 30px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-direction: column;
}

.footer-logo svg {
    color: #CCAC5C;
}

.footer-bottom p {
    margin: 0;
    color: #888;
    font-size: 0.9rem;
    text-align: center;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Desktop Navigation */
@media (min-width: 769px) {
    .nav-menu {
        display: flex;
        flex-direction: row;
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        gap: 30px;
        z-index: auto;
    }

    .nav-menu li {
        margin: 0;
    }

    .nav-menu a {
        color: #ffffff;
        text-decoration: none;
        font-weight: 500;
        background: transparent;
        padding: 0;
        border: none;
        border-radius: 0;
        min-width: auto;
        font-size: 1rem;
        position: relative;
    }

    .nav-menu a:hover {
        color: var(--gold);
    }

    .nav-menu a::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: -5px;
        left: 0;
        background-color: var(--gold);
        transition: width 0.3s ease;
    }

    .nav-menu a:hover::after {
        width: 100%;
    }

    .hamburger {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
        background-position: center center;
        background-size: cover;
        padding-top: 120px;
        min-height: calc(100vh - 70px);
    }
    
    .band-section {
        background-attachment: scroll;
        background-position: center center;
        background-size: cover;
    }
    
    .tour-section {
        background-attachment: scroll;
        background-position: center center;
        background-size: cover;
    }
    
    .live-teaser-section {
        background-attachment: scroll;
        background-position: center top;
        background-size: cover;
    }
    
    .gallery-section {
        background: linear-gradient(135deg, rgba(0,0,0,0.95), rgba(30,30,30,0.9));
        background-attachment: scroll;
    }
    
    /* Elegant mobile navigation */
    .nav-menu {
        display: none;
        position: fixed;
        top: 70px;
        right: -320px;
        width: 280px;
        height: calc(100vh - 70px);
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(17, 24, 39, 0.95));
        backdrop-filter: blur(10px);
        z-index: 999;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        border-left: 2px solid var(--gold);
        border-bottom: 2px solid var(--gold);
        border-radius: 0 0 0 20px;
        box-shadow: -5px 5px 25px rgba(0, 0, 0, 0.7);
        transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        padding: 40px 0 20px 0;
    }
    
    .nav-menu.show {
        display: flex;
        right: 0;
    }
    
    .nav-menu li {
        margin: 2px 0;
        list-style: none;
        opacity: 0;
        transform: translateX(30px);
        animation: slideInNav 0.3s ease forwards;
    }
    
    .nav-menu li:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu li:nth-child(2) { animation-delay: 0.15s; }
    .nav-menu li:nth-child(3) { animation-delay: 0.2s; }
    .nav-menu li:nth-child(4) { animation-delay: 0.25s; }
    .nav-menu li:nth-child(5) { animation-delay: 0.3s; }
    .nav-menu li:nth-child(6) { animation-delay: 0.35s; }
    
    @keyframes slideInNav {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    .nav-menu a {
        color: #ffffff;
        text-decoration: none;
        font-size: 0.95rem;
        font-weight: 600;
        padding: 8px 20px;
        display: block;
        background: transparent;
        border: 2px solid transparent;
        border-radius: 20px;
        text-align: center;
        min-width: 150px;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    .nav-menu a::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
        transition: left 0.5s ease;
    }
    
    .nav-menu a:hover::before {
        left: 100%;
    }
    
    .nav-menu a:hover {
        border-color: var(--gold);
        background: rgba(212, 175, 55, 0.1);
        color: var(--gold);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
    }
    
    .hamburger {
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--gold);
        font-size: 22px;
        cursor: pointer;
        padding: 12px;
        border: 2px solid transparent;
        border-radius: 8px;
        transition: all 0.3s ease;
        min-width: 44px;
        min-height: 44px;
        background: rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(5px);
    }
    
    .hamburger:hover {
        border-color: var(--gold);
        background: rgba(212, 175, 55, 0.1);
        transform: scale(1.05);
    }
    
    .footer-social-icons {
        gap: 20px;
    }
    
    .social-icon {
        width: 50px;
        height: 50px;
    }
    
    .social-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-links .separator {
        display: none;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .contact-icon {
        align-self: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Additional responsive fixes for very small screens */
@media (max-width: 480px) {
    .hero {
        padding-top: 140px;
        min-height: calc(100vh - 50px);
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: clamp(2rem, 10vw, 3rem);
        margin-bottom: 15px;
    }
    
    .hero-content p {
        font-size: clamp(0.9rem, 4vw, 1.2rem);
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.4rem) !important;
        letter-spacing: 1px;
        margin-bottom: 30px !important;
    }
}

/* Landscape orientation fixes for mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        padding-top: 80px;
        min-height: 100vh;
    }
    
    .hero-content h1 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: 10px;
    }
    
    .hero-content p {
        font-size: clamp(0.8rem, 3vw, 1rem);
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: clamp(0.9rem, 3vw, 1.2rem) !important;
        margin-bottom: 20px !important;
    }
}

/* DSGVO Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-top: 2px solid var(--gold);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-popup.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h4 {
    color: var(--gold);
    margin: 0 0 10px 0;
    font-size: 1.2rem;
}

.cookie-text p {
    margin: 0;
    color: #ffffff;
    line-height: 1.4;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.cookie-accept, .cookie-details {
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-accept {
    background: linear-gradient(45deg, var(--gold), var(--gold-light));
    color: #000;
}

.cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.cookie-details {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.cookie-details:hover {
    background: var(--gold);
    color: #000;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cookie-buttons {
        justify-content: center;
        width: 100%;
    }
    
    .cookie-accept, .cookie-details {
        flex: 1;
        min-width: 120px;
    }
}

/* Success Toast Notification */
.success-toast {
    position: fixed;
    top: 100px;
    right: 20px;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid var(--gold);
    border-radius: 15px;
    z-index: 9998;
    transform: translateX(400px);
    transition: transform 0.4s ease;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    display: none;
}

.success-toast.show {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

.toast-content {
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    position: relative;
}

.toast-icon {
    background: linear-gradient(45deg, var(--gold), var(--gold-light));
    color: #000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.toast-text {
    flex: 1;
}

.toast-text h4 {
    color: var(--gold);
    margin: 0 0 8px 0;
    font-size: 1.1rem;
}

.toast-text p {
    margin: 0;
    color: #ffffff;
    line-height: 1.4;
    font-size: 0.95rem;
}

.toast-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 24px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.toast-close:hover {
    background: rgba(212, 175, 55, 0.2);
}

@media (max-width: 768px) {
    .success-toast {
        right: 10px;
        left: 10px;
        max-width: none;
        transform: translateY(-200px);
    }
    
    .success-toast.show {
        transform: translateY(0);
    }
}

/* Member Modal */
.member-modal {
    display: none;
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
}

.member-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    padding: 20px;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 20px;
    color: var(--gold);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1000000;
}

.modal-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: white;
}

.modal-body img {
    max-width: 400px;
    max-height: 60vh;
    object-fit: contain;
    border-radius: 15px;
    margin-bottom: 30px;
}

.modal-info h3 {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 10px;
}

.modal-info p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 10px;
    max-width: 600px;
}

.modal-quote {
    background: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
    color: var(--gold);
    font-style: italic;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 10px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--gold);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
}

/* Responsive */
@media (max-width: 1024px) {
    .social-sidebar {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .section-header h1,
    .section-header h2 {
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .band-row {
        grid-template-columns: 1fr;
    }

    .download-grid {
        grid-template-columns: 1fr;
    }

    .modal-body {
        padding: 20px;
    }

    .modal-body img {
        max-width: 90%;
    }
    
    .tour-date-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .date-info {
        min-width: auto;
        width: 120px;
    }
    
    .social-icons {
        gap: 15px;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
    }
}

/* Overlay Modals */
.overlay {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    overflow-y: auto;
}

.overlay.active {
    display: block;
}

.overlay-content {
    position: relative;
    background: #1a1a1a;
    margin: 50px auto;
    padding: 40px;
    max-width: 800px;
    border-radius: 15px;
    border: 1px solid #374151;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.overlay-close {
    position: absolute;
    top: 15px;
    right: 25px;
    color: var(--gold);
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.overlay-close:hover {
    color: #E9D382;
}

.overlay-content h2 {
    color: var(--gold);
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
    background: linear-gradient(45deg, #DEC05B 0%, #E9D382 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.overlay-text {
    color: #ddd;
    line-height: 1.7;
    font-size: 1rem;
}

.overlay-text h3 {
    color: var(--gold);
    font-size: 1.5rem;
    margin: 30px 0 15px 0;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    padding-bottom: 8px;
}

.overlay-text h4 {
    color: #E9D382;
    font-size: 1.2rem;
    margin: 20px 0 10px 0;
}

.overlay-text p {
    margin-bottom: 15px;
    font-weight: 400;
}

.overlay-text a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.overlay-text a:hover {
    color: #E9D382;
    text-decoration: underline;
}

/* Mobile responsiveness for overlays */
@media (max-width: 768px) {
    .overlay-content {
        margin: 20px;
        padding: 25px;
    }
    
    .overlay-content h2 {
        font-size: 1.5rem;
        word-break: break-word;
        line-height: 1.3;
    }
    
    .overlay-text h3 {
        font-size: 1.3rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}