/*
Theme Name: Amiga Ruhrpott Theme
Author: Gemini
Version: 1.8 GIF Edition
*/

@font-face {
    font-family: 'Amiga Topaz';
    src: url('amiga_topaz.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Amiga Topaz';
    src: url('amiga_topaz.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

body {
    background-color: #f5f5f5;
    font-family: 'Amiga Topaz', sans-serif;
    color: #222;
    font-size: 20px;
    margin: 0;
    padding: 60px 0 0 0;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    box-sizing: border-box;
    -webkit-font-smoothing: none;
    -moz-osx-font-smoothing: grayscale; 
    cursor: url('cursor.png'), auto;
}

.app-container {
    background-color: #fff;
    width: 100%;
    max-width: 900px;
    min-height: 100vh;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    position: relative;
    padding: 20px 30px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

@media (min-width: 940px) {
    .app-container {
        margin: 0 auto 40px auto;
        min-height: auto;
        border-radius: 30px;
        border: 2px solid #000;
    }
}

a {
    text-decoration: none;
    color: #222;
    cursor: url('cursor.png'), pointer;
}

.boing-ball {
    width: 80px;
    height: auto;
    margin: -70px auto 10px;
    display: block;
}

.site-header {
    text-align: center;
    margin-bottom: 40px;
    padding-top: 10px;
}

.logo-main {
    font-size: 60px;
    line-height: 0.8;
    color: #001f5f;
    letter-spacing: -2px;
    position: relative;
    display: inline-block;
    font-weight: bold;
}

.logo-main span {
    color: #e60000;
}

.logo-sub {
    font-size: 24px;
    color: #e60000;
    margin-top: 5px;
    display: block;
    letter-spacing: -1px;
    font-weight: bold;
}

.logo-tagline {
    font-weight: bold;
    font-size: 14px;
    color: #001f5f;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-top: 5px;
}

h2.section-title {
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    color: #222;
    letter-spacing: 1px;
    border-bottom: 2px solid #222;
    padding-bottom: 10px;
    margin: 30px 0 20px 0;
}

.news-item, .event-item {
    margin-bottom: 25px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.news-meta {
    font-size: 20px;
    font-weight: normal;
    color: #222;
    margin-bottom: 5px;
    display: block;
}

.news-title {
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 5px 0;
    color: #222;
    cursor: url('cursor.png'), pointer;
    position: relative;
}

.news-title::after {
    content: '+';
    float: right;
    font-weight: bold;
}

.news-title.active::after {
    content: '-';
}

.news-content {
    display: none;
    font-size: 20px;
    font-weight: normal;
    line-height: 1.4;
    color: #222;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed #222;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.gallery-item {
    background-color: #eee;
    padding-bottom: 100%;
    width: 100%;
    border-radius: 4px;
    display: block;
    background-size: cover;
    background-position: center;
    transition: opacity 0.3s;
    cursor: url('cursor.png'), pointer;
    image-rendering: pixelated; 
}

.gallery-item:hover {
    opacity: 0.8;
}

.site-footer {
    margin-top: auto;
    padding-top: 30px;
    padding-bottom: 20px;
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #222;
}

.site-footer a {
    font-weight: bold;
}

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    cursor: url('cursor.png'), zoom-out;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border-radius: 5px;
    cursor: url('cursor.png'), auto;
}

.static-section {
    font-size: 20px;
    font-weight: normal;
    line-height: 1.4;
    color: #222;
}