/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #f3f4f6;
    background-color: #1a1a1a;
    overflow-x: hidden;
}

/* Parallax Effect for each section */
.parallax {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    color: #fefefe;
}

.section-news {
    background-image: url('assets/wow-bg-01.webp'); /* Wow-Themenbild für die News */
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.section1 {
    background-image: url('assets/wow-bg-02.webp'); /* Beispielbild für Mythic+ */
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.section-affixes {
    background-image: url('assets/wow-bg-04.webp'); /* Beispielbild für Affixe */
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.affix-container {
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.4);
    margin-top: 20px;
}

.affix-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.affix-item {
    display: flex;
    align-items: center;
    background: #333;
    padding: 15px;
    border-radius: 8px;
    width: 280px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

.affix-icon {
    width: 50px;
    height: 50px;
    margin-right: 15px;
}

.affix-info {
    text-align: left;
}

.section-events {
    background-image: url('assets/wow-bg-03.webp'); /* Beispielbild für World Events */
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.event-container {
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.4);
    margin-top: 20px;
}

.event-item {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #ffcc00;
}

.section-checklist {
    background-image: url('assets/wow-bg-01.webp'); /* Beispielbild für Checklist */
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

#weekly-checklist {
    text-align: left;
    margin-top: 20px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    color: #fefefe;
}

#weekly-checklist ul {
    list-style: none;
}

#weekly-checklist li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

#weekly-checklist input[type="checkbox"] {
    margin-right: 10px;
}

.section-daily-quests {
    background-image: url('assets/wow-bg-02.webp'); /* Beispielbild für Daily Quests */
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.quest-container {
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.4);
    margin-top: 20px;
}

.quest-item {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #ffcc00;
}

.content {
    max-width: 800px;
    padding: 40px;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.4);
}

h1 {
    font-size: 3em;
    font-weight: 700;
    margin-bottom: 0.5em;
    color: #ffcc00;
}

.news-feed a {
    color: #ffcc00;
    text-decoration: none;
}

.news-feed a:hover {
    text-decoration: underline;
}

.news-feed a:visited {
    color: #aaaaaa;
}

.news-feed {
    color: #fefefe;
    font-size: 1.1em;
    line-height: 1.6em;
    text-align: left;
    max-height: 200px;
    overflow: hidden;
    position: relative;
}

.show-more {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    background-color: #ffcc00;
    color: #1a1a1a;
    font-weight: bold;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.news-feed.open {
    max-height: none;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

th, td {
    padding: 12px;
    text-align: center;
    border-bottom: 1px solid #444;
    color: #fefefe;
}

th {
    background-color: #333;
    color: #ffcc00;
}

/* Button for endless scrolling */
.scroll-down {
    position: absolute;
    bottom: 20px;
    color: #ffcc00;
    font-size: 2em;
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}
