/* Font Face */
@font-face {
    font-family: 'Andesite';
    src: url('fonts/andesiteplain-webfont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* CSS Variables */
:root {
    --primary-bg: #193D3D;
    --secondary-bg: #1F4037;
    --text-light: #F5F5DC;
    --text-white: #FFFFFF;
    --accent-purple: #9B59B6;
    --accent-pink: #E91E63;
    --accent-blue: #3498DB;
    --accent-gold: #FFD700;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background-color: #0a0a0a;
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Andesite', serif;
}

/* Navigation */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(25, 61, 61, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(155, 89, 182, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 0 2rem;
    flex-wrap: wrap;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-family: 'Andesite', serif;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-pink));
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
    color: var(--text-white);
}

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

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem 4rem;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(155, 89, 182, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(233, 30, 99, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 40% 20%, rgba(52, 152, 219, 0.3) 0%, transparent 50%),
                linear-gradient(135deg, var(--primary-bg) 0%, var(--secondary-bg) 100%);
    z-index: -1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(4px 4px at 20% 30%, white, transparent),
        radial-gradient(4px 4px at 60% 70%, white, transparent),
        radial-gradient(3px 3px at 50% 50%, white, transparent),
        radial-gradient(3px 3px at 80% 10%, white, transparent),
        radial-gradient(4px 4px at 90% 60%, white, transparent),
        radial-gradient(3px 3px at 33% 80%, white, transparent),
        radial-gradient(5px 5px at 15% 90%, rgba(155, 89, 182, 0.8), transparent),
        radial-gradient(4px 4px at 85% 40%, rgba(233, 30, 99, 0.8), transparent),
        radial-gradient(3px 3px at 45% 15%, rgba(52, 152, 219, 0.8), transparent);
    background-size: 200% 200%;
    animation: sparkle 8s ease-in-out infinite;
    opacity: 0.6;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle, rgba(255, 255, 255, 0.8) 4px, transparent 4px),
        radial-gradient(circle, rgba(255, 255, 255, 0.6) 3px, transparent 3px),
        radial-gradient(circle, rgba(255, 255, 255, 0.4) 2px, transparent 2px),
        radial-gradient(circle, rgba(233, 30, 99, 0.6) 4px, transparent 4px),
        radial-gradient(circle, rgba(155, 89, 182, 0.6) 4px, transparent 4px),
        radial-gradient(circle, rgba(52, 152, 219, 0.6) 3px, transparent 3px);
    background-size: 550px 550px, 350px 350px, 250px 250px, 450px 450px, 400px 400px, 300px 300px;
    background-position: 0 0, 40px 60px, 130px 270px, 70px 100px, 200px 150px, 300px 200px;
    animation: twinkle 6s ease-in-out infinite;
    opacity: 0.7;
}

@keyframes sparkle {
    0%, 100% { 
        opacity: 0.6;
        transform: scale(1);
    }
    50% { 
        opacity: 0.9;
        transform: scale(1.05);
    }
}

@keyframes twinkle {
    0%, 100% { opacity: 0.7; }
    25% { opacity: 0.9; }
    50% { opacity: 0.5; }
    75% { opacity: 0.8; }
}

.hero-content {
    max-width: 1200px;
    text-align: center;
    z-index: 1;
}

.logo {
    max-width: 500px;
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 20px rgba(155, 89, 182, 0.5));
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(155, 89, 182, 0.5)); }
    50% { filter: drop-shadow(0 0 30px rgba(233, 30, 99, 0.7)); }
}

.hero-image {
    max-width: 800px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    border: 3px solid #ff69b4;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: scale(1.02);
}

.tagline {
    font-size: 2.5rem;
    color: var(--text-white);
    margin-bottom: 2rem;
    text-shadow: 0 0 20px rgba(155, 89, 182, 0.5);
    line-height: 1.3;
}

.intro-text {
    font-size: 1.2rem;
    max-width: 900px;
    margin: 0 auto 1.5rem;
    color: var(--text-light);
    text-align: justify;
}

/* Section Styles */
section {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    position: relative;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-white);
    text-shadow: 0 0 20px rgba(155, 89, 182, 0.5);
    z-index: 1;
}

