/* ================================
   FONT EINBINDUNG (DSGVO-konform)
================================ */

/* Organ Grinder */
@font-face {
    font-family: 'Organ Grinder';
    src: url('OrganGrinder Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Azeret Mono lokal eingebunden */
@font-face {
    font-family: 'Azeret Mono';
    src: url('fonts/AzeretMono-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}


/* ================================
   GRUNDEINSTELLUNGEN
================================ */

* {
    margin: 10;
    padding: 10;
    box-sizing: border-box;
}

body {
    background-color: #057772;
    font-family: 'Azeret Mono', monospace;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    text-align: center;
    position: relative;
    padding-bottom: 300px; /* Platz für festes Zitronen-Bild */
}


/* ================================
   LAYOUT
================================ */

.container {
    max-width: 1000px;
    padding: 40px 20px;
}


/* ================================
   LOGO
================================ */

.logo {
    width: 100%;
    max-width: 160px;
    height: auto;
    margin-top: 30px;
    margin-bottom: 20px;
}


/* ================================
   TYPOGRAFIE
================================ */

h1 {
    font-family: 'Organ Grinder', serif;
    color: #fcbe0e;
    font-size: 80px;
    line-height: 1.0;
    margin-bottom: 25px;
}

h2 {
    font-family: 'Azeret Mono', monospace;
    color: #093035;
    font-size: 14px;
    line-height: 2.0;
}

h3 {
    font-family: 'Azeret Mono', monospace;
    color: #FFFFFF;
    font-size: 10px;
    line-height: 1.25;
}


/* ================================
   ABSTAND
================================ */

.spacer {
    height: 30px;
}


/* ================================
   LINK STYLING
================================ */

h3 a {
    color: #FFFFFF;
    text-decoration: underline;
}

h3 a:hover {
    opacity: 0.8;
}


/* ================================
   FESTES BILD UNTEN
================================ */

.limone {
    width: 575px;
    height: auto;
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}


/* ================================
   RESPONSIVE
================================ */

@media (max-width: 600px) {

    h1 {
        font-size: 60px;
        line-height: 1.0;
    }

    h2 {
        font-size: 14px;
    }

    h3 {
        font-size: 10px;
    }

    .limone {
        width: 450px;
    }

}