/*
Theme Name: GeneratePress Child
Template: generatepress
*/

/* ==========================================
   HEADER-BILDER
   ========================================== */

.lt-header-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.lt-header-weine {
    background-image: url('http://www.willi.grafoner.com/blog/wp-content/uploads/2026/06/WeinMenue.jpg');
}

.lt-header-buecher {
    background-image: url('http://www.willi.grafoner.com/blog/wp-content/uploads/2026/06/BuecherMenue.jpg');
}

/* ==========================================
   BEREICHS-MENÜS
   ========================================== */

.lt-bereich-menu {
    list-style: none;
    margin: 0;
    padding: 10px 0;
    display: flex;
    justify-content: center;
    gap: 30px;
    background-color: #f5f0eb;
}

.lt-bereich-menu li a {
    text-decoration: none;
    color: #5a2d2d;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.lt-bereich-menu li a:hover {
    color: #8b0000;
}

/* ==========================================
   KACHELN - Gleiche Größe
   ========================================== */

/* Alle Bilder in Spalten-Blöcken gleich groß */
.wp-block-columns .wp-block-image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
	margin-bottom: 15px;
}

.wp-block-columns {
    gap: 15px;
}

.wp-block-columns .wp-block-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ==========================================
   KACHELN - Hover Effekt
   ========================================== */

.wp-block-columns .wp-block-image img {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.wp-block-columns .wp-block-image:hover img {
    transform: scale(1.05);
    opacity: 0.85;
}

/* Cursor als Hand anzeigen */
.wp-block-columns .wp-block-image a {
    display: block;
    overflow: hidden;
}

/* ==========================================
   FOOTER
   ========================================== */

.site-footer {
    background-color: #f5f0eb;
    color: #444;
    font-size: 14px;
    line-height: 1.8;
}

.footer-widgets {
    background-color: #f5f0eb;
    padding: 30px 0;
}

/* Footer Widget - zweispaltig */
.footer-widget-1 {
    display: flex;
    justify-content: space-between;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-footer a {
    color: #8b0000;
    text-decoration: none;
}

.site-footer a:hover {
    color: #444;
}

/* Copyright */
.lt-copyright {
    text-align: center;
    padding: 12px 0;
    font-size: 12px;
    color: #888;
    background-color: #f5f0eb;
    border-top: 1px solid #e0d8d0;
}

/* Alles in site-info ausblenden außer TheGerry */
/* Footer-Bar komplett ausblenden */
.site-info {
    display: none;
}