:root {
    --primary-color: #1e3d59;
    --secondary-color: #17c3b2;
    --accent-color: #ffd700;
    --light-color: #f5f5f5;
    --dark-color: #333;
    --sand-color: #f4d03f;
    --sand-color-light: #f9e79f;
    --sand-color-dark: #d4ac0d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #f5e6d3; /* Hellere Sandfarbe als Fallback */
    background-image: 
        linear-gradient(135deg, rgba(244, 208, 63, 0.3), rgba(249, 231, 159, 0.5)),
        repeating-linear-gradient(45deg, 
            rgba(212, 172, 13, 0.1) 0px, 
            rgba(212, 172, 13, 0.1) 2px, 
            transparent 2px, 
            transparent 4px);
    background-attachment: fixed;
    position: relative;
}

header {
    background-color: var(--primary-color);
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo h1 {
    color: var(--light-color);
    font-size: 2rem;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    color: var(--light-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.hero {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/fsxlogo.png');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-color);
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.player-section {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.player-container {
    text-align: center;
}

.now-playing {
    margin-bottom: 1.5rem;
}

.player-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

#play-pause {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#play-pause:hover {
    background-color: var(--primary-color);
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 1rem;
}

#volume {
    width: 100px;
}

footer {
    background-color: var(--primary-color);
    color: var(--light-color);
    text-align: center;
    padding: 1rem;
    position: fixed;
    bottom: 0;
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        text-align: center;
    }

    .nav-links {
        margin-top: 1rem;
        flex-direction: column;
    }

    .nav-links li {
        margin: 0.5rem 0;
    }

    .hero-content h2 {
        font-size: 2rem;
    }
} 