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

body {
    font-family: 'Helvetica', sans-serif;
    color: #fff;
    background: #111;
    overflow-x: hidden;
}

.inline-logo {
    display: inline;
    /* margin: 100px 5px; */
    padding-top: 20px;
    /* margin-bottom: -50px; */
    /* display: inline-block;
    width:100%; */
}

/* Parallax Hero Section */
.parallax {
    height: 100vh;
    background: url('./images/swissmountain1.jpg') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.parallax::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5) url('./images/Call-of-Duty_Wordmark_White.png') no-repeat bottom center/contain;
    opacity: 0.3;
    mix-blend-mode: overlay;
}

.hero-content {
    z-index: 1;
}

.headerlink {
    text-decoration: none !important;
    color: #fff;
    /* transition: transform .2s; Animation; */
    transform: scale(10);
    transition: all 0.3s ease-in-out 0.2s;
}

.headerlink:hover {
    /* transform: scale(1.5);  */
    /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
    opacity: 1;
    transform: scale(1);
    transition: all 0.3s ease-in-out 0.1s;
}


.footer {
    text-decoration: none !important;
    color: #fff;
}
.hero-content h1 {
    font-family: 'Orbitron', sans-serif;
    /* font-family: 'Old Standard TT', 'Times New Roman', serif; */
    font-size: 4rem;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-content h2 {
    font-family: 'Helvetica', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 30px;
    /* margin-top: 20px; */
    padding-top: 20px;
    /* max-width: 800px; */
    margin: 0 auto;
}

.hero-content p {
    font-size: 1.0rem;
    margin: 20px 0;
}

/* Discord Button */
.discord-btn {
    display: inline-block;
    padding: 15px 30px;
    margin: 10px;
    background: #c10202;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2rem;
    /* font-weight: 700; */
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: pulse 2s infinite;
}

.discord-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(114, 137, 218, 0.8);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Sections */
section {
    padding: 60px 20px;
    text-align: center;
}

h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .discord-btn {
        padding: 10px 20px;
        font-size: 1rem;
    }
}


/* Zusätzliche CSS für Fade-In-Animation */

section {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

section.fade-in {
    opacity: 1;
    transform: translateY(0);
}


.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.list {
    text-align: center;
    margin: auto;
    /* width: 50%; */
    padding: 10px;
}
.list ul {
    list-style: none;
    display: inline-block;
    text-align: left;
    padding-left: 50px;
}

.list li {
    /* display: inline; */
    padding: 3px;
}


hr {
    margin-left: auto;
    margin-right: auto;
    /* margin-top: 1.25em; */
    /* margin-bottom: 1.25em; */
    /* width: 10px;
    height: 10px; */
    background-color: #777;
    background: linear-gradient(to right, red, yellow,green,blue,red);
    height: 3px;
    border: 0;
}

.hrswiss {
    margin-left: auto;
    margin-right: auto;
    /* margin-top: 1.25em; */
    /* margin-bottom: 1.25em; */
    /* width: 10px;
    height: 10px; */
    background-color: #777;
    background: linear-gradient(to right,rgba(255,0,0,0), rgba(255,0,0,0),white, red, white,rgba(255,0,0,0), rgba(255,0,0,0));
    height: 3px;
    border: 0;
}

