/* Common styles for the entire body */
body {
    background-color: #222;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #fff;
}

/* Header styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #111;
    padding: 5px 20px; 
}

/* Logo style */
.logo a {
    text-decoration: none;
    color: #FFD700;
    font-size: 28px;
    font-weight: bold;
    margin-right: 20px; 
    
}

/* Menu style */
nav {
    display: flex;
    align-items: center;
}

.menu {
    list-style: none;
    display: flex;
    justify-content: flex-start;
}

.menu li {
    margin-right: 20px; 
}

.menu a {
    text-decoration: none;
    color: #FFD700;
    font-size: 18px;
}

/* Style for the white box that surrounds the content */
.content-box {
    background-color: #111;
    padding: 20px;
    border: 1px solid white;
    border-radius: 10px;
    text-align: center;
    color: #000;
    width: 95%;
    margin: 20px;

}

/* Style for the white box that surrounds the content */
.content-box-promo {
    background-color: #111;
    padding: 20px;
    border: 1px solid gold;
    border-radius: 10px;
    text-align: center;
    color: #000;
    width: 95%;
    margin: 20px;
    box-shadow: 0 0 10px #F5F5DC;

}


/* Style for the white box that surrounds the content */
.content-box-warning {
    background-color: #111;
    padding: 20px;
    border: 1px solid red;
    border-radius: 10px;
    text-align: center;
    color: #000;
    width: 95%;
    margin: 20px;
  

}

/* Media Query for smaller screens */
@media (max-width: 600px) {
    .content-box {
        width: 86%; /* Adjust the width for smaller screens */
        margin: 10px; /* Adjust the margin for smaller screens */
    }
}


/* Styles for the menu and link categories */
.menu-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap; /* Allow items to wrap into the next row when the window is too narrow */
}

.menu-link {
    text-decoration: none;
    color: #FFD700;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 10px;
    margin: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: transparent; /* Start with a transparent background */
}

.menu-link:hover,
.menu-link:active {
    background-color: #444;
    color: #fff;
}

.menu-content-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.menu-content {
    display: none;
    width: 100%;
    text-align: center;
    margin-top: -15px;
}

/* Show the selected content based on the selected radio button */
input[type="radio"]:checked + .menu-link + .menu-content {
    display: block;
}

.gold-text {
    color: #F5F5DC;
}

.no-underline {
    text-decoration: none;
}

.container {
    display: flex;
    border: px solid #000;
    width: 100%;
}

.circle {
    width: 42px; /* Festgelegte Breite und Höhe für den Kreis */
    height: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #666666;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 10px; /* Füge Abstand nach rechts hinzu */
}

.circle-content {
    width: 100%; /* Strecke den Inhalt auf die gesamte Kreisfläche */
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle img {
    max-width: 100%; /* Maximale Breite auf 100% setzen, um das Bild anzupassen */
    max-height: 100%; /* Maximale Höhe auf 100% setzen */
}

.text {
    display: flex;
    flex-direction: column;
}

.title {
    font-weight: bold;
}

.links {
    color: #666666;
}

.description {
    margin-left: auto; /* Push "Show links" to the right */
    color: #222;
}



/* Footer styles */
footer {
    background-color: #111;
    padding: 20px;
    text-align: center;
    color: #fff;
   
    bottom: 0;
    width: 100%;
}

.footer-link {
    text-decoration: none;
    color: #FFD700;
    font-size: 14px;
    margin: 0 10px;
}

.footer-link:hover {
    color: #fff;
}