/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1a1a1a;
    color: #fff;
}

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #2e2e2e;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
}

.navbar-banner {
    height: 50px;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0;
}

nav ul li a {
    color: #fff;
    display: inline-block;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.1s ease-in-out, transform 0.1s ease, text-shadow 0.1s ease;
}

nav ul li a:hover {
    color: #eb9af9;
    transform: translateY(-3px);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.8);
}


.discord-button {
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.2s ease-in-out;
    color: #fff;
    text-decoration: none;
}

.discord-button:hover {
    transform: translateY(-2px);
}

/* Section Styles */
.section {
    padding: 60px 20px;
    text-align: center;
}

h2 {
    margin-bottom: 40px;
    font-size: 2.5em;
    color: #9c27b0;
}

.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.card {
    background-color: #2e2e2e;
    border-radius: 10px;
    padding: 0;
    width: 300px;
    height: 450px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.card-image-cover {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background-color: #1a1a1a;
}

.card-image-contain {
    width: 100%;
    height: 200px;
    object-fit: contain;
    background-color: #1a1a1a;
}

.card-content {
    padding: 20px;
    text-align: left;
    flex-grow: 1;
}

.card-content h3 {
    margin-top: 0;
    font-size: 1.4em;
    color: #fff;
}

.card-content p {
    margin-bottom: 20px;
    font-size: 1em;
    flex-grow: 1;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    display: inline-block;
    background-color: #4a148c;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.9em;
}

.skript-original {
    background-color: #ff9800;
}

.skript-choice {
    background-color: #00bcd4;
}

.skript {
    background-color: #8bc34a;
}

.misc {
    background-color: #ff5722;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #2e2e2e;
    color: #fff;
    font-size: 14px;
}

/* Back to Top Button Styles */
#back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    background-color: #9c27b0;
    color: #fff;
    border: none;
    border-radius: 50%;
    text-align: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s ease, background-color 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

#back-to-top:hover {
    background-color: #7b1fa2;
}

#back-to-top.show {
    visibility: visible;
    opacity: 1;
}
