/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.8), rgba(26, 26, 46, 0.8)), url('/assets/images/trail-bild.jpg') center/cover no-repeat;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    z-index: 1;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    text-shadow: -4px -4px 0px rgba(139, 92, 246, 0.9), 4px 4px 0px rgba(236, 72, 153, 0.9);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--light-text);
    margin-bottom: 1rem;
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Grid Layouts */
.trail-grid,
.community-grid,
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

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

.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* Sections */
.status-section {
    padding: 4rem 0;
}

.trail-section {
    padding: 6rem 0;
}

.community-section {
    padding: 6rem 0;
    background: var(--light-bg);
}

.safety-section {
    padding: 6rem 0;
}

.team-section {
    padding: 5rem 0;
    background: var(--light-bg);
}

.contact-section {
    padding: 6rem 0;
}

.footer {
    background: #0a0a0a;
    color: white;
    padding: 4rem 0 2rem;
}

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

/* Page Header */
.page-header {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--background-color), var(--light-bg));
    text-align: center;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    text-shadow: -4px -4px 0px rgba(139, 92, 246, 0.9), 4px 4px 0px rgba(236, 72, 153, 0.9);
}

.header-subtitle {
    font-size: 1.2rem;
    color: var(--light-text);
    font-weight: 500;
}

/* Content Section */
.content-section {
    padding: 4rem 0;
}

.content-card {
    background: rgba(139, 92, 246, 0.05);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(139, 92, 246, 0.1);
    backdrop-filter: blur(10px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
        background: linear-gradient(135deg, rgba(15, 15, 35, 0.9), rgba(26, 26, 46, 0.9)), url('/assets/images/trail-bild.jpg') center/cover no-repeat;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        text-shadow: -2px -2px 0px rgba(139, 92, 246, 0.9), 2px 2px 0px rgba(236, 72, 153, 0.9);
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .status-card {
        padding: 1.5rem;
    }
    
    .trail-section h2,
    .community-section h2,
    .safety-section h2,
    .team-section h2,
    .contact-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .page-header {
        padding: 6rem 0 3rem;
    }
    
    .header-subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .content-card {
        padding: 2rem;
    }
    
    .trail-grid,
    .community-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        background: linear-gradient(135deg, rgba(15, 15, 35, 0.95), rgba(26, 26, 46, 0.95)), url('/assets/images/trail-bild.jpg') center/cover no-repeat;
    }
    
    .hero h1 {
        font-size: 2rem;
        text-shadow: -1px -1px 0px rgba(139, 92, 246, 0.9), 1px 1px 0px rgba(236, 72, 153, 0.9);
    }
    
    .page-header h1 {
        font-size: 2rem;
        text-shadow: -1px -1px 0px rgba(139, 92, 246, 0.9), 1px 1px 0px rgba(236, 72, 153, 0.9);
    }
    
    .page-header {
        padding: 5rem 0 2rem;
    }
    
    .header-subtitle {
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .trail-card,
    .community-card,
    .contact-card {
        padding: 1.5rem;
    }
    
    .content-card {
        padding: 1.5rem;
    }
} 