/* style.css - Komplettes CSS für FambosYT.de */
:root {
    --primary: #4CAF50;
    --primary-light: #81C784;
    --secondary: #2196F3;
    --dark: #121212;
    --darker: #0A0A0A;
    --light: #E0E0E0;
    --text: #FFFFFF;
    --text-secondary: #BDBDBD;
    
    --glass: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.12);
    --glass-highlight: rgba(255, 255, 255, 0.15);
    
    --blur: 12px;
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.36);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Basis-Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', 'Minecraft', sans-serif;
}

body {
    background: linear-gradient(135deg, var(--darker), var(--dark));
    color: var(--text);
    min-height: 100vh;
    line-height: 1.7;
    background-attachment: fixed;
    background-size: cover;
}

/* Glas-Effekte */
.glass {
    background: var(--glass);
    backdrop-filter: blur(var(--blur));
    -webkit-backdrop-filter: blur(var(--blur));
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow);
    border-radius: 16px;
    transition: var(--transition);
}

.glass:hover {
    background: var(--glass-highlight);
    transform: translateY(-3px);
}

/* Header */
header {
    background: rgba(18, 18, 18, 0.8);
    backdrop-filter: blur(var(--blur));
    -webkit-backdrop-filter: blur(var(--blur));
    padding: 1.2rem 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.logo {
    height: 50px;
    filter: drop-shadow(0 0 8px rgba(76, 175, 80, 0.4));
}

nav ul {
    display: flex;
    gap: 1.8rem;
    list-style: none;
}

nav a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

nav a:hover {
    color: var(--primary-light);
}

nav a.active {
    color: var(--primary);
}

nav a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

/* Main Content */
main {
    flex: 1;
    padding: 3rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-align: center;
    font-weight: 700;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7)), 
                url('img/hero-bg.jpg') center/cover;
    padding: 6rem 2rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
                rgba(33, 150, 243, 0.1), 
                rgba(76, 175, 80, 0.1));
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    color: var(--light);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2rem;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

/* Server Info */
.server-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.info-box {
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.info-box h3 {
    color: var(--secondary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.info-box p {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    padding: 2.5rem 2rem;
    text-align: center;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Team Page */
.team-section {
    padding: 2rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0 4rem;
}

.team-member {
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid var(--primary);
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.3);
}

.team-member h3 {
    color: var(--primary-light);
    margin-bottom: 0.5rem;
}

.position {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.bio {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-links a {
    color: var(--text);
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--primary);
}

/* Updates Page */
.updates-section {
    padding: 2rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.update-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.update {
    padding: 2rem;
    transition: transform 0.3s;
}

.update:hover {
    transform: translateY(-5px);
}

.update-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 1rem;
}

.update-header h3 {
    color: var(--primary-light);
}

.update-date {
    color: var(--secondary);
    font-weight: 600;
}

.update-content {
    display: flex;
    gap: 2rem;
}

.update-features {
    flex: 1;
    list-style: none;
}

.update-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.update-features i {
    color: var(--primary);
    min-width: 20px;
}

.update-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    max-width: 400px;
}

.update-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.update-archive {
    background: var(--glass);
    padding: 1.5rem;
    border-radius: 8px;
}

.update-archive h3 {
    margin-bottom: 1rem;
    color: var(--primary-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.update-archive ul {
    list-style: none;
    margin-bottom: 1rem;
}

.update-archive li {
    margin-bottom: 0.5rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--glass-border);
}

.update-archive a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s;
}

.update-archive a:hover {
    color: var(--primary);
}

/* Kontakt Page */
.contact-section {
    padding: 2rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-info, .contact-form {
    padding: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-item i {
    color: var(--primary);
    font-size: 1.2rem;
    width: 30px;
    text-align: center;
}

.contact-form h2, .contact-info h2 {
    margin-bottom: 1.5rem;
    color: var(--primary-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.3);
}

.faq-section {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.faq-container {
    margin-top: 1.5rem;
}

.faq-item {
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--glass-border);
}

.faq-item h3 {
    padding: 1rem 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text);
}

.faq-item h3 i {
    transition: transform 0.3s;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 1rem;
}

.faq-content p {
    padding-bottom: 1rem;
    color: var(--text-secondary);
}

/* Bewerbungsseite */
.application-section {
    padding: 2rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.application-container {
    padding: 2rem;
    margin-bottom: 2rem;
}

.positions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.position-card {
    padding: 1.5rem;
    transition: transform 0.3s;
}

.position-card:hover {
    transform: translateY(-5px);
}

.position-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.position-requirements {
    list-style: none;
    margin-top: 1rem;
}

.position-requirements li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.position-requirements i {
    color: var(--primary);
}

.application-form-container {
    padding: 2rem;
    margin-bottom: 2rem;
}

.application-form {
    margin-top: 1.5rem;
}

.application-form .form-group {
    margin-bottom: 1.5rem;
}

.application-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.application-form input,
.application-form select,
.application-form textarea {
    width: 100%;
    padding: 0.8rem;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    transition: all 0.3s;
}

.application-form textarea {
    min-height: 100px;
    resize: vertical;
}

.application-info {
    padding: 1.5rem;
    margin-top: 2rem;
}

.application-info ul {
    list-style: none;
    margin-top: 1rem;
}

.application-info li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.application-info li::before {
    content: "•";
    color: var(--primary);
    position: absolute;
    left: 0;
}

/* Regelwerk Page */
.regelwerk-section {
    padding: 2rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.regelwerk-container {
    padding: 2rem;
    margin-bottom: 3rem;
}

.regelwerk-container h1 {
    color: var(--primary);
    margin-bottom: 2rem;
    font-size: 2.5rem;
    text-align: center;
}

.regelwerk-container h2 {
    color: var(--secondary);
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 0.5rem;
}

.regelwerk-container h3 {
    color: var(--primary-light);
    margin: 1.5rem 0 0.8rem;
    font-size: 1.2rem;
}

.regelwerk-container p, 
.regelwerk-container ul,
.regelwerk-container ol {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.regelwerk-container ul,
.regelwerk-container ol {
    padding-left: 2rem;
}

.regelwerk-container li {
    margin-bottom: 0.5rem;
}

.rule-category {
    margin-bottom: 3rem;
}

.rule-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border-left: 3px solid var(--primary);
}

.rule-punishment {
    color: #ff6b6b;
    font-weight: 500;
    margin-top: 0.5rem;
    font-style: italic;
}

/* Footer */
footer {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(var(--blur));
    -webkit-backdrop-filter: blur(var(--blur));
    padding: 3rem 5%;
    text-align: center;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.social-icons a {
    color: var(--text);
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-icons a:hover {
    color: var(--primary);
    transform: translateY(-3px);
}

.copyright {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1rem;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.8rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .server-info, 
    .features-grid, 
    .team-grid,
    .contact-container,
    .positions-grid,
    .regelwerk-container {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }
    
    .update-content {
        flex-direction: column;
    }
    
    .update-image {
        max-width: 100%;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .rule-item {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 4rem 1rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .application-form-container,
    .application-container,
    .regelwerk-container {
        padding: 1rem;
    }
    
    .regelwerk-container h1 {
        font-size: 2rem;
    }
    
    .regelwerk-container h2 {
        font-size: 1.3rem;
    }
    
    .regelwerk-container h3 {
        font-size: 1.1rem;
    }
}