/*Header*/
#header {
    background: url("../../images/header-background.jpg") no-repeat fixed center;
    min-width: 100%;
    min-height: 400px;
    height: 30vh;
    background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -webkit-background-size: cover;
    z-index: 0;
    display: flex;
    align-items: center;
}

#header .content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    padding: 150px;
    width: 100%;
}

#header .content .info {
    display: flex;
    flex-direction: column;
}

#header .content .info .minecraft-server-ip {
    color: var(--white-color);
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
}

#header .content .info .title {
    color: var(--white-color);
    text-transform: uppercase;
    font-size: 65px;
    font-weight: 900;
}

#header .content .info .title span {
    color: var(--main-color);
}

#header .content .description {
    color: var(--description-color);
    font-size: 18px;
    font-weight: 400;
    max-width: 700px;
    line-height: 1.6;
}

/* Changelog page spacing overrides (prevents large gaps from global section styles) */
body section.minecraftchange,
body section.discordchange,
body section.webchange {
    margin: 0 !important;
    padding: 0px 0 !important; /* adjust vertical spacing between blocks */
}

/* Reduce the gap between title block and accordion list */
body section.minecraftchange .content,
body section.discordchange .content,
body section.webchange .content {
    gap: 12px;
}

/*minecraft*/
.minecraftchange {
    background: var(--stats-background);
}

.minecraftchange .content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.minecraftchange .content .info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.minecraftchange .content .info .section-title {
    font-size: 30px;
    font-weight: 700;
    color: var(--white-color);
    position: relative;
}

.minecraftchange .content .info .section-title::before {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 150px;
    height: 1px;
    border-radius: 5px;
    background: var(--description-color);
}

.minecraftchange .content .info .section-title::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 3px;
    border-radius: 5px;
    background: var(--main-color);
}

.minecraftchange .content .info .section-title span {
    color: var(--main-color);
}

.minecraftchange .content .info .section-description {
    color: var(--description-color);
    font-size: 17px;
    line-height: 1.6;
    max-width: 70%;
}

.minecraftchange .content .accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.minecraftchange .content .accordion .accordion-item {
    background: var(--stats-background);
    border-radius: 5px;
}

.minecraftchange .content .accordion .accordion-item .accordion-item-header {
    padding: 20px 10px 20px 20px;
    line-height: 1.6;
    font-weight: 600;
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    color: var(--white-color);
    font-size: 17px;
}

.minecraftchange .content .accordion .accordion-item .accordion-item-header::after {
    content: "\002B";
    font-size: 20px;
    position: absolute;
    right: 20px;
}

.minecraftchange .content .accordion .accordion-item .accordion-item-header.active::after {
    content: "\2212";
}

.minecraftchange .content .accordion .accordion-item .accordion-item-body {
    max-height: 0;
    overflow: hidden;
    transition: 0.2s ease-in-out;
}

.minecraftchange .content .accordion .accordion-item .accordion-item-body .accordion-item-body-content {
    padding: 20px;
    line-height: 1.6;
    border-top: 1px solid var(--stats-background);
    color: var(--description-color);
}

/*Discord Changelogs*/
.discordchange {
    background: var(--stats-background);
    top: 2px;
}

.discordchange .content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.discordchange .content .info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.discordchange .content .info .section-title {
    font-size: 30px;
    font-weight: 700;
    color: var(--white-color);
    position: relative;
}

.discordchange .content .info .section-title::before {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 150px;
    height: 1px;
    border-radius: 5px;
    background: var(--description-color);
}

.discordchange .content .info .section-title::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 3px;
    border-radius: 5px;
    background: var(--main-color);
}

.discordchange .content .info .section-title span {
    color: var(--main-color);
}

.discordchange .content .info .section-description {
    color: var(--description-color);
    font-size: 17px;
    line-height: 1.6;
    max-width: 70%;
}

.discordchange .content .accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.discordchange .content .accordion .accordion-item {
    background: var(--stats-background);
    border-radius: 5px;
}

.discordchange .content .accordion .accordion-item .accordion-item-header {
    padding: 20px 10px 20px 20px;
    line-height: 1.6;
    font-weight: 600;
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    color: var(--white-color);
    font-size: 17px;
}

.discordchange .content .accordion .accordion-item .accordion-item-header::after {
    content: "\002B";
    font-size: 20px;
    position: absolute;
    right: 20px;
}

.discordchange .content .accordion .accordion-item .accordion-item-header.active::after {
    content: "\2212";
}

.discordchange .content .accordion .accordion-item .accordion-item-body {
    max-height: 0;
    overflow: hidden;
    transition: 0.2s ease-in-out;
}

.discordchange .content .accordion .accordion-item .accordion-item-body .accordion-item-body-content {
    padding: 20px;
    line-height: 1.6;
    border-top: 1px solid var(--stats-background);
    color: var(--description-color);
}

/*WEB Changelogs*/
.webchange {
    background: var(--stats-background);
}

.webchange .content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.webchange .content .info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.webchange .content .info .section-title {
    font-size: 30px;
    font-weight: 700;
    color: var(--white-color);
    position: relative;
}

.webchange .content .info .section-title::before {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 150px;
    height: 1px;
    border-radius: 5px;
    background: var(--description-color);
}

.webchange .content .info .section-title::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 3px;
    border-radius: 5px;
    background: var(--main-color);
}

.webchange .content .info .section-title span {
    color: var(--main-color);
}

.webchange .content .info .section-description {
    color: var(--description-color);
    font-size: 17px;
    line-height: 1.6;
    max-width: 70%;
}

.webchange .content .accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.webchange .content .accordion .accordion-item {
    background: var(--stats-background);
    border-radius: 5px;
}

.webchange .content .accordion .accordion-item .accordion-item-header {
    padding: 20px 10px 20px 20px;
    line-height: 1.6;
    font-weight: 600;
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    color: var(--white-color);
    font-size: 17px;
}

.webchange .content .accordion .accordion-item .accordion-item-header::after {
    content: "\002B";
    font-size: 20px;
    position: absolute;
    right: 20px;
}

.webchange .content .accordion .accordion-item .accordion-item-header.active::after {
    content: "\2212";
}

.webchange .content .accordion .accordion-item .accordion-item-body {
    max-height: 0;
    overflow: hidden;
    transition: 0.2s ease-in-out;
}

.webchange .content .accordion .accordion-item .accordion-item-body .accordion-item-body-content {
    padding: 20px;
    line-height: 1.6;
    border-top: 1px solid var(--stats-background);
    color: var(--description-color);
}

/* reduziert riesigen globalen section padding */
.minecraftchange .content,
.discordchange .content,
.webchange .content {
  padding: 50px 150px !important;
}
