/* Importing the custom font */
@font-face {
    font-family: 'itc-avant-garde-gothic-pro';
    src: url('fonts/itc-avant-garde-gothic-pro.woff2') format('woff2'),
         url('fonts/itc-avant-garde-gothic-pro.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* Global Styles */
body {
    background-color: #F4F3E8; /* Base color */
    font-family: 'itc-avant-garde-gothic-pro', sans-serif;
    color: #31312F;
    margin: 0;
    padding: 0;
}

h1, h2, h3 {
    color: #31312F;
    text-align: center;
    margin-top: 0;
}

p, li {
    color: #31312F;
    line-height: 1.6;
}

a {
    color: #31312F;
    text-decoration: underline;
}


a:hover {
    color: #FCCC02; /* Secondary color */
}

/* Header */
header {
    background-color: #FCCC02; /* Secondary color */
    padding: 50px 20px;
}

header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

header h2 {
    font-size: 1.5em;
}

/* Main Content */
main {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
}

section {
    margin-bottom: 60px;
}

.event-image {
    width: 50%;
    display: block;
    margin: 0 auto;
}

.video-container {
    width: 50%;
    margin: 40px auto;
}

.video-container iframe {
    width: 100%;
    height: auto;
    border: none;
}

ul {
    list-style: none;
    padding: 0;
}

li::before {
    content: "• ";
    color: #FCCC02; /* Secondary color */
    font-weight: bold;
}

li {
    margin-bottom: 10px;
}

/* Buttons */
.button {
    display: inline-block;
    background-color: #31312F;
    color: #F4F3E8; /* Base color */
    padding: 15px 30px;
    border: 2px solid #31312F;
    text-transform: uppercase;
    font-weight: bold;
    margin: 20px auto;
    transition: background-color 0.3s, color 0.3s;
    cursor: pointer;
}

.button:hover {
    background-color: #FCCC02; /* Secondary color */
    color: #31312F;
}

/* Centering buttons */
#anmeldung .button,
#erneute-anmeldung .button {
    display: block;
    width: fit-content;
}

/* Footer */
footer {
    background-color: #31312F;
    color: #F4F3E8; /* Base color */
    text-align: center;
    padding: 30px 20px;
}

footer p {
    margin: 0;
}

footer a {
    color: #FCCC02; /* Secondary color */
    text-decoration: underline;
}

.social-icons {
    margin-top: 20px;
}

.social-icons a {
    margin: 0 10px;
    color: #F4F3E8; /* Base color */
    font-size: 1.2em;
}

.social-icons a:hover {
    color: #FCCC02; /* Secondary color */
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .event-image,
    .video-container {
        width: 80%;
    }

    header h1 {
        font-size: 2em;
    }

    header h2 {
        font-size: 1.2em;
    }
}
