/**
 * OMT Praxis Seeger - Base Stylesheet
 * Architecture: Custom CSS3 Foundation (Reset, Grid, Typography)
 * Style: Clean, Minimalist, Professional
 */

/* ==========================================================================
   01. TYPOGRAPHY & LOCAL FONTS (Quicksand v37)
   ========================================================================== */

   @font-face {
    font-family: 'Quicksand';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/quicksand-v37-latin-regular.woff2') format('woff2');
}

@font-face {
    font-family: 'Quicksand';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('../fonts/quicksand-v37-latin-500.woff2') format('woff2');
}

@font-face {
    font-family: 'Quicksand';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/quicksand-v37-latin-600.woff2') format('woff2');
}

@font-face {
    font-family: 'Quicksand';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/quicksand-v37-latin-700.woff2') format('woff2');
}

/* ==========================================================================
   02. GLOBAL VARIABLES & ROOT SETUP
   ========================================================================== */

:root {
    /* Minimalist unified font setup */
    --base-font-body: 'Quicksand', sans-serif;
    --base-font-heading: 'Quicksand', sans-serif;
    --base-font-display: 'Quicksand', sans-serif;
    
    /* Colors */
    --base-color-text: #4a4a4a; /* Softer dark grey for readability */
    --base-color-bg: #FCF8E3;   /* Custom Background Color */
    --base-color-accent: #d9c270;
    
    --container-max-width: 1400px;
    --transition-standard: all 0.3s ease;
}

/* ==========================================================================
   03. CSS RESET & DEFAULTS
   ========================================================================== */

*, *::before, *::after { 
    box-sizing: border-box; 
}

html, body { 
    margin: 0; 
    padding: 0; 
    width: 100%; 
    overflow-x: hidden; 
    font-family: var(--base-font-body); 
    font-size: 16px; 
    font-weight: 400;
    color: var(--base-color-text); 
    background: var(--base-color-bg); 
}

p, h1, h2, h3, h4, figure, ul, li { 
    margin: 0; 
    padding: 0; 
}

a { 
    text-decoration: none; 
    color: inherit; 
}

img, svg { 
    max-width: 100%; 
    display: block; 
}

/* ==========================================================================
   04. CORE GRID & CONTAINERS
   ========================================================================== */

.ed-container, 
.ed-element { 
    position: relative; 
    width: 100%; 
}

.wv-boxed > .inner { 
    max-width: var(--container-max-width); 
    margin: 0 auto; 
    padding: 0 20px; 
    width: 100%; 
}

/* ==========================================================================
   05. GLOBAL SECTIONS (Header, Hero, Nav)
   ========================================================================== */

.banner { 
    height: 100vh; 
    min-height: 600px; 
    display: flex; 
    flex-direction: column; 
    overflow: hidden; 
}

.background, 
.overlay { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
}

.slider-container, 
.slick-slide, 
.slick-slide img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
}

.banner > .inner { 
    position: relative; 
    z-index: 10; 
    height: 100%; 
    width: 100%; 
    display: flex; 
    flex-direction: column; 
}

.preset-info-bar-v3-default { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    padding: 25px 0; 
    z-index: 100; 
}

.preset-info-bar-v3-default > .inner { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

.ed-logo img { 
    max-height: 45px; 
    width: auto; 
}

.header-info-group { 
    display: flex; 
    align-items: center; 
    gap: 30px; 
    flex-wrap: wrap; 
    justify-content: flex-end; 
}

.info-bar-content { 
    display: flex; 
    align-items: center; 
    gap: 10px; 
}

.info-bar-content p, 
.info-bar-content a { 
    color: #ffffff; 
    font-size: 0.85rem; 
    font-weight: 500;
    margin: 0; 
    transition: color 0.2s; 
}

.info-bar-content a:hover { 
    color: var(--base-color-accent); 
}

.info-bar-content svg { 
    width: 16px; 
    height: 16px; 
    fill: var(--base-color-accent); 
}

.info-bar-content svg[viewBox="0 0 192 512"] { 
    height: 22px; 
    width: auto; 
}

.banner-content { 
    position: absolute; 
    top: 50%; 
    transform: translateY(-30%); 
    width: 100%; 
}

.preset-unequal-columns-v2-claim > .inner { 
    display: flex; 
}

.hero-headline-box { 
    max-width: 800px; 
}

.hero-headline-box h1 span.color-background { 
    color: #ffffff; 
    font-family: var(--base-font-display); 
    font-size: 2.5rem; 
    line-height: 1.3; 
    text-transform: uppercase; 
    text-shadow: 0 2px 10px rgba(0,0,0,0.5); 
    text-align: left; 
    display: block; 
    background: transparent;
}

.ed-separator hr { 
    width: 200px; 
    height: 2px; 
    background-color: var(--base-color-accent); 
    border: none; 
    margin-top: 25px; 
    margin-left: 0; 
}

.menu-wrapper { 
    position: absolute; 
    bottom: 0; 
    left: 0; 
    width: 100%; 
    margin: 0;
    padding: 80px 0 20px 0; 
    z-index: 100; 
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%); 
}

.menu-wrapper > .inner, 
.ed-menu { 
    display: block; 
    width: 100%; 
    max-width: 100%;
}

.ed-menu > ul { 
    display: flex; 
    flex-wrap: nowrap; 
    justify-content: center; 
    align-items: center;
    gap: 18px; 
    list-style: none; 
    margin: 0; 
    padding: 0 10px; 
}

.ed-menu > ul > li {
    margin: 0;
    padding: 0;
    white-space: nowrap; 
}

.ed-menu > ul > li > a { 
    display: block;
    color: #ffffff; 
    font-weight: 600; 
    font-size: 13px; 
    text-transform: uppercase; 
    padding: 6px 12px; 
    border-radius: 50px; 
    border: 1px solid transparent; 
    transition: var(--transition-standard); 
    letter-spacing: 0.5px; 
}

