/* Reset und Basis-Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #DC2626;
    --secondary-blue: #005AA0;
    --accent-yellow: #FCD34D;
    --gray-concrete: #6B7280;
    --dark: #111827;
    --light: #F9FAFB;
    --white: #FFFFFF;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
}

@font-face {
	font-family: "Kaufhalle";
	src: url('../fonts/NikkyouSans-mLKax.ttf') format('truetype');
}


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

/* Header */
.main-header {
    background-color: var(--white);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 20px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.project-title h1 {
    font-size: 3.5rem;
    color: var(--dark);
    margin-bottom: -10px;
    font-family: "Kaufhalle";
}

.subtitle {
    color: var(--gray-concrete);
    font-size: 1.1rem;
}

.sponsor-logo img {
    height: 60px;
}

/* Hero Section */
.hero-section {
    padding: 20px 0;
    background-color: var(--white);
}

.game-preview {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.game-screenshot {
    width: 100%;
    height: auto;
    display: block;
}

.game-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: white;
    padding: 40px;
}

.game-overlay h2 {
    font-size: 2rem;
    margin-bottom: -5px;
    font-family: "Kaufhalle";
}

.game-overlay p {
    margin-bottom: 20px;
    opacity: 0.9;
}

/* Buttons */
.cta-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-red);
    color: white;
}

.btn-primary:hover {
    background-color: #B91C1C;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: var(--dark);
}

.btn-accent {
    background-color: var(--accent-yellow);
    color: var(--dark);
}

.btn-accent:hover {
    background-color: #FBBF24;
    transform: translateY(-2px);
}

/* Best Practice Section */
.best-practice {
    background-color: var(--light);
    padding: 80px 0;
}

.practice-content {
    display: flex;
    align-items: center;
    gap: 40px;
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.practice-icon {
    color: var(--secondary-blue);
}

.practice-text h3 {
    font-size: 1.8rem;
    margin-bottom: -5px;
    color: var(--dark);
    font-family: "Kaufhalle";
}

.practice-text p {
    margin-bottom: 20px;
    color: var(--gray-concrete);
}

/* Timeline Section */
.timeline-section {
    padding: 80px 0;
    background-color: var(--white);
}

.timeline-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    margin-top: 60px;
    color: var(--dark);
    font-family: "Kaufhalle";
}

.timeline {
    position: relative;
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr auto 2fr;
    gap: 40px;
    padding: 0px 0;
    /*border-bottom: 1px dashed var(--gray-concrete);*/
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-left {
    text-align: right;
}

.timeline-left h4 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 5px;
}

.date {
    color: var(--primary-red);
    font-weight: 600;
    margin-bottom: 5px;
}

.theme {
    color: var(--gray-concrete);
}

.place {
    color: var(--gray-concrete);
}

.timeline-center {
    position: relative;
    width: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timeline-point {
    width: 20px;
    height: 20px;
    background-color: var(--primary-red);
    border: 4px solid white;
    border-radius: 50%;
    box-shadow: 0 0 0 2px var(--primary-red);
    z-index: 2;
    transition: all 0.3s ease;
	margin-bottom: 20vh;

}

.timeline-point:hover {
    background-color: var(--accent-yellow);
    box-shadow: 0 0 0 2px var(--accent-yellow);
}

.timeline-line {
    position: absolute;
    top: 20px;
    bottom: -40px;
    width: 2px;
    background-color: var(--gray-concrete);
}

.timeline-item:last-child .timeline-line {
    display: none;
}

.timeline-image {
    width: 100%;
    max-width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.timeline-right {
	margin-bottom: 60px;
}

.timeline-right p {
    color: var(--gray-concrete);
    line-height: 1.4;
}


/* Team Section */
.team-section {
    padding: 80px 0;
    background-color: var(--light);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--dark);
}

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

.team-member {
    text-align: center;
    transition: transform 0.3s ease;
}

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

.member-photo {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    overflow: hidden;
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 4px solid var(--white);
    transition: all 0.3s ease;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .member-photo {
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    border-color: var(--primary-red);
}

.team-member:hover .member-photo img {
    transform: scale(1.1);
}

.member-name {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 5px;
}

.member-role {
    color: var(--gray-concrete);
    font-size: 0.95rem;
}

/* Responsive für Team Section */
@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }
}

@media (max-width: 576px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .member-photo {
        width: 150px;
        height: 150px;
    }
}



/* Footer */
.main-footer {
    background-color: var(--dark);
    color: white;
    padding: 60px 0 40px;
    margin-top: 80px;
}

.footer-content {
    text-align: center;
}

.funding-info h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--light);
}

.