/* Trio Section */
.trio-section {
    position: relative;
    background: radial-gradient(circle at 20% 50%, rgba(155, 89, 182, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(233, 30, 99, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 40% 20%, rgba(52, 152, 219, 0.3) 0%, transparent 50%),
                linear-gradient(135deg, var(--primary-bg) 0%, var(--secondary-bg) 100%);
    border-radius: 20px;
    overflow: hidden;
    margin: 3rem auto;
}

.trio-section::before,
.media-section::before,
.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(4px 4px at 20% 30%, white, transparent),
        radial-gradient(4px 4px at 60% 70%, white, transparent),
        radial-gradient(3px 3px at 50% 50%, white, transparent),
        radial-gradient(3px 3px at 80% 10%, white, transparent),
        radial-gradient(4px 4px at 90% 60%, white, transparent),
        radial-gradient(3px 3px at 33% 80%, white, transparent),
        radial-gradient(5px 5px at 15% 90%, rgba(155, 89, 182, 0.8), transparent),
        radial-gradient(4px 4px at 85% 40%, rgba(233, 30, 99, 0.8), transparent),
        radial-gradient(3px 3px at 45% 15%, rgba(52, 152, 219, 0.8), transparent);
    background-size: 200% 200%;
    animation: sparkle 8s ease-in-out infinite;
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
}

.trio-section::after,
.media-section::after,
.contact-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle, rgba(255, 255, 255, 0.8) 4px, transparent 4px),
        radial-gradient(circle, rgba(255, 255, 255, 0.6) 3px, transparent 3px),
        radial-gradient(circle, rgba(255, 255, 255, 0.4) 2px, transparent 2px),
        radial-gradient(circle, rgba(233, 30, 99, 0.6) 4px, transparent 4px),
        radial-gradient(circle, rgba(155, 89, 182, 0.6) 4px, transparent 4px),
        radial-gradient(circle, rgba(52, 152, 219, 0.6) 3px, transparent 3px);
    background-size: 550px 550px, 350px 350px, 250px 250px, 450px 450px, 400px 400px, 300px 300px;
    background-position: 0 0, 40px 60px, 130px 270px, 70px 100px, 200px 150px, 300px 200px;
    animation: twinkle 6s ease-in-out infinite;
    opacity: 0.7;
    pointer-events: none;
    z-index: 0;
}

.trio-container {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    z-index: 1;
}

.member {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    z-index: 1;
}

.member:hover {
    transform: translateY(-10px);
    border-color: var(--accent-purple);
    box-shadow: 0 20px 40px rgba(155, 89, 182, 0.3);
}

.member-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: top center;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.member-name {
    font-size: 2rem;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(155, 89, 182, 0.5);
}

.member-role {
    font-size: 1.3rem;
    color: #ff69b4;
    margin-bottom: 1rem;
    font-family: Arial, sans-serif;
    font-weight: normal;
}

.member-description {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    text-align: justify;
}

