/* --- GRUNDEINSTELLUNGEN --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #FFFFFF;
    font-family: 'Itim', cursive; /* Hier wird die Schriftart genutzt */
}

/* Hauptcontainer */
.main-container {
    position: relative;
    width: 100%;
    min-height: 2800px; /* Originalhöhe */
    margin: 0 auto;
    background: #FFFFFF;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    padding-bottom: 120px; /* Platz für den Footer reservieren */
}

/* --- KOPFZEILE (HEADER) --- */
.header {
    position: relative; /* Ändere auf sticky oder fixed bei Bedarf */
    width: 100%;
    height: 127px;
    background: rgba(0, 0, 0, 0.6);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.logo-container {
    padding-top: 12px;
    padding-left: 20px; /* Kleiner Abstand links */
}

/* Damit der Link um das Bild funktioniert */
.logo-link {
    display: inline-block;
    text-decoration: none;
}

.logo-img {
    display: block;
    width: 643px; /* Originalbreite aus deinem Design */
    height: auto; /* Höhe passt sich automatisch an */
    max-width: 100%; /* Verhindert, dass es auf Handys rausragt */
}

.header-strip {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 12px;
    background: rgba(0, 0, 0, 0.44);
}

/* --- INHALT --- */
.content-placeholder {
    padding: 50px;
    text-align: center;
}

/* --- FUSSZEILE (FOOTER) --- */
.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 89px;
    background: rgba(0, 0, 0, 0.6);
    box-shadow: 0px -4px 4px rgba(0, 0, 0, 0.25);
}

/* Die gelben Streifen */
.footer-decor-top,
.footer-decor-bottom {
    position: absolute;
    width: 100%;
    height: 8px;
    background: #FFCC00;
    left: 0;
}
.footer-decor-top { top: 0; }
.footer-decor-bottom { bottom: 0; }

.decor-side-left, .decor-side-right {
    position: absolute;
    top: 0;
    width: 8px;
    height: 100%;
    background: #FFCC00;
}
.decor-side-left { left: 0; }
.decor-side-right { right: 0; }

/* Navigation im Footer */
.footer-content {
    height: 100%;
    display: flex;
    justify-content: center; /* Zentriert die Buttons */
    align-items: center;
}

.footer-nav {
    display: flex;
    gap: 80px; /* Abstand zwischen den Buttons */
    flex-wrap: wrap; /* Falls der Platz eng wird, umbrechen */
}

/* --- BUTTONS --- */
.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 194px;
    height: 52px;
    background: #FFCC00;
    border-radius: 10px;
    
    /* Text Styles */
    font-family: 'Itim', cursive;
    font-size: 35px;
    color: rgba(0, 0, 0, 0.7);
    text-decoration: none;
    
    /* Design Styles */
    border: 1px solid #000000;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    transition: transform 0.1s;
}

.btn:hover {
    background-color: #ffd633; /* Heller beim Drüberfahren */
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0);
}