/* Allgemeine Stile */
body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background: #1a1a1a;
    color: #fff;
}

/* Navbar - transparent */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    padding: 10px 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ffeb3b;
}

.discord-btn {
    background: #ffeb3b;
    color: #000;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background 0.3s;
}

.discord-btn:hover {
    background: #fff;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomIn 5s ease-in-out forwards;
}

@keyframes zoomIn {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1);
    }
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8));
}

.hero-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.6);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    max-width: 600px;
}

.server-die {
    color: #fff;
    font-family: 'Bebas Neue', sans-serif;
}

.server-rustlaube {
    color: #ffeb3b;
    font-family: 'Bebas Neue', sans-serif;
}

h1 {
    font-size: 4rem;
    margin: 0;
}

.hero-box p {
    font-size: 1.5rem;
    margin: 20px 0;
}

.cta-btn {
    background: #ffeb3b;
    color: #000;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    transition: background 0.3s;
}

.cta-btn:hover {
    background: #fff;
}

.server-cta-btn {
    background: #ffeb3b;
    color: #000;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s;
}

.server-cta-btn:hover {
    background: #fff;
}

/* Allgemeine Sektionen */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
    text-align: center;
}

/* Server Status */
.server-status {
    padding: 50px 0;
    background: #222;
}

.status-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.status-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.status-card p {
    margin: 10px 0;
    font-size: 1.1rem;
}

.map-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.map-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

#server-map {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    border: 2px solid #ffeb3b;
}

/* About Section */
.about-section {
    padding: 50px 0;
}

/* Server Section */
.server-section {
    padding: 50px 0;
}

.server-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.server-image-wrapper {
    max-width: 500px;
}

.server-image {
    width: 100%;
    border-radius: 10px;
}

.server-info {
    max-width: 500px;
    text-align: left;
}

.server-details {
    list-style: none;
    padding: 0;
}

/* Community Section */
.community-section {
    padding: 50px 0;
}

/* Contact Section */
.contact-section {
    padding: 50px 0;
}

/* Fade-In Animation */
.fade-in-section {
    opacity: 0;
    transition: opacity 1s ease-in;
}

.fade-in-section.visible {
    opacity: 1;
}

/* Footer */
.footer {
    text-align: center;
    padding: 20px;
    background: #111;
}

.footer-links a {
    color: #ffeb3b;
    margin: 0 10px;
    text-decoration: none;
}

.footer-links a:hover {
    color: #fff;
}

/* To Top Button */
#to-top-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #ffeb3b;
    color: #000;
    border: none;
    padding: 10px 15px;
    border-radius: 50%;
    cursor: pointer;
    display: none;
}

#to-top-btn:hover {
    background: #fff;
}