/*
 * ============================================================================
 * LINE DANCE CLUB - COUNTRY MEETS MODERN (STYLESHEET)
 * ============================================================================
 * 
 * @package     LDC_core
 * @module      Design / Styles
 * @component   base
 * 
 * @description Alle base elementy wie body usw.
 * 
 * @status      Stable
 * @open        
 * @ticket      
 * @version     1.0.0
 * @created     2026-07-16
 * @last_change 2026-07-16
 * 
 * @export-to-schorsch
 * ============================================================================
 */
/** Ende LDC Header */
body {
    font-family: var(--ldgroup-font-family);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    
    /* Standard für Desktop: Bild bleibt stehen */
    background-attachment: fixed; 
    
    margin: 0;
    overflow: hidden; /* Stoppt das Scrollen der gesamten Webseite */
    display: flex;
    flex-direction: column;
    height: 100vh;
    height: 100dvh;
}

@media (pointer: coarse) {
    body {
        /* Erlaubt dem Bild, auf Touch-Geräten normal mitzugehen, 
           wodurch der iOS-Zoom-Bug sofort gestoppt wird! */
        background-attachment: scroll !important; 
    }
}

/* Globaler Font-Standard für alle Texte */
body,
p,
h1,
h2,
h3,
a,
input,
button {
    font-family: var(--ldgroup-font-family);
}

/* Standardmäßig alle Absätze in Boxen etwas kräftiger */
p {
    font-weight: 800;
    line-height: 1.6;
}
