/* ============================================
   Grove Street Families - Leader Bewerbung
   Urban Dark Elegance Design
   ============================================ */

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

:root {
    --primary-green: #22c55e;
    --dark-green: #16a34a;
    --gold: #d4af37;
    --black: #0a0a0a;
    --dark-bg: #0f0f0f;
    --card-bg: #1a1a1a;
    --border-color: rgba(34, 197, 94, 0.3);
    --text-primary: #ffffff;
    --text-secondary: #e0e0e0;
    --text-muted: #999999;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--black);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 2rem;
    max-width: 800px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: bold;
    color: #22ff00;
    text-shadow: 0 0 20px rgba(34, 255, 0, 0.5);
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.hero-subtitle {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 8vw, 5rem);
    font-weight: bold;
    color: var(--gold);
    margin-bottom: 1rem;
    letter-spacing: 0.03em;
}

.hero-divider {
    width: 150px;
    height: 4px;
    background: linear-gradient(to right, #22c55e, var(--gold));
    margin: 1rem auto 1.5rem;
}

.hero-text {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-weight: 300;
}

.btn-primary {
    background-color: var(--primary-green);
    color: var(--black);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
}

.btn-primary:hover {
    background-color: var(--dark-green);
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.6);
    transform: scale(1.05);
}

.glow-text {
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        text-shadow: 0 0 10px rgba(34, 197, 94, 0.5), 0 0 20px rgba(34, 197, 94, 0.3);
    }
    50% {
        text-shadow: 0 0 20px rgba(34, 197, 94, 0.8), 0 0 40px rgba(34, 197, 94, 0.5);
    }
}

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

/* ============================================
   Application Section
   ============================================ */

.application {
    background-color: var(--black);
    padding: 4rem 2rem;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: bold;
    color: var(--primary-green);
    margin-bottom: 1rem;
    letter-spacing: 0.03em;
}

.header-divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-green), var(--gold));
    margin: 0 auto;
}

/* ============================================
   Candidate Card
   ============================================ */

.candidate-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.candidate-card:hover {
    border-color: rgba(34, 197, 94, 0.6);
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.2);
}

.candidate-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.candidate-badge {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
}

.candidate-info h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.candidate-position {
    color: var(--primary-green);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.candidate-stats {
    display: flex;
    gap: 2rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* ============================================
   Info Boxes
   ============================================ */

.info-box {
    background-color: rgba(30, 30, 30, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.info-box.ooc {
    border-color: rgba(212, 175, 55, 0.3);
}

.info-box h4 {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.info-content p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.label {
    color: var(--gold);
    font-weight: 600;
}

/* ============================================
   Sections
   ============================================ */

.section {
    margin-bottom: 3rem;
}

.section h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: bold;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.content-box {
    background-color: rgba(30, 30, 30, 0.5);
    border-left: 4px solid var(--primary-green);
    padding: 1.5rem;
    border-radius: 0.25rem 0.5rem 0.5rem 0.25rem;
    margin-bottom: 1.5rem;
}

.content-box p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.content-box p:last-child {
    margin-bottom: 0;
}

/* ============================================
   Improvements Grid
   ============================================ */

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

.improvement-item {
    background-color: rgba(30, 30, 30, 0.5);
    border: 1px solid var(--border-color);
    padding: 1rem;
    border-radius: 0.5rem;
    display: flex;
    gap: 1rem;
    transition: all 0.3s ease;
}

.improvement-item:hover {
    border-color: rgba(34, 197, 94, 0.6);
    background-color: rgba(34, 197, 94, 0.05);
}

.check {
    color: var(--primary-green);
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.improvement-item p {
    color: var(--text-secondary);
    margin: 0;
}

.improvement-note {
    text-align: center;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 1rem;
}

/* ============================================
   Qualities Grid
   ============================================ */

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

.quality-item {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, transparent 100%);
    border: 1px solid var(--border-color);
    padding: 1rem;
    border-radius: 0.5rem;
}

.quality-item p {
    color: rgba(34, 197, 94, 0.9);
    font-weight: 600;
    margin: 0;
}

.quality-note {
    text-align: center;
    color: var(--text-muted);
    margin-top: 1rem;
}

/* ============================================
   Ranks Grid
   ============================================ */

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

.rank-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(30, 30, 30, 0.5);
    border: 1px solid var(--border-color);
    padding: 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.rank-item:hover {
    border-color: rgba(34, 197, 94, 0.6);
}

.rank-item.og {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(34, 197, 94, 0.1) 100%);
    border-color: rgba(212, 175, 55, 0.5);
}

.rank-number {
    font-weight: bold;
    color: var(--primary-green);
}

.rank-name {
    color: var(--text-secondary);
}

.rank-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* ============================================
   Experience Grid
   ============================================ */

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

.experience-item {
    background-color: rgba(30, 30, 30, 0.5);
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    border-radius: 0.5rem;
}

.experience-item h4 {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.experience-item ul {
    list-style: none;
}

.experience-item li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.experience-item li:before {
    content: "•";
    color: var(--primary-green);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* ============================================
   Contact Section
   ============================================ */

.contact-section {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(212, 175, 55, 0.1) 100%);
    border: 1px solid rgba(34, 197, 94, 0.5);
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.contact-section h3 {
    margin-bottom: 1.5rem;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* ============================================
   Footer
   ============================================ */

.footer {
    background-color: var(--dark-bg);
    border-top: 1px solid var(--border-color);
    padding: 2rem;
    text-align: center;
    color: var(--text-muted);
}

.footer p {
    margin: 0.5rem 0;
}

.footer-note {
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 768px) {
    .hero-content {
        padding: 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 2rem;
    }

    .hero-text {
        font-size: 1.1rem;
    }

    .candidate-content {
        flex-direction: column;
        text-align: center;
    }

    .candidate-badge {
        width: 100px;
        height: 100px;
    }

    .candidate-stats {
        flex-direction: column;
        gap: 0.5rem;
    }

    .improvements-grid,
    .qualities-grid,
    .ranks-grid,
    .experience-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        gap: 0.75rem;
    }

    .application {
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero-text {
        font-size: 1rem;
    }

    .btn-primary {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    .section h3 {
        font-size: 1.3rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }
}
