/* EVERGLOW - A Tribute to Coldplay - CSS Styles - AllInkl Compatible */

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

body {
    font-family: 'Inter', sans-serif;
    background: #0f0f23;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0a15;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #ffdd00, #ff9500, #ff006e, #8338ec, #3a86ff, #06ffa5);
    border-radius: 4px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 20px;
    z-index: 9999;
    display: none;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 15px;
}

.cookie-content p {
    margin: 0;
    color: #b8bcc8;
    flex: 1;
}

.cookie-content a {
    color: #ff006e;
    text-decoration: none;
}

/* DSGVO Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    z-index: 9999;
    transition: all 0.3s ease;
}

.cookie-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 20px;
}

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

.cookie-text h5 {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.cookie-text p {
    margin: 0 0 8px 0;
    color: #b8bcc8;
    font-size: 0.9rem;
    line-height: 1.4;
}

.cookie-link {
    color: #ff006e;
    text-decoration: none;
}

.cookie-link:hover {
    color: #ff3385;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

/* Cookie Einstellungen Modal */
.cookie-category {
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.cookie-category-header h6 {
    color: #ffffff;
    margin: 0;
    font-size: 1rem;
}

.cookie-status {
    color: #06ffa5;
    font-size: 0.8rem;
    font-weight: 500;
}

.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    border-radius: 24px;
    transition: 0.3s;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    border-radius: 50%;
    transition: 0.3s;
}

.cookie-toggle input:checked + .cookie-slider {
    background-color: #ff006e;
}

.cookie-toggle input:checked + .cookie-slider:before {
    transform: translateX(26px);
}

.cookie-category p {
    color: #b8bcc8;
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
}

/* Navigation */
.navbar {
    background: rgba(15, 15, 35, 0.5);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(15, 15, 35, 0.98);
    backdrop-filter: blur(25px);
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(255, 0, 110, 0.15);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
}

.brand-text {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffdd00, #ff9500, #ff006e, #8338ec, #3a86ff, #06ffa5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    transition: all 0.3s ease;
}

.navbar-brand:hover .brand-text {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    color: #ffffff;
    font-weight: 500;
    margin: 0 10px;
    padding: 8px 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -15px;
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, #ffdd00, #ff9500, #ff006e, #8338ec, #3a86ff, #06ffa5);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translateY(-50%) scale(0);
    z-index: 1;
    box-shadow: 0 0 10px rgba(255, 0, 110, 0.5);
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    transform: translateY(-50%) scale(1);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #ff006e;
    transform: translateY(-2px);
}

