/* ============================
   GLOBAL RESET
   ============================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
    font-family: "ITC Avant Garde Gothic", sans-serif;
    font-weight: 700;
    font-style: italic;
    color: #000000;
    overflow-x: hidden;
}


/* ============================
   HINTERGRUND
   ============================ */

html {
    background-image: url('/templates/schlogk/images/schlogk_teddy.png');
    background-size: cover;
    background-position: calc(70% + 350px) center;
    background-attachment: fixed;
}


/* ============================
   HEADER FIXIERT – TRANSPARENT
   ============================ */

#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    padding: 20px;
    text-align: center;

    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}


/* ============================
   FOOTER FIXIERT – RADIKAL TRANSPARENT
   ============================ */

#footer,
#footer *,
#footer::before,
#footer::after,
footer,
footer *,
footer::before,
footer::after {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    outline: none !important;
}

#footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    text-align: right;
    padding: 20px 40px;
}

/* Links im Footer */
#footer p {
    margin: 0;
    display: inline-block;
}

#footer a {
    margin-left: 20px;
}


/* ============================
   PLATZ FÜR HEADER & FOOTER
   ============================ */

body {
    padding-top: 120px;
    padding-bottom: 120px;
}


/* ============================
   LAYOUT: HAUPTBEREICH
   ============================ */

#main-row {
    display: flex;
    gap: 20px;
    padding: 20px;
}

/* Linke Navigation */
#nav-left {
    flex: 0 0 750px;
}

/* Hauptinhalt */
#main-content {
    flex: 3;
}

#nav-right {
    flex: 0 0 150px;
}


/* ============================
   TRANSPARENTE MODULE
   ============================ */

#top-modules > *,
#main-row,
#nav-left,
#main-content,
#nav-right,
#bottom-modules > *,
#after-footer-modules > * {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

section:empty,
div:empty,
aside:empty {
    display: none !important;
}


/* ============================
   TYPOGRAFIE
   ============================ */

body, p, li, a, span, div {
    line-height: 1.4;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 20px;
    line-height: 1.2;
    color: #000000;
}

h1 { font-size: 3rem; letter-spacing: -1px; }
h2 { font-size: 2.4rem; }
h3 { font-size: 1.9rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.2rem; }
h6 { font-size: 1rem; font-weight: 600; }

p { margin-bottom: 20px; }

ul, ol {
    margin-left: 25px;
    margin-bottom: 20px;
}

li { margin-bottom: 8px; }


/* ============================
   LINKS
   ============================ */

a {
    color: #000000;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease-in-out;
}

a:hover {
    color: #FFD700;
    border-bottom: 2px solid #FFD700;
}

a:active,
a:focus {
    color: #000000;
    border-bottom: 2px solid #000000;
    outline: none;
}


/* ============================
   BUTTONS
   ============================ */

button,
input[type="submit"],
input[type="button"],
.btn {
    background: #000000;
    color: #FFD700;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

button:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
.btn:hover {
    background: #FFD700;
    color: #000000;
}
/* ==========================================
   HEADER-SCHRIFTZUG POSITION MIT 10PX MEHR ABSTAND NACH OBEN
   ========================================== */

#header h1,
#header-text h1,
#header .moduletable h1,
#header .custom h1 {
    position: absolute !important;
    top: calc(50% - 10px) !important;  /* 10px höher */
    left: 65% !important;
    transform: translate(-50%, -50%) !important;
    margin: 0 !important;
    padding: 0 !important;
    white-space: nowrap !important;
}

.share a {
    display: block;
    margin: 6px 0;
    padding: 6px 0;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

.share a:hover {
    color: #000;
}

.schlogk-top100 {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.schlogk-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 30px;
    font-weight: bold;
}

.schlogk-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 25px;
}

.schlogk-item {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.schlogk-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}

.schlogk-image img {
    width: 100%;
    height: auto;
    display: block;
}

.schlogk-info {
    padding: 15px;
    text-align: center;
}

.schlogk-name {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.schlogk-hits {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 15px;
}

.schlogk-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.schlogk-view,
.schlogk-share {
    padding: 8px 14px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: bold;
    color: #fff;
    background: #000;
    transition: background 0.2s ease;
}

.schlogk-view:hover,
.schlogk-share:hover {
    background: #444;
}




