*{
    margin: 0;
    padding: 0;
    box-sizing: border-box; /*margin und padding in max-width eingerechnet*/
}
html,body{
    height: 100%;
    margin: 0;
}
html{
    scroll-behavior: smooth;
}
body{
    font-family: sans-serif;
    background: /*#0f172a*/rgb(0, 0, 28);
    color: #f8fafc;
    line-height: 1.4;
}
#logo{
    width: 100%;
    max-width: none;
    height: 100vh;
    position: relative;
    background: linear-gradient(rgba(15,23,42,0.5), rgba(15,23,42,0.7)), url('logo.jpg') center/cover no-repeat;
}
.scroll-arrow {
    position: absolute;
    bottom: 2rem;
    right: 10%;
    transform: translateX(-50%);

    font-size: 2.5rem;
    color: #f8fafc;
    text-decoration: none;

    animation: bounce 1.5s infinite;
    opacity: 0.3;
}
.scroll-arrow:hover {
    opacity: 1;
}
header {
    color: white;
    min-height: 100vh;
    background: linear-gradient(rgba(15,23,42,0.7), rgba(15,23,42,0.9)), url('hintergrund.jpg') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
h1{
    color: rgb(255, 215, 0);
    font-family: 'Times New Roman', Times, serif;
    font-size: 3rem;
    font-weight: 900;
}
#motto{
    font-family: 'Times New Roman', Times, serif;
    font-size: 1.5rem;
    font-weight: 600;
}
#header-text{
    font-size: 1.3rem;
}
.button {
    margin-top: 1.5rem;
    padding: 0.8rem 1.5rem;
    background: #38bdf8;
    color: #0f172a;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
}
section{
    max-width: 1000px;
    margin: auto;
    padding: 2rem;
}
a{
    color: rgb(244, 191, 94);
    text-decoration: none;
}
.extern:hover{ /*für externe Links z.B. zu ZfV*/
    color: wheat;
    text-decoration: underline;
}
h2{
    color: rgb(172, 147, 0);
}
h3{
    color: rgb(210, 179, 0);
}
.sponsoren-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.sponsoren-card{ /*Art von Sponsor*/
    background-color: rgb(0, 47, 86);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.ticket-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.ticket-card{
    background-color: #0f172a;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
}
.grid-h3{
    color: white; 
}
footer{
    text-align: center;
    background-color: rgb(0, 0, 0);
    color: rgb(238, 255, 255);
    padding: 2rem;
    font-size: 0.9rem;
}
#impressum{
    color: white;
}