.navbar-toggler {
    border: none;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 8px 12px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

.hero-logo {
    width: 320px;
    height: auto;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 20px rgba(255, 0, 110, 0.5));
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    from { filter: drop-shadow(0 0 20px rgba(255, 0, 110, 0.5)); }
    to { filter: drop-shadow(0 0 30px rgba(255, 0, 110, 0.8)); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.floating-logo {
    animation: float 3s ease-in-out infinite;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffdd00, #ff9500, #ff006e, #8338ec, #3a86ff, #06ffa5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(255, 221, 0, 0.3);
    text-transform: uppercase;
}

/* Fallback for browsers that don't support background-clip */
@supports not (-webkit-background-clip: text) {
    .hero-content h1 {
        color: #ffdd00;
    }
    .concert-date {
        color: #ffdd00;
    }
    .concert-price {
        color: #ffdd00;
    }
    .band-member h4 {
        color: #ffdd00;
    }
    .contact-title {
        color: #ffdd00;
    }
    .brand-text {
        color: #ffdd00;
    }
}

.hero-content p {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 40px;
    font-weight: 300;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #ffdd00, #ff9500, #ff006e, #8338ec, #3a86ff, #06ffa5);
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    color: white;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(255, 0, 110, 0.15);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(255, 0, 110, 0.3);
    color: white;
}

.btn-outline-light {
    border: 2px solid #ffffff;
    color: #ffffff;
    background: transparent;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: #ffffff;
    color: #0f0f23;
    transform: translateY(-2px);
}

/* Sections */
.section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 80px;
    background: linear-gradient(135deg, #ffdd00, #ff9500, #ff006e, #8338ec, #3a86ff, #06ffa5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

/* Fallback for browsers that don't support background-clip */
@supports not (-webkit-background-clip: text) {
    .section-title {
        color: #ffdd00;
    }
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #ffdd00, #ff9500, #ff006e, #8338ec, #3a86ff, #06ffa5);
    border-radius: 2px;
}

/* Band Member Cards */
.band-member {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 30px;
}

.band-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 40px rgba(255, 0, 110, 0.3);
    border-color: rgba(255, 0, 110, 0.5);
}

.band-member .img-wrapper {
    width: 188px;
    height: 188px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffdd00, #ff9500, #ff006e, #8338ec, #3a86ff, #06ffa5);
    padding: 4px;
    margin: 0 auto 25px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.band-member img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 25px auto;
    display: block;
    transition: transform 0.3s ease;
    position: relative;
}

.band-member:hover .img-wrapper {
    transform: scale(1.05);
}

.band-member h4 {
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffdd00, #ff9500, #ff006e, #8338ec, #3a86ff, #06ffa5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.band-member p {
    color: #06ffa5;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.band-member small {
    color: #b8bcc8;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Concert Cards */
.concert-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.concert-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ffdd00, #ff9500, #ff006e, #8338ec, #3a86ff, #06ffa5);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.concert-card:hover::before {
    opacity: 0.05;
}

.concert-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 40px rgba(255, 0, 110, 0.3);
    border-color: rgba(255, 0, 110, 0.5);
}

.concert-card > * {
    position: relative;
    z-index: 2;
}

.concert-date {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffdd00, #ff9500, #ff006e, #8338ec, #3a86ff, #06ffa5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.concert-venue {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.concert-location {
    color: #06ffa5;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.concert-time {
    color: #b8bcc8;
    margin-bottom: 15px;
}

.concert-price {
    background: linear-gradient(135deg, #ffdd00, #ff9500, #ff006e, #8338ec, #3a86ff, #06ffa5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1.3rem;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ffdd00, #ff9500, #ff006e, #8338ec, #3a86ff, #06ffa5);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 0.1;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 40px rgba(255, 0, 110, 0.3);
    border-color: rgba(255, 0, 110, 0.5);
}

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

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

/* Video Containers */
.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    margin-bottom: 40px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(255, 0, 110, 0.15);
}

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

/* Contact Section */
.contact-info,
.contact-form {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    margin-bottom: 30px;
}

.contact-info h4,
.contact-form h4 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 1.4rem;
}

.contact-title {
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffdd00, #ff9500, #ff006e, #8338ec, #3a86ff, #06ffa5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: #ffffff;
    padding: 12px 18px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: #ff006e;
    box-shadow: 0 0 0 0.2rem rgba(255, 0, 110, 0.25);
    color: #ffffff;
}

.form-control::placeholder {
    color: #8892b0;
}

.form-check-input {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
}

.form-check-input:checked {
    background-color: #ff006e;
    border-color: #ff006e;
}

.form-check-label {
    color: #b8bcc8;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: rgba(10, 10, 21, 0.4);
    backdrop-filter: blur(20px);
    padding: 60px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer h5 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer p {
    color: #b8bcc8;
    margin-bottom: 10px;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: linear-gradient(135deg, #ffdd00, #ff9500, #ff006e, #8338ec, #3a86ff, #06ffa5);
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(255, 0, 110, 0.15);
    color: white;
}

/* Modal Styling */
.modal-content {
    background: #0f0f23;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
}

.modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.modal-title {
    color: #ffffff;
    font-weight: 700;
}

.modal-body {
    color: #b8bcc8;
    line-height: 1.7;
}

.modal-body h6 {
    color: #ffffff;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 10px;
}

.btn-close {
    filter: invert(1);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .hero-logo {
        width: 280px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cookie-text {
        min-width: auto;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .section {
        padding: 60px 0;
    }
    
    .band-member,
    .contact-info,
    .contact-form {
        margin-bottom: 30px;
    }
    
    .navbar-nav .nav-link {
        margin: 5px 0;
        text-align: center;
    }
    
    .hero-logo {
        width: 220px;
    }
    
    .col-md-6 {
        margin-bottom: 30px;
        padding-bottom: 15px;
    }
    
    .col-md-6:last-child {
        margin-bottom: 0;
    }
    
    .row {
        margin-bottom: 20px;
    }
}

/* Performance Optimizations */
.gallery-item,
.band-member,
.concert-card {
    will-change: transform;
}

.navbar {
    will-change: background-color, backdrop-filter;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    body {
        background: #000000;
        color: #ffffff;
    }
}

/* Ripple Effect for Buttons */
.btn {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}