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

:root {
    --black: #000000;
    --white: #ffffff;
    --red: #da291c;
    --yellow: #ffcc00;
    --gold: #d4af37;
    --gray: #1a1a1a;
    --light-gray: #f5f5f5;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--white);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

.background-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    z-index: -1;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-gray) 100%);
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.logo-container {
    margin-bottom: 2rem;
    animation: scaleIn 1s ease-out 0.3s both;
}

.logo {
    width: 200px;
    height: auto;
    max-width: 100%;
}

.hero-title {
    font-size: clamp(1.5rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--black);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-weight: 600;
    color: var(--red);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 3px solid var(--black);
    border-bottom: 3px solid var(--black);
    transform: rotate(45deg);
}

/* Sections */
section {
    padding: 6rem 2rem;
}

.intro-section {
    text-align: center;
    background: var(--white);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.section-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Social Links Section */
.social-links-section {
    background: linear-gradient(180deg, var(--light-gray) 0%, var(--white) 100%);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem 2rem;
    background: var(--white);
    border-radius: 20px;
    text-decoration: none;
    color: var(--black);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--gold) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.social-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--gold);
}

.social-card:hover::before {
    opacity: 0.1;
}

.social-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}

.social-card:hover .social-icon {
    transform: scale(1.1) rotate(5deg);
}

.social-icon svg {
    width: 100%;
    height: 100%;
}

.instagram .social-icon {
    color: #E1306C;
}

.youtube .social-icon {
    color: #FF0000;
}

.bfv .social-icon {
    color: var(--black);
}

.social-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.social-handle {
    font-size: 1rem;
    color: var(--gray);
    position: relative;
    z-index: 1;
}

/* Info Section */
.info-section {
    background: var(--white);
    text-align: center;
}

/* Footer */
footer {
    background: var(--red);
    color: var(--white);
    padding: 4rem 2rem;
    text-align: center;
    border-top: 4px solid var(--yellow);
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--yellow);
}

.footer-impressum {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 1rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.footer-impressum:hover {
    color: var(--yellow);
}

.footer-copyright {
    font-size: 0.875rem;
    color: var(--gray);
}

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 1rem;
    }
    
    .logo {
        width: 150px;
    }
    
    section {
        padding: 4rem 1rem;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .social-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 120px;
    }

    .social-icon {
        width: 60px;
        height: 60px;
    }
}

/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: scaleIn 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    background: none;
    border: none;
    color: var(--gray);
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

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

.modal-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1.5rem;
    padding-right: 2rem;
}

.modal-body {
    line-height: 1.8;
}

.impressum-text {
    font-size: 1.1rem;
    color: var(--gray);
}

.impressum-text strong {
    color: var(--black);
    font-weight: 700;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
