body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background: url('../media/images/background.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #333;
    margin: 0;
    padding: 0;
}

.container {
    width: 100%;
    margin: auto;
    overflow: hidden;
}

.header-container {
    background: #333;
    color: #fff;
    padding-top: 30px;
    min-height: 70px;
	border-left: #1F456E 2px solid;
    border-bottom: #1F456E 4px solid;
    border-radius: 10px;
    margin: auto;
    overflow: visible;
}

header h1 {
    margin: 0;
    text-align: center;
}

.nav-container {
    position: absolute;
    top: 0;
    float: right;
    margin-top: 10px;
    margin: auto;
    overflow: visible;
}

header ul {
    padding: 0;
    list-style: none;
}

header li {
    display: inline;
    padding: 0 20px 0 20px;
}

header a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
}

header .dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.0);
    min-width: 100px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    padding: 2px 0;
}

header .dropdown-content a {
    color: black;
    font-size: 10px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 1.5);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
	background-color:rgba(31, 69, 110, 0.8);
    border-radius: 10px;
}

header .dropdown-content a:hover {
    background-color: #f1f1f1;
}

header .dropdown:hover .dropdown-content {
    display: block;
}

.content-container {
    width: 80%;
	border-left: #1F456E 2px solid;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    padding: 20px;
    margin: 20px auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border-bottom: #1F456E 3px solid;
}

.content {
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-size: 20px;
}

.sub-container {
    width: 80%;
    padding: 10px;
    background: #e9e9e9;
    border-radius: 10px;
    margin-top: 20px;
    margin: auto;
    overflow: hidden;
    border-bottom: #1F456E 3px solid;
}

.music-player-container {
    width: 80%;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    padding: 20px;
    margin: 20px auto;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-bottom: #1F456E 3px solid;
    overflow: hidden;
	border-left: #1F456E 2px solid;
}

.footer-container {
    padding: 20px;
    text-align: center;
    background: #333;
    color: #fff;
    border-radius: 10px;
    position: relative;
    bottom: 0;
    width: 80%;
    border-bottom: #1F456E 3px solid;
    margin: auto;
    overflow: hidden;
    font-size: 10px;
	border-left: #1F456E 2px solid;
}

.footer p {
    margin: 0;
    white-space: normal;
}

.music-player {
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    padding: 5px;
    border-radius: 10px;
    margin-top: 20px;
	border: #1F456E 2px solid;
    font-size: 12px;
}

.music-player select {
    padding: 1px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-right: 10px;
    font-size: 12px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 1.0);
}

.music-player button {
    width: 20px;
    height: 20px;
    border: none;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    margin: 0 10px;
}

.music-player button.play {
    background-image: url('../media/images/play.png');
}

.music-player button.pause {
    background-image: url('../media/images/pause.png');
}

.music-player button:hover {
    opacity: 0.8;
}

.minecraft-version {
    font-size: 20px;
    text-align: center;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

#mc-version {
    font-size: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

@media (max-width: 600px) {
    #mc-version {
        font-size: 16px;
    }
    #mc-version::after {
        height: 1px;
    }
}

#branding {
    position: absolute;
    bottom: 0;
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
}

h1 {
    margin: 0;
}

/* Styles for Carousel Gallery */
.carousel-container {
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.carousel-images {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-images img {
    width: 100%;
    border-radius: 10px;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
}

.carousel-button.prev {
    left: 10px;
}

.carousel-button.next {
    right: 10px;
}

.carousel-button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}
.carousel-button img {
    width: 30px;
    height: 30px;
}
.container-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.container-box {
    width: 48%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.box {
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.box h3 {
    margin-top: 0;
    font-size: 18px;
    color: #333;
}

.box p {
    margin: 0;
    color: #666;
}
/* Styling für das Gästebuch-Formular */
.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
    border-radius: 5px;
    border: 1px solid #ccc;
}

/* Styling für die Gästebucheinträge */
.entry {
    border: 1px solid #ccc;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 10px;
    background-color: #f9f9f9;
}

.entry h4 {
    margin: 0 0 10px 0;
}

.entry p {
    margin: 0 0 10px 0;
}

.entry div {
    display: flex;
    justify-content: space-between;
}

.entry button {
    border: none;
    background-color: transparent;
    cursor: pointer;
    font-size: 18px;
}

.entry button:hover {
    color: #1F456E;
}
