/* ========================================================================
   Hero Section - Video with Text Overlay
 ========================================================================== */

.leda-hero {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
}

.leda-hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leda-hero-overlay {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    max-width: var(--leda-container-width);
    width: 100%;
    padding: 0 2rem;
}

.leda-hero-textbox {
    background: var(--leda-olive);
    padding: 2.5rem 3rem;
    max-width: 600px;
    position: relative;
}

.leda-hero-textbox h1 {
    margin: 0 0 1rem 0;
    font-size: 2.8rem;
    line-height: 3.4rem;
}

/* Video Controls */
.leda-hero-controls {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.leda-video-control {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.leda-video-control:hover {
    background: var(--leda-white);
}


/* ========================================================================
   Buttons
 ========================================================================== */

.leda-btn {
    display: inline-block;
    font-family: 'Quicksand', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0.9rem 2.5rem;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.leda-btn-primary {
    background: var(--leda-red);
    color: var(--leda-white);
}

.leda-btn-primary:hover {
    background: #c70000;
    color: var(--leda-white);
}

.leda-btn-secondary {
    background: transparent;
    color: var(--leda-font);
    border: 2px solid var(--leda-font);
}

.leda-btn-secondary:hover {
    background: var(--leda-font);
    color: var(--leda-white);
}

/* ========================================================================
   Promise Section (3er-Box mit Hintergrundbild)
 ========================================================================== */

.leda-promise {
    position: relative;
    padding: var(--section-padding) 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.leda-promise::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    z-index: 1;
}

.leda-promise .leda-container {
    position: relative;
    z-index: 2;
}

.leda-promise-header {
    text-align: center;
    margin-bottom: 4rem;
}

.leda-promise-header h2 {
    margin-bottom: 1rem;
}

.leda-promise-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.leda-promise-box {
    background: var(--leda-white);
    padding: 3rem 2.5rem;
    text-align: center;
}

.leda-promise-number {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--leda-red);
    margin-bottom: 1.5rem;
}

.leda-promise-box h3 {
    font-size: 1.4rem;
    line-height: 1.8rem;
    margin-bottom: 1.5rem;
}

.leda-promise-box p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.leda-promise-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ========================================================================
   Variety Section (Bildgalerie mit 2 Spalten)
 ========================================================================== */

.leda-variety {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.leda-variety-item {
    position: relative;
    overflow: hidden;
}

.leda-variety-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}

.leda-variety-item:hover img {
    transform: scale(1.05);
}

.leda-variety-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    padding: 2rem;
    color: var(--leda-white);
}

.leda-variety-overlay h3 {
    color: var(--leda-white);
    margin-bottom: 0.5rem;
}

.leda-variety-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--leda-white);
    text-decoration: none;
    font-family: 'Quicksand', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 1rem;
}

/* ========================================================================
   Stories Section (Slider mit Textboxen)
 ========================================================================== */

.leda-stories {
    background: var(--leda-bg-grey);
    padding: var(--section-padding) 0;
}

.leda-stories-header {
    text-align: center;
    margin-bottom: 3rem;
}

.leda-stories-slider {
    position: relative;
}

.leda-stories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.leda-story-item {
    background: var(--leda-white);
    overflow: hidden;
}

.leda-story-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.leda-story-content {
    padding: 2.5rem;
}

.leda-story-content h3 {
    margin-bottom: 1rem;
}

.leda-story-content p {
    margin-bottom: 1.5rem;
}

/* Slider Navigation */
.leda-slider-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.leda-slider-btn {
    background: var(--leda-red);
    color: var(--leda-white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.leda-slider-btn:hover {
    background: #c70000;
}

/* ========================================================================
   Dealer Finder (Footer vorgelagert)
 ========================================================================== */

.leda-dealer-finder {
    background: var(--leda-white);
    padding: var(--section-padding) 0;
    border-top: 1px solid var(--leda-line);
}

.leda-dealer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.leda-dealer-map {
    position: relative;
}

.leda-dealer-map img {
    width: 100%;
    height: auto;
}

.leda-dealer-box {
    background: var(--leda-olive);
    padding: 3rem;
}

.leda-dealer-box h2 {
    margin-bottom: 1.5rem;
}

.leda-dealer-box p {
    margin-bottom: 2rem;
}

.frame-type-2cols>div.uk-section, .frame-type-2cols-left>div.uk-section, .frame-type-2cols-right>div.uk-section, .frame-type-3cols>div.uk-section, .frame-type-3cols-center>div.uk-section, .frame-type-3cols-center66>div.uk-section, .frame-type-4cols>div.uk-section {
    padding: 0;
}