/* Media Section */
.media-section {
    position: relative;
    background: radial-gradient(circle at 20% 50%, rgba(155, 89, 182, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(233, 30, 99, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 40% 20%, rgba(52, 152, 219, 0.3) 0%, transparent 50%),
                linear-gradient(135deg, var(--primary-bg) 0%, var(--secondary-bg) 100%);
    border-radius: 20px;
    margin: 3rem auto;
    overflow: hidden;
}

.videos-container {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    z-index: 1;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.gallery-container {
    position: relative;
    column-count: 3;
    column-gap: 1.5rem;
    margin-bottom: 3rem;
    z-index: 1;
}

@media (max-width: 1024px) {
    .gallery-container {
        column-count: 2;
    }
}

@media (max-width: 640px) {
    .gallery-container {
        column-count: 1;
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 1;
    margin-bottom: 1.5rem;
    break-inside: avoid;
    display: inline-block;
    width: 100%;
}

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

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

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

.social-media-hint {
    position: relative;
    text-align: center;
    margin-top: 3rem;
    z-index: 1;
}

.social-media-hint p {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #ff69b4;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--text-white);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-link:hover {
    background: rgba(155, 89, 182, 0.3);
    border-color: var(--accent-purple);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(155, 89, 182, 0.3);
}

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

/* Contact Section */
.contact-section {
    position: relative;
    background: radial-gradient(circle at 20% 50%, rgba(155, 89, 182, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(233, 30, 99, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 40% 20%, rgba(52, 152, 219, 0.3) 0%, transparent 50%),
                linear-gradient(135deg, var(--primary-bg) 0%, var(--secondary-bg) 100%);
    border-radius: 20px;
    margin: 3rem auto;
    overflow: hidden;
}

.email-container {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    z-index: 1;
    padding: 2rem;
}

.email-intro {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    font-family: Arial, sans-serif;
}

.email-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 3px solid rgba(255, 105, 180, 0.3);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.email-display:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 105, 180, 0.5);
    box-shadow: 0 10px 40px rgba(255, 105, 180, 0.3);
    transform: translateY(-3px);
}

.email-icon {
    width: 40px;
    height: 40px;
    color: #ff69b4;
    flex-shrink: 0;
}

.email-link {
    font-size: 1.8rem;
    color: #ff69b4;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-weight: bold;
    transition: all 0.3s ease;
    word-break: break-all;
}

.email-link:hover {
    color: var(--accent-purple);
    text-shadow: 0 0 20px rgba(155, 89, 182, 0.5);
}

/* Impressum Section */
.impressum-section {
    background: linear-gradient(135deg, rgba(31, 64, 55, 0.5) 0%, rgba(25, 61, 61, 0.5) 100%);
    border-radius: 20px;
    margin: 3rem auto;
}

.impressum-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.impressum-content h3 {
    font-size: 1.8rem;
    color: var(--text-white);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.impressum-content h4 {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.impressum-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
    text-align: justify;
}

.impressum-content a {
    color: var(--accent-purple);
    text-decoration: none;
    transition: color 0.3s ease;
}

.impressum-content a:hover {
    color: var(--accent-pink);
}

/* Footer */
.footer {
    background: rgba(10, 10, 10, 0.9);
    padding: 2rem;
    text-align: center;
    color: var(--text-light);
    border-top: 2px solid rgba(155, 89, 182, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .tagline {
        font-size: 1.8rem;
    }

    .intro-text {
        font-size: 1rem;
        text-align: left;
    }

    .section-title {
        font-size: 2rem;
    }

    .nav-container {
        gap: 1rem;
    }

    .nav-link {
        font-size: 0.9rem;
        padding: 0.3rem 0.5rem;
    }

    .trio-container {
        grid-template-columns: 1fr;
    }

    .videos-container {
        grid-template-columns: 1fr;
    }

    .gallery-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .social-links {
        flex-direction: column;
        align-items: center;
    }

    section {
        padding: 3rem 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 5rem 1rem 3rem;
    }

    .logo {
        max-width: 300px;
    }

    .tagline {
        font-size: 1.5rem;
    }

    .member-image {
        height: 400px;
    }

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



/* Impressum Page Styles */
.impressum-page {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-bg) 0%, var(--secondary-bg) 100%);
    padding: 40px 20px;
    position: relative;
}

.impressum-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, white, transparent),
        radial-gradient(2px 2px at 60% 70%, white, transparent),
        radial-gradient(1px 1px at 50% 50%, white, transparent),
        radial-gradient(1px 1px at 80% 10%, white, transparent),
        radial-gradient(2px 2px at 90% 60%, white, transparent),
        radial-gradient(1px 1px at 33% 80%, white, transparent);
    background-size: 200% 200%;
    animation: sparkle 8s ease-in-out infinite;
    opacity: 0.3;
    pointer-events: none;
}

.impressum-container {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.5);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

.impressum-title {
    font-family: 'Andesite', serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(155, 89, 182, 0.5);
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
    color: var(--text-white);
    text-decoration: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(155, 89, 182, 0.4);
    margin-bottom: 30px;
}

.back-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(155, 89, 182, 0.6);
}

.back-button svg {
    width: 24px;
    height: 24px;
}

.back-button-bottom {
    margin-top: 40px;
    margin-bottom: 0;
}

.impressum-page .impressum-content {
    color: var(--text-light);
    line-height: 1.8;
}

.impressum-page .impressum-content h3 {
    font-family: 'Andesite', serif;
    font-size: 1.8rem;
    color: var(--accent-purple);
    margin-top: 30px;
    margin-bottom: 15px;
}

.impressum-page .impressum-content h4 {
    font-size: 1.3rem;
    color: var(--accent-pink);
    margin-top: 20px;
    margin-bottom: 10px;
}

.impressum-page .impressum-content p {
    margin-bottom: 15px;
}

.impressum-page .impressum-content a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.impressum-page .impressum-content a:hover {
    color: var(--accent-pink);
    text-decoration: underline;
}

/* Footer Link Style */
.footer-link {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-pink);
}

/* Responsive Design for Impressum Page */
@media (max-width: 768px) {
    .impressum-container {
        padding: 20px;
    }

    .impressum-title {
        font-size: 2rem;
    }

    .back-button {
        font-size: 0.9rem;
        padding: 10px 20px;
    }

    .impressum-page .impressum-content h3 {
        font-size: 1.5rem;
    }

    .impressum-page .impressum-content h4 {
        font-size: 1.2rem;
    }
}


/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
    border: none;
    border-radius: 50%;
    color: var(--text-white);
    font-size: 24px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(155, 89, 182, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(155, 89, 182, 0.6);
}

.scroll-to-top::before {
    content: '↑';
    font-size: 28px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 20px;
    }
    
    .scroll-to-top::before {
        font-size: 24px;
    }
}


/* Responsive styles for email section */
@media (max-width: 768px) {
    .email-intro {
        font-size: 1.2rem;
    }
    
    .email-display {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .email-icon {
        width: 32px;
        height: 32px;
    }
    
    .email-link {
        font-size: 1.3rem;
    }
}