.ed-menu > ul > li.active > a, 
.ed-menu > ul > li > a:hover { 
    border-color: var(--base-color-accent); 
    color: #ffffff; 
}

/* ==========================================================================
   06. UI UTILITIES & OVERRIDES
   ========================================================================== */

.mobile-cont, 
.hide-lg, 
.hide-md, 
.hide-sm,
.menu-trigger,
.ed-spacer, 
.ed-reference-spacer { 
    display: none !important; 
    opacity: 0 !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    position: absolute !important;
}

.social-icons-icon svg { 
    width: 24px; 
    height: 24px; 
    fill: #ffffff; 
}

/* ==========================================================================
   07. SCROLL INTERACTIONS & EFFECTS
   ========================================================================== */

.scroll-down-wrapper { 
    position: absolute; 
    bottom: 130px; 
    left: 0; 
    width: 100%;
    z-index: 110; 
    margin: 0;
    pointer-events: none; 
}

.scroll-down-wrapper .inner, 
.scroll-down-wrapper .scroll-cont {
    display: flex;
    justify-content: center;
    width: 100%;
}

.scroll-down-wrapper a {
    display: inline-block;
    padding: 20px; 
    text-decoration: none;
    transition: all 0.5s ease; 
    pointer-events: auto; 
}

.scroll-down-wrapper a:hover .icon-scroll {
    border-color: var(--base-color-accent); 
}

.icon-scroll { 
    width: 35px; 
    height: 35px; 
    border-left: 4px solid #ffffff; 
    border-bottom: 4px solid #ffffff; 
    transform: rotate(-45deg); 
    display: block; 
    margin-top: -10px; 
    animation: slowFloat 5s infinite ease-in-out; 
}

@keyframes slowFloat { 
    0%, 100% { transform: translateY(0) rotate(-45deg); } 
    50% { transform: translateY(20px) rotate(-45deg); } 
}

.contact-info-section {
    padding-top: 130px; 
}

body.is-sticky .menu-wrapper {
    position: fixed !important; 
    top: 0 !important;
    bottom: auto !important; 
    z-index: 99999 !important;
}

/* ==========================================================================
   08. CONTENT STANDARDIZATION
   ========================================================================== */

.ed-text p, 
.ed-text ul, 
.ed-text li, 
.highlight-box p {
    font-size: 18px; 
    line-height: 1.8; 
    font-weight: 500;
}

.ed-text ul {
    margin-left: 20px;
    margin-top: 10px;
}

.ed-text li {
    margin-bottom: 8px;
}

.preset-about h1, 
.preset-about h2, 
.preset-about h3,
.ed-headline h1:not(.hero-headline-box h1), 
.ed-headline h2,
.ed-headline h3 {
    font-size: 1.6rem !important; 
    font-weight: 700 !important; 
    line-height: 1.3 !important;
    margin-bottom: 20px !important;
    letter-spacing: 0.5px !important; 
}

.highlight-box h2 {
    font-size: 1.4rem !important; 
    font-weight: 700 !important; 
}

.preset-about h1::after, 
.preset-about h2::after, 
.preset-about h3::after,
.ed-headline h1::after,
.ed-headline h2::after,
.ed-headline h3::after {
    margin-top: 10px !important;
    height: 3px !important; 
}

/* ==========================================================================
   09. COMPONENT LAYOUT FIXES
   ========================================================================== */

.download-section > .inner,
.footer-content > .inner {
    display: flex !important;
    flex-direction: row !important; 
    flex-wrap: nowrap !important; 
    justify-content: center !important; 
    align-items: stretch !important; 
    gap: 20px !important; 
    width: 100% !important;
    max-width: var(--container-max-width) !important; 
    margin: 0 auto !important;
}

.download-section .box,
.footer-content .box {
    flex: 1 1 33% !important; 
    min-width: 0 !important; 
    max-width: 400px !important; 
    margin: 0 !important; 
    box-sizing: border-box !important;
}

.preset-columns > .box > .inner,
.footer-content .box > .inner {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    height: 100% !important;
    padding: 40px 20px !important; 
}

.footer-content > .inner {
    gap: 30px !important;
    padding: 50px 0 !important;
}

.preset-columns .ed-icon,
.footer-content .ed-html {
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
    margin-bottom: 20px !important;
}

.preset-columns .ed-icon svg,
.footer-content .footer-icon {
    width: 50px !important;
    height: 50px !important;
    fill: var(--base-color-accent) !important; 
}

.preset-button-columns-v2-default > .inner {
    display: flex !important;
    flex-direction: column !important; 
    gap: 15px !important; 
    width: 100% !important;
    align-items: center !important;
}

.preset-button-columns-v2-default .ed-button,
.preset-button-columns-v2-default .button {
    width: 100% !important;
}

.preset-button-columns-v2-default .button {
    white-space: normal !important; 
    line-height: 1.4 !important;
    padding: 12px 20px !important;
    height: auto !important;
    display: inline-block !important;
}

.footer-content .ed-headline h2 {
    font-size: 1.2rem !important;
    margin-bottom: 10px !important;
    text-transform: uppercase !important;
}

.footer-content .ed-text p {
    margin: 5px 0 !important;
}

/* ==========================================================================
   10. RESPONSIVE BEHAVIOR
   ========================================================================== */

@media screen and (max-width: 950px) {
    .download-section > .inner,
    .footer-content > .inner {
        flex-direction: column !important; 
        align-items: center !important;
    }
    
    .download-section .box,
    .footer-content .box {
        flex: 1 1 100% !important;
        width: 100% !important;
        max-width: 500px !important;
    }
}