/* Global Styles */

* {
    font-family: 'roboto mono', sans-serif;
    box-sizing: border-box;
}

.seo {
   font-weight: normal; 
}

main img {
    max-width: 16rem; 
}

/* header Styles */

header {
    background-color: #150422;
    display: flex; 
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    min-width: 100vw;
    z-index: 9999;
}

#logo {
    max-height: 6rem; 
}

header a {
    color: white;
    text-decoration: none;
}

#main-nav li {
    list-style: none; 
}

/* Main Befehle */

main {
    display: flex;
    flex-direction: column;
    margin-top: 8rem;
    margin-right: 1rem;
    margin-left: 1rem;
    font-size: 0.8rem;
    gap: 2rem; 
}

main img {
    filter: brightness(0.95) contrast(1.1) saturate(0.9);
}

main a {
    text-decoration: none; 
    color: #150422; 
    font-size: 1rem; 
}

main a:hover {
    text-decoration: underline;
}

.container img {
    align-self: center; 
}

.container {
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    margin-top: 2rem;
    background-color: #eaeaea;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 1rem 1rem rgba(0,0,0,0.1);
    margin: 0 auto;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 100%; 
}

#cta {
    background-color: #eaeaea;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 1rem 1rem rgba(0,0,0,0.1);
    margin: 0 auto;
    transition: all 0.3s ease;
    max-width: 500px;
    width: 100%;
    text-align: center; 
}

#intro {
    display: flex;
    flex-direction: column;
    text-align: center; 
}

#intro p {
    font-size: 1.2rem; 
}

main a {
    color: #3d0b62; 
}

/* Footer Styles */

footer {
    background-color: #150422; 
    margin-top: 2rem; 
    display: flex; 
    justify-content: space-evenly;
    align-items: center; 
}

#footer-logo {
    max-height: 6rem;
}

#kleinanzeigen {
    max-height: 3rem; 
}

#insta-logo {
    width: 3rem;
    height: auto;
    max-width: 100%; 
    }
    
#fb-logo {
    width: 3rem;
    height: auto;
    max-width: 100%; 
    }

#footer-nav {
    display: none; 
}

.countdown {
  font-size: 1.3rem;
  font-weight: bold;
  color: #e3ce23;
  background-color: #150422;
  padding: 0.4rem 1.2rem;
  border-radius: 1.2rem;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 rgba(255, 255, 0, 0); }
  50% { box-shadow: 0 0 12px rgba(255, 255, 0, 0.5); }
  100% { box-shadow: 0 0 0 rgba(255, 255, 0, 0); }
}

#linkhinweis {
    margin-top: -0.8rem;
    font-size: 0.8rem !important;
    font-style: italic;
    opacity: 0.6;
}

/* Burger Navigation */

#burger {
    font-size: 2.5rem;
    cursor: pointer;
    display: block;
    color: white;
    margin-right: 0.8rem; 
}

#burger-toggle {
    display: none;
}

#main-nav {
    display: none;
    position: absolute;
    top: 100%; 
    right: 0;
    background: #150422;
    width: 100%;
    text-align: center;
}

#burger-toggle:checked + #burger + #main-nav {
    display: block;
}

@media (max-width: 1024px) {

#main-nav a {
    display: block; 
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.2rem; 
    font-weight: 500; 
    text-align: left; 
}

#burger-toggle:checked + #burger + #main-nav {
    display: block;
}

#main-nav {
    background-color: rgba(24, 0, 39, 0.83);
    backdrop-filter: blur(2px);
    }
    
}