/* ===== VARIABLES ===== */
:root {
    --gold: #F5A623;
    --dark: #1a1a1a;
    --darker: #0d0d0d;
    --white: #ffffff;
    --gray: #999999;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--dark);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

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

a:hover {
    color: var(--white);
}

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

.gold {
    color: var(--gold);
}

/* ===== NAVIGATION ===== */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(245, 166, 35, 0.2);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.logo-60 {
    color: var(--gold);
}

.logo-leben {
    color: var(--white);
}

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

.nav-menu a {
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-video-container iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    min-width: 177.77vh;
    min-height: 56.25vw;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 13, 13, 0.85) 0%, rgba(26, 26, 26, 0.75) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 20px;
}

.hero-org {
    font-size: 14px;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.hero-title {
    font-size: clamp(80px, 15vw, 180px);
    line-height: 0.9;
    margin-bottom: 40px;
}

.hero-60 {
    display: block;
    color: var(--gold);
}

.hero-leben {
    display: block;
    color: var(--white);
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--white);
    background: rgba(245, 166, 35, 0.1);
    border: 2px solid var(--gold);
    padding: 30px 50px;
    display: inline-block;
    margin-bottom: 30px;
}

.hero-subtitle p {
    margin: 5px 0;
}

.hero-event {
    font-size: 16px;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.hero-website {
    font-size: 24px;
    font-weight: 600;
    color: var(--gold);
}

.scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    color: var(--gold);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ===== INTRO SECTION ===== */
.intro-section {
    padding: 100px 0;
    background: var(--darker);
    text-align: center;
}

.intro-section h2 {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 30px;
}

.intro-section p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.8);
}

/* ===== STATS SECTION ===== */
.stats-section {
    padding: 80px 0;
    background: var(--dark);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    text-align: center;
}

.stat-number {
    font-size: clamp(60px, 10vw, 100px);
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 15px;
}

.stat-label {
    font-size: 16px;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.7);
}

/* ===== FEATURED SECTION ===== */
.featured-section {
    padding: 100px 0;
    background: var(--darker);
}

.featured-section h2 {
    font-size: clamp(36px, 6vw, 56px);
    text-align: center;
    margin-bottom: 60px;
}

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

.portrait-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
    background: var(--dark);
}

.portrait-card:hover {
    transform: translateY(-10px);
}

.portrait-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.portrait-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(13, 13, 13, 0.95), transparent);
}

.portrait-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 5px;
}

.portrait-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(245, 166, 35, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portrait-card:hover .portrait-play {
    opacity: 1;
}

.portrait-play::after {
    content: '▶';
    font-size: 24px;
    color: var(--white);
    margin-left: 4px;
}

/* ===== CTA BUTTON ===== */
.cta-button {
    text-align: center;
}

.cta-button a {
    display: inline-block;
    padding: 18px 50px;
    background: var(--gold);
    color: var(--dark);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.05em;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-button a:hover {
    background: var(--white);
    transform: scale(1.05);
}

/* ===== EVENTS PREVIEW ===== */
.events-preview {
    padding: 100px 0;
    background: var(--dark);
    text-align: center;
}

.events-preview h2 {
    font-size: clamp(36px, 6vw, 56px);
    margin-bottom: 30px;
}

.events-preview p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 50px;
    color: rgba(255, 255, 255, 0.8);
}

/* ===== FOOTER ===== */
.main-footer {
    background: var(--darker);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(245, 166, 35, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 20px;
    color: var(--gold);
    margin-bottom: 15px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-section a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* ===== VIDEO MODAL ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
}

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

.modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
}

.modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 40px;
    color: var(--white);
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--gold);
}

.modal-video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

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

/* ===== PAGE HEADER ===== */
.page-header {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
    text-align: center;
}

.page-header h1 {
    font-size: clamp(40px, 8vw, 72px);
    margin-bottom: 20px;
}

.page-header p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
}

/* ===== PORTRAITS PAGE ===== */
.portraits-page {
    padding: 80px 0;
    background: var(--dark);
}

.search-bar {
    max-width: 600px;
    margin: 0 auto 60px;
}

.search-bar input {
    width: 100%;
    padding: 18px 25px;
    font-size: 16px;
    background: var(--darker);
    border: 2px solid rgba(245, 166, 35, 0.3);
    border-radius: 50px;
    color: var(--white);
    outline: none;
    transition: border-color 0.3s ease;
}

.search-bar input:focus {
    border-color: var(--gold);
}

.search-bar input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.portraits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

/* ===== EVENTS PAGE ===== */
.events-page {
    padding: 80px 0;
    background: var(--dark);
}

.events-list {
    max-width: 900px;
    margin: 0 auto;
}

.event-item {
    background: var(--darker);
    padding: 40px;
    margin-bottom: 30px;
    border-left: 4px solid var(--gold);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.event-item:hover {
    transform: translateX(10px);
}

.event-item h3 {
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 20px;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
}

.event-meta-item {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.event-meta-item strong {
    color: var(--white);
}

.event-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

/* ===== PROJECT PAGE ===== */
.project-content {
    padding: 80px 0;
    background: var(--dark);
}

.content-section {
    max-width: 800px;
    margin: 0 auto 60px;
}

.content-section h2 {
    font-size: 36px;
    color: var(--gold);
    margin-bottom: 25px;
}

.content-section p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

/* ===== TEAM PAGE ===== */
.team-page {
    padding: 80px 0;
    background: var(--dark);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.team-member {
    background: var(--darker);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-member h3 {
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 10px;
}

.team-role {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.team-bio {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

/* ===== CONTACT PAGE ===== */
.contact-page {
    padding: 80px 0;
    background: var(--dark);
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-content h2 {
    font-size: 36px;
    color: var(--gold);
    margin-bottom: 30px;
}

.contact-content p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.contact-info {
    background: var(--darker);
    padding: 40px;
    border-radius: 8px;
    margin-top: 40px;
}

.contact-info a {
    font-size: 20px;
    display: block;
    margin: 15px 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(13, 13, 13, 0.98);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        padding: 30px 0;
        gap: 20px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: clamp(60px, 12vw, 120px);
    }

    .hero-subtitle {
        font-size: 14px;
        padding: 20px 30px;
    }

    .featured-grid,
    .portraits-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .event-meta {
        flex-direction: column;
        gap: 10px;
    }
}

/* ===== FOOTER LOGOS ===== */
.footer-logos {
    display: flex;
    gap: 20px;
    margin-top: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.footer-logos img {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: brightness(0.9);
    transition: filter 0.3s ease;
}

.footer-logos img:hover {
    filter: brightness(1);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr !important;
    }
    
    .footer-logos {
        justify-content: center;
    }
    
    .footer-logos img {
        height: 50px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
