/*
 Theme Name:     Statling Child Theme
 Theme URI:      https://statling.de/
 Description:    Child Theme für Statling.de - Kochportal Landingpage
 Author:         Jonathan Felix Jakob
 Author URI:     https://statling.de/
 Template:       twentytwentyfive-child
 Version:        1.0.0
 License:        GNU General Public License v2 or later
 License URI:    http://www.gnu.org/licenses/gpl-2.0.html
 Text Domain:    statling-child
*/

/* Custom Styles für Kochportal Landingpage */

/* Page Wrapper - acts as a main container */
.kp-page-wrapper {
    width: 100% !important;
    max-width: none !important;
    padding: 0 !important;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Entfernt Padding und Breitenbeschränkung vom Hauptinhaltsbereich */
.entry-content,
.wp-block-post-content {
    padding-left: 0 !important;
    padding-right: 0 !important;
    max-width: none !important;
    width: 100% !important;
    box-sizing: border-box;
}

/* Dies ist eine weitere wichtige Regel, die sicherstellt, dass body und html keine unerwünschten Margins/Paddings haben */
html, body {
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
    overflow-x: hidden;
}

.playfair {
    font-family: 'Comfortaa', sans-serif !important;
}

.hero-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1546069901-ba9599a7e63c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1480&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4rem 1.5rem;
}