/*
Theme Name: RNK Locations Theme 3.1
Author:
Version: 3
Description: Premium Event Location Theme für RNK Locations
Text Domain: locations-theme
*/

@font-face {
    font-family: 'Nunito Sans';
    src: url(/wp-content/themes/location_3/assets/fonts/nunito_sans/NunitoSans-VariableFont_YTLC,opsz,wdth,wght.ttf) format('woff2');
    font-display: swap;
}

/* =================================================================
   CSS VARIABLEN & GLOBAL STYLES
   ================================================================= */
:root {
    /* Design System Variablen */
    --primary-color: #808080;
    --secondary-color: #F5F5F5;
    --accent-color: #ADADAD;
    --white: #ffffff;
    --black: #000000;
    
    /* Typography */
    --font-primary: 'Avenir Book', 'Nunito Sans', 'Montserrat', 'Segoe UI', sans-serif;
    --font-bold: 'Avenir Heavy', 'Nunito Sans', 'Montserrat', 'Segoe UI', sans-serif;
    --font-light: 'Avenir Light', 'Nunito Sans', 'Montserrat', 'Segoe UI', sans-serif;
    --base-font-size: 16px;
    --line-height-base: 1.6;

    /* Typography Sizes */
    --h1-size: 30px;
    --h1-line-height: 1.2;
    --h1-letter-spacing: 0.05em;
    --h2-size: 24px;
    --h3-size: 20px;
    
    /* Grid System */
    --container-max-width: 1200px;
    --grid-columns: 12;
    --grid-gap: 20px;
    --container-padding: 16px;
    
    /* Breakpoints */
    --tablet-breakpoint: 768px;
    --desktop-breakpoint: 1024px;
    
    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 40px;
    --spacing-xl: 60px;
    --spacing-xxl: 80px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 20px rgba(0, 0, 0, 0.2);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base Typography */
body {
    font-family: var(--font-primary);
    font-size: var(--base-font-size);
    line-height: var(--line-height-base);
    color: var(--black);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Heading Styles */
h1, h2, h3, h4 {
    font-weight: 600;
}

h1 {
    font-family: var(--font-light);
    font-size: var(--h1-size);
    line-height: 1.2;
    letter-spacing: 0.05em;
}

h2 {
    font-family: var(--font-light);
    font-size: var(--h2-size);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0;
}

h3 {
    font-family: var(--font-light);
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: 0;
}

p a {
    color: var(--black);
    text-decoration: underline;
}

p a:hover {
    color: var(--black);
}
p a:visited {
    color: var(--black);
    text-decoration: underline;
}

/* Container & Grid System */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.grid {
    display: grid;
    grid-template-columns: repeat(var(--grid-columns), 1fr);
    gap: var(--grid-gap);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--black);
    color: var(--white);
    border: 1px solid var(--black);
    font-family: var(--font-primary);
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-medium);
    border-radius: 0;
    text-transform: none;
}

.btn:hover {
    background-color: transparent;
    color: var(--black);
    box-shadow: var(--shadow-md);
}

.btn:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.btn-inverted {
    display: inline-block;
    padding: 12px 30px;
    background-color: transparent;
    color: var(--white);
    text-decoration: none;
    border: 2px solid var(--white);
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all var(--transition-medium);
    border-radius: 0;
}

.btn-inverted:hover {
    background-color: var(--white);
    color: var(--black);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.btn-inverted:focus {
    outline: 2px solid var(--white);
    outline-offset: 2px;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-justify { text-align: justify; }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* =================================================================
    HERO SECTION STYLES
    ================================================================= */
.hero-section {
    position: relative;
    height: 100dvh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
}

.hero-section::after{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,.35), rgba(0,0,0,.35));
    z-index: 0;
    pointer-events: none;
}

.hero-contact-btn {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
    padding: 10px 20px;
    cursor: pointer;
    font-size: 13px;
    letter-spacing: 1px;
    transition: all var(--transition-medium);
    text-decoration: none;
    display: inline-block;
}

.hero-section img {
    transform: scale(1);
    animation: hero-zoom 21s linear forwards;
    will-change: transform;
}

@keyframes hero-zoom{
    from { transform: scale(1); }
    to   { transform: scale(1.25); }
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    _opacity: 0.8;
    z-index: -1;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: transparent;
    color: var(--white);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;
    z-index: 100;
    transition: all var(--transition-medium);
}

.header.scrolled {
    background-color: var(--black);
}

/* Burger Menu */
.burger-menu {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    width: 30px;
    height: 20px;
    justify-content: space-between;
    background: none;
    border: none;
    padding: 0;
}

.burger-line {
    width: 100%;
    height: 2px;
    background-color: var(--white);
    transition: all var(--transition-medium);
}

.burger-line-second {
    width: 80%;
}

.burger-line-third {
    width: 60%;
}

.burger-menu:hover .burger-line {
    background-color: #ccc;
}

/* Logo Container */
.logo-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--white);
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.header.scrolled .logo-container {
    opacity: 1;
}

.logo-placeholder {
    width: 40px;
    height: 40px;
    background-color: #333;
    border: 2px solid #666;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
}

.logo-text {
    font-size: 12px;
    color: #ccc;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Navigation Right */
.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-icons {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.social-icon {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--white);
    transition: all var(--transition-medium);
    transform: translateY(-5px);
}

.social-icon:hover {
    background-color: #333;
}

.social-icon:focus {
    outline: 2px solid var(--white);
    outline-offset: 2px;
}

.contact-btn {
    background-color: transparent;
    color: var(--white);
    border: 1px solid #666;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-medium);
    text-decoration: none;
    display: inline-block;
}

.contact-btn:hover {
    background-color: #333;
    border-color: #999;
}

.contact-btn:focus {
    outline: 2px solid var(--white);
    outline-offset: 2px;
}

/* Burger Navigation */
.burger-nav {
    position: fixed;
    top: 0;
    left: -40%;
    width: 40%;
    max-width: 371px;
    height: 100vh;
    background-color: var(--black);
    z-index: 1000;
    transition: left var(--transition-medium);
    padding-top: 100px;
}

.burger-nav.active {
    left: 0;
}

.burger-nav-content {
    max-width: 400px;
    margin: 0;
    padding: 0 40px;
}

.burger-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.burger-nav li {
    margin-bottom: 20px;
}

.burger-nav a {
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-light);
    font-size: var(--h2-size);
    letter-spacing: .15em;
    font-weight: 100;
    display: block;
    padding: 15px 0;
    text-align: left;
    transition: color var(--transition-medium);
}

.burger-close {
    position: absolute;
    top: 15px;
    left: 40px;
    font-weight: lighter;
    background: none;
    border: none;
    color: var(--white);
    font-size: 50px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: start;
    justify-content: start;
    z-index: 1000;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-medium);
}

.background-overlay-visible {
    opacity: 1;
    visibility: visible;
}

/* Burger Menu Animation */
.burger-menu.active .burger-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Hero Content */
.hero-content-wrapper-front {
    position: absolute;
    left: 300px;
    bottom: 20%;
    display: flex;
    align-items: start;
    justify-content: start;
    text-align: left;
    flex-direction: column;
    z-index: 42;
}

.hero-content-wrapper {
    max-width: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    z-index: 42;
    position: absolute;
    bottom: 45%;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 var(--container-padding);
}

.hero-logo {
    width: 280px;
    height: auto;
    margin-bottom: 40px;
    filter: brightness(0) invert(1);
}

.hero-title {
    font-size: 46px;
    font-weight: 100;
    letter-spacing: .15em;
    line-height: 1.5;
    margin-bottom: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: calc(env(safe-area-inset-bottom) + 50px);
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--white);
    cursor: pointer;
    animation: bounce 2s infinite;
    background: none;
    border: none;
    padding: 0;
    z-index: 30;
}

.scroll-arrow {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.scroll-text {
    font-size: 0.9rem;
    text-transform: lowercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* =================================================================
   EVENTS SECTION STYLES
   ================================================================= */

.event-content {
  position: relative;
  width: 345px;
  padding: 0;
}

.events-section {
    margin: var(--spacing-xxl) 0;
    background-color: var(--white);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 60px;
    margin-bottom: 50px;
    justify-items: center;
}



.event-card {
    width: min(100%, 350px);
    flex: 1;
    display: flex;
    flex-direction: column;
    background: var(--white);
    transition: transform var(--transition-slow);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.event-card:nth-child(1) { animation-delay: 0.1s; }
.event-card:nth-child(2) { animation-delay: 0.3s; }
.event-card:nth-child(3) { animation-delay: 0.5s; }

.event-image-wrapper {
    height: 350px;
    overflow: hidden;
}

.event-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
    display: block;
}

.event-image:hover {
    transform: scale(1.2);
}

.event-title {
    margin-top: 30px;
    margin-bottom: 20px;
}

.event-description {
    font-size: var(--base-font-size);
    line-height: 1.4;
    margin-bottom: 25px;
    text-align: justify;
}

.event-mehr-btn {
    background: var(--white);
    color: var(--black);
    height: 30px;
    border: 1px solid var(--black);
    font-family: var(--font-primary);
    font-size: 13px;
    cursor: pointer;
    text-decoration: none;
    padding: 10px 20px;
    margin-top: auto;
    justify-self: start;
    align-self: flex-start;
    align-items: center;
    display: inline-flex;
    transition: all var(--transition-medium);
}

.event-mehr-btn:hover {
    background: var(--black);
    color: var(--white);
}

.mehr-btn {
    background: transparent;
    color: var(--black);
    height: 30px;
    border: 1px solid var(--black);
    font-family: var(--font-primary);
    font-size: 13px;
    cursor: pointer;
    text-decoration: none;
    padding: 10px 20px;
    margin-top: auto;
    justify-self: start;
    align-self: flex-start;
    align-items: center;
    display: inline-flex;
    transition: all var(--transition-medium);
}

.mehr-btn:hover {
    background: var(--black);
    color: var(--white);
}

.mehr-btn:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.mehr-btn-dark {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.mehr-btn-dark:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.mehr-link {
    text-decoration: none;
    color: var(--white);
    padding: 5px 20px;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =================================================================
           EVENT SLIDER STYLES
           ================================================================= */
.slider-section {
    background-color: var(--black);
    margin: 0;
    padding: var(--spacing-xl) 0;
    width: 100%;
}

.slider-container-wrapper {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.event-slider {
    position: relative;
    width: 100%;
    max-width: var(--container-max-width);
    height: 385px;
    margin: 0 auto;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 385px;
}

.slide {
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    background: var(--black);
}

.slide.active {
    opacity: 1;
    pointer-events: all;
}

.slide-image {
    width: 600px;
    height: 385px;
    object-fit: cover;
    display: block;
}

.slide-content {
    width: 400px;
    height: 385px;
    background: var(--white);
    padding: var(--spacing-sm) var(--spacing-lg);
    display: flex;
    flex-direction: column;
    justify-content: start;
    position: relative;
}

.next-events-label {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.event-title-slider {
    margin-bottom: 12px;
}

.event-date {
    font-family: var(--font-primary);
    font-size: var(--base-font-size);
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--black);
}

.event-description-slider {
    line-height: 1.4;
    color: var(--black);
    margin-bottom: 30px;
    text-align: left;
}

.ticket-btn {
    background: var(--primary-color);
    color: var(--white);
    height: 30px;
    padding: 0 20px;
    border: none;
    font-family: var(--font-primary);
    font-size: 15px;
    cursor: pointer;
    transition: all var(--transition-medium);
    align-self: flex-start;
    margin-top: auto;
}

.ticket-btn:hover {
    background: #333;
    transform: translateY(-2px);
}

.ticket-btn:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Navigation Arrows */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: 0;
    width: 50px;
    height: 50px;
    cursor: pointer;
    font-size: 32px;
    color: var(--white);
    transition: all var(--transition-medium);
    z-index: 10;
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

/* =================================================================
           SAAL SECTIONS
           ================================================================= */
.saal-section {
    padding: var(--spacing-xxl) 0;
    min-height: 500px;
}

.saal-section.black {
    background-color: var(--black);
    color: var(--white);
}

.saal-section.white {
    background-color: var(--white);
}

.saal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.saal-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0px;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.event-image img.active {
    opacity: 1;
}

.saal-title {
    font-size: var(--h2-size);
    font-weight: 700;
    margin-bottom: 4px;
    font-family: var(--font-primary);
}

.saal-subtitle {
    font-size: var(--h3-size);
    font-weight: 400;
    margin-bottom: 25px;
    font-family: var(--font-primary);
    opacity: 0.8;
}

.gallery-section {
    margin: var(--spacing-xxl) 0;
}

.gallery-item {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery-item img {
    width: 835px;
    height: 523px;
    object-fit: cover;
}

.gallery-item > h3 {
    margin: var(--spacing-sm) 0;
}

.gallery-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-image {
    position: relative;
    height: 350px;
    transition: transform var(--transition-slow);
    display: block;
}

.slider-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0px;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slider-image img.active {
    opacity: 1;
}

.next-event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.next-event-image img.active {
    opacity: 1;
}

.collage-section {
    margin: var(--spacing-xxl) 0 0 0;
}

.collage-image {
    width: 100%;
    object-fit: cover;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color var(--transition-medium);
}

.dot.active {
    background-color: var(--white);
}

.arrow {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: var(--white);
    cursor: pointer;
    z-index: 2;
    opacity: 0;
}

.arrow.black-arrow {
    color: var(--black);
}

/* Navigation Arrows */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    width: 50px;
    height: 50px;
    cursor: pointer;
    font-size: 32px;
    color: var(--white);
    transition: all var(--transition-medium);
    z-index: 10;
}

/* =================================================================
   VIDEO PLAYER STYLES
   ================================================================= */
.video-player-section {
    width: 100%;
    height: 70vh;
    position: relative;
    overflow: hidden;
    background-color: var(--primary-color);
}

.video-player {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: var(--primary-color);
}

/* Video Element */
.video-player__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: filter var(--transition-medium);
}

.video-player__video:focus {
    outline: 2px solid var(--white);
    outline-offset: 2px;
}

/* Steuerungscontainer */
.video-player__controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(18, 18, 18, 0.8));
    padding: var(--spacing-xl) var(--spacing-sm) var(--spacing-sm);
    opacity: 0;
    transition: opacity var(--transition-medium);
    z-index: 10;
}

.video-player:hover .video-player__controls,
.video-player:focus-within .video-player__controls {
    opacity: 1;
}

/* Fortschrittsbalken Container */
.video-player__progress-container {
    margin-bottom: var(--spacing-sm);
    cursor: pointer;
}

.video-player__progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    position: relative;
    overflow: hidden;
}

.video-player__progress-bar:focus {
    outline: 2px solid var(--white);
    outline-offset: 2px;
}

.video-player__progress-filled {
    height: 100%;
    background: var(--white);
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s ease;
}

.video-player__progress-hover {
    position: absolute;
    top: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    width: 0%;
    opacity: 0;
    border-radius: 3px;
    transition: opacity var(--transition-fast);
}

/* Steuerungsleiste */
.video-player__control-bar {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--white);
}

/* Button Styles */
.video-player__btn {
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    font-size: 20px;
    padding: var(--spacing-xs);
    border-radius: 0;
    transition: all var(--transition-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    min-height: 40px;
}

.video-player__btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.video-player__btn:focus {
    outline: 2px solid var(--white);
    outline-offset: 2px;
}

.video-player__btn svg {
    width: 24px;
    height: 24px;
}

/* Zeitanzeige */
.video-player__time-display {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    min-width: 100px;
    font-family: var(--font-primary);
    font-weight: 400;
}

/* Lautstärke Container */
.video-player__volume-container {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.video-player__volume-slider {
    width: 80px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
}

.video-player__volume-slider:focus {
    outline: 2px solid var(--white);
    outline-offset: 2px;
}

.video-player__volume-filled {
    height: 100%;
    background: var(--white);
    border-radius: 2px;
    width: 100%;
    transition: width 0.1s ease;
}

/* Spacer für Flexbox */
.video-player__spacer {
    flex: 1;
}

/* Overlay Nachrichten */
.video-player__overlay-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 18px;
    font-family: var(--font-primary);
    background: rgba(18, 18, 18, 0.8);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 0;
    opacity: 0;
    transition: opacity var(--transition-medium);
    pointer-events: none;
    z-index: 20;
}

.video-player__overlay-message--show {
    opacity: 1;
}

/* Kontakt Section */

.kontakt-hero-section {
    height: 50vh;
}

.kontakt-hero-content {
    position: absolute;
    bottom: 20%;
    z-index: 50;
}

.kontakt-section {
    background-color: var(--white);
    padding: 0 0 var(--spacing-xxl) 0;
}

.kontakt-content {
    display: grid;
    grid-template-columns: 1fr 1fr 3fr;
    gap: var(--spacing-xl);
    align-items: flex-start;
    width: 835px;
    margin: 0 auto;
}

.kontakt-content-one {
    grid-template-columns: 2fr 4fr;
}

.kontakt-item {
    text-align: left;
}

.kontakt-item:nth-child(1) { order: 1; }
.kontakt-item:nth-child(2) { order: 2; }
.kontakt-item:nth-child(3) { order: 3; }

.vcard-item-reverse {
}

.vcard-item-reverse:nth-child(1) { order: 1; }
.vcard-item-reverse:nth-child(2) { order: 2; }

.person-card {
    text-align: left;
}

.person-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #ddd 0%, #bbb 100%);
    border-radius: 5px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-style: italic;
}

.person-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 15px;
}

.person-contact {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.8;
    text-align: left;
}

.person-contact strong {
    color: #2c2c2c;
    font-weight: 600;
}

.kontakt-description {
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: justify;
}

/* Testimonial Section */
.testimonial-section {
    background: var(--black);
    color: var(--white);
    padding: var(--spacing-xxl) 0;
    text-align: center;
}

.testimonial-title {
    font-size: 2rem;
    margin-bottom: 10px;
}

.testimonial-subtitle {
    font-weight: normal;
    color: #ccc;
    margin-bottom: 40px;
}

.author {
    margin-top: 20px;
    font-style: normal;
    font-weight: bold;
    color: var(--white);
}

.arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 28px;
    cursor: pointer;
    color: var(--white);
}

.arrow-left {
    left: 20px;
}

.arrow-right {
    right: 20px;
}

.dots {
    text-align: center;
    margin-top: 10px;
}

.dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: #999;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color var(--transition-fast);
}

.dot.active {
    background-color: var(--white);
}

/* Contact Form Styles */
.contact-section {
    background-color: var(--white);
    padding: 0 0 var(--spacing-xxl) 0;
}

.form-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.2rem;
    color: var(--primary-color);
    line-height: 1.3;
    font-weight: 600;
}

.intro-text {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.intro-text p:first-child {
    margin-bottom: 15px;
}

.intro-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

.form-container {
    background: var(--white);
    max-width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    position: relative;
}

.form-group.col-6 {
    grid-column: span 6;
}

.form-group.col-12 {
    grid-column: span 12;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 0.9rem;
}

.required {
    color: #e74c3c;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group input[type="date"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 14px;
    transition: all var(--transition-medium);
    background-color: var(--secondary-color);
    font-family: inherit;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group input[type="number"]:focus,
.form-group input[type="date"]:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: var(--white);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23666" stroke-width="2"><polyline points="6,9 12,15 18,9"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 14px;
}

.form-group textarea {
    resize: vertical;
    height: 100px;
    font-family: inherit;
}

.date-range {
    display: flex;
    gap: 10px;
    align-items: center;
}

.date-range input {
    flex: 1;
}

.date-separator {
    color: #666;
    font-weight: 500;
    white-space: nowrap;
    font-size: 0.9rem;
}

.checkbox-group {
    margin: 25px 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.checkbox-group input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    cursor: pointer;
}

.checkbox-group label {
    margin: 0;
    font-weight: normal;
    line-height: 1.5;
    cursor: pointer;
    color: #555;
    font-size: 0.9rem;
}

.privacy-link {
    color: #0066cc;
    text-decoration: underline;
    font-weight: normal;
}

.privacy-link:hover {
    color: #0052a3;
}

.submit-btn {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 30px;
    border: 1px solid var(--primary-color);
    border-radius: 3px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-medium);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.submit-btn:disabled {
    background-color: #bdc3c7;
    cursor: not-allowed;
}

.error-message {
    color: #e74c3c;
    font-size: 12px;
    margin-top: 3px;
    display: none;
}

.success-message {
    background-color: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 3px;
    margin-bottom: 25px;
    border: 1px solid #c3e6cb;
    display: none;
    text-align: center;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Instagram Section */
.instagram-section {
    background-color: var(--white);
    padding: 60px 0;
}

.instagram-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.instagram-account {
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.instagram-account:hover {
    transform: translateY(-2px);
}

.instagram-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.profile-pic {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: bold;
    font-size: 14px;
}

.instagram-posts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    margin-bottom: 16px;
}

.instagram-posts img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.instagram-posts img:hover {
    opacity: 0.8;
}

/* =================================================================
    BUSINESS EVENTS SECTION STYLES
    ================================================================= */
.business-single-image {
    width: 835px;
    object-fit: cover;
    margin: 0 auto;
}

.single-image-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.business-contact {
    color: var(--black);
    text-decoration: none;
}

/* Navigation Arrows */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    width: 50px;
    height: 50px;
    cursor: pointer;
    font-size: 32px;
    color: var(--white);
    transition: all var(--transition-medium);
    z-index: 10;
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

/* =================================================================
    WINTER/GESCHICHTE SECTION STYLES
    ================================================================= */
.black-section {
    background-color: var(--black);
    color: var(--white);
}

.winter-wrapper {
    display: flex;
    align-items: stretch;
    height: 550px;
    position: relative;
}

.image-full {
    flex: 0 0 600px;
    max-width: 100%;
}

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

.text-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: var(--spacing-xxl) var(--spacing-lg);
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.text-block {
    text-align: justify;
}

.text-block h2 {
    font-family: var(--font-primary);
    font-size: 24px;
    margin-bottom: 5px;
    color: var(--white);
}

.text-block h3 {
    font-weight: 400;
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--white);
    opacity: 0.8;
}

.text-block p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

.snowflake {
    font-size: 28px;
    color: var(--white);
    margin: 20px 0;
}

/* Geschichte Section */
.geschichte-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-xl);
    max-width: var(--container-max-width);
    margin: var(--spacing-xxl) auto;
}

.text-block-white {
    flex: 1;
    text-align: justify;
}

.text-block-white h2 {
    margin-bottom: 5px;
}

.text-block-white h3 {
    font-weight: 400;
    font-size: 20px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.text-block-white p {
    line-height: 1.7;
}

.image-block {
    flex: 1;
}

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

/* =================================================================
           ZUSATZLEISTUNGEN SECTION
           ================================================================= */
.wedding-services-section {
    background-color: var(--secondary-color);
    padding: var(--spacing-xxl) 0;
}

.section-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    text-align: center;
}

.section-subtitle {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    color: #666;
    margin-bottom: var(--spacing-xl);
    font-weight: 300;
    text-align: center;
}

/*
.services-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 40px;
    margin-bottom: var(--spacing-xl);

}

 */

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: flex-start;
    width: 100%;
    max-width: 120px;
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px auto;
    object-fit: contain; /* Diese Zeile hinzufügen */
    display: block;
    flex-shrink: 0;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-title {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.4;
    text-align: center;
    width: 100%;
    margin: 0;
}

.cta-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding-bottom: var(--spacing-xl);
}

.yt-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.yt-video {
    width: 823px;
    height: 466px;
    max-resolution: res;
    margin: 0 auto;
}


/* =================================================================
    FOOTER STYLES
    ================================================================= */
footer {
    background-color: var(--black);
    color: var(--white);
}

.footer-line {
    width: 100%;
    height: 100%;
    margin-top: var(--spacing-sm);
}

.custom-newsletter-section {
    background: #333;
    padding: var(--spacing-lg) var(--container-padding);
    text-align: left;
}

.custom-newsletter-container {
    max-width: var(--container-max-width);
    padding: 0 var(--spacing-lg);
    margin: 0 auto;
}

.custom-newsletter-title {
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 30px;
    color: var(--white);
    text-align: left;
}

.custom-newsletter-form {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--grid-gap);

    margin: 0 auto;
}

.custom-form-group {
    display: flex;
    flex-direction: column;
    grid-column: span 5;
}

.custom-form-group:nth-child(1) {
    grid-column: span 5;
}

.custom-form-group:nth-child(2) {
    grid-column: span 5;
}

.custom-subscribe-btn {
    grid-column: span 1;
    align-self: end;
}

.custom-form-label {
    font-size: 14px;
    color: var(--white);
    margin-bottom: var(--spacing-xs);
    font-weight: normal;
    text-align: left;
}

.custom-form-input {
    width: 100%;
    padding: 12px var(--spacing-sm);
    border: none;
    font-size: var(--base-font-size);
    background: #e8e8e8;
    transition: background-color var(--transition-fast);
    font-family: inherit;
}

.custom-form-input:focus {
    outline: 2px solid var(--white);
    outline-offset: 2px;
    background: var(--white);
}

.custom-subscribe-btn {
    padding: 12px 24px;
    border: 1px solid var(--white);
    background: transparent;
    color: var(--white);
    font-size: var(--base-font-size);
    font-weight: normal;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-family: inherit;
}

.custom-subscribe-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.custom-subscribe-btn:focus {
    outline: 2px solid var(--white);
    outline-offset: 2px;
}

.custom-privacy-notice {
    margin-top: var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #ccc;
}

.custom-privacy-checkbox {
    width: 18px;
    height: 18px;
    accent-color: var(--white);
}

.custom-privacy-checkbox:focus {
    outline: 2px solid var(--white);
    outline-offset: 2px;
}

.custom-privacy-link {
    color: var(--white);
    text-decoration: underline;
}

.custom-privacy-link:hover {
    color: #ddd;
}

.custom-privacy-link:focus {
    outline: 2px solid var(--white);
    outline-offset: 2px;
}

.custom-footer-links {
    padding: 30px var(--container-padding);
    text-align: center;
}

.social-media-footer-links {
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 30px var(--container-padding);
    text-align: center;
}

.custom-footer-nav {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.custom-footer-link {
    color: #ccc;
    text-decoration: none;
    font-size: var(--base-font-size);
    transition: color var(--transition-medium);
}

.custom-footer-link:hover {
    color: var(--white);
}

.custom-footer-link:focus {
    outline: 2px solid var(--white);
    outline-offset: 2px;
}

.custom-success-message,
.custom-error-message {
    padding: 15px;
    margin-top: var(--spacing-md);
    display: none;
}

.custom-success-message {
    background: #4CAF50;
    color: var(--white);
}

.custom-error-message {
    background: #f44336;
    color: var(--white);
}

.footer-content h4 {
    text-transform: uppercase;
    color: #707070;
    font-weight: 300;
    padding: 0;
    margin: 0;
    margin-bottom: 16px;
}
.footer-content a, .footer-content a:hover, .footer-content a:visited {
    text-decoration: none;
    color: white;
    font-weight: 100;
}
.footer-social-media {
    display: flex;
    flex-direction: row;
    gap: 16px;
}
.footer-logo {
    width: 280px;
    max-height: 200px;
}
ul {
    list-style-type: none;
}
ul, li {
    margin: 0;
    padding: 0;
    text-align: left;
    line-height: 1.5;
}

.flex-grid {
    display: flex;
    flex-wrap: wrap; /* allows wrapping into multiple rows */
}

.col-50 {
    width: 50%;
}

.col-25 {
    width: 25%;
}

.col-full {
    width: 100%;
}
.col {
    box-sizing: border-box;
    text-align: left;
}
.col-last, .col-last a, .col-last a:visited {
    display: flex;
    height: 80px;
    justify-content: start;
    align-items: center;
    color: #707070;
    text-transform: uppercase;
    font-size: 0.8rem;
}
.col-last a:hover {
    color: var(--white);
}

/* Buttons */
.border-button-light:hover {
    background-color: var(--white);
    color: var(--black);
}
.border-button-light {
    background-color: var(--black);
    color: var(--white);
    padding: 7px 15px;
    border: 1px solid currentColor;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
    border-radius: 0;
    text-decoration: none;
    display: inline-block;
}

.border-button-dark:hover {
    background-color: var(--black);
    color: var(--white);
}
.border-button-dark {
    background-color: var(--white);
    color: var(--black);
    padding: 7px 15px;
    border: 1px solid currentColor;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
    border-radius: 0;
    text-decoration: none;
    display: inline-block;
}

/* Welcome Section Styles */
.welcome-section {
    background-color: var(--white);
    margin: var(--spacing-xxl) 0;
    text-align: center;
}

.welcome-title {
    font-weight: 700;
    color: var(--black);
    margin-bottom: 40px;
    line-height: 1.2;
}

.welcome-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.welcome-content > a,
.welcome-content > a:visited,
.welcome-content > a:hover {
    color: var(--black);
    text-decoration: underline;
}

.welcome-cta-button {
    background-color: var(--black);
    color: var(--white);
    padding: 10px 20px;
    border: 1px solid currentColor;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
    border-radius: 0;
    text-decoration: none;
    display: inline-block;
}

.welcome-cta-button:hover {
    background-color: var(--white);
    color: var(--black);
}

/* Key Facts Section */
.key-facts-section {
    background: var(--black);
    color: var(--white);
    padding: var(--spacing-xxl) 0;
}

.key-facts-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-lg);
    align-items: start;
}

.key-facts-text {
    padding-right: var(--spacing-md);
}

.key-facts-title {
    color: var(--white);
    margin-bottom: 10px;
}

.key-facts-subtitle {
    color: var(--white);
    margin-bottom: 30px;
}

.key-facts-description {
    margin-bottom: 40px;
    text-align: justify;
}

.key-facts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.key-facts-item h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.key-facts-item p,
.key-facts-item ul {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.5;
}

.key-facts-item ul {
    list-style: none;
}

.key-facts-item ul li {
    margin-bottom: 3px;
}

.key-facts-image {
    height: 300px;
    border-radius: 0;
    overflow: hidden;
    background: linear-gradient(135deg, #e8f4f8 0%, #d4e8d4 50%, #c0dcc0 100%);
}

.key-facts-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Rundum-Sorglos-Paket Section */
.sorglos-section {
    background-color: var(--white);
    padding: var(--spacing-xxl) 0;
}

.sorglos-header {
    text-align: center;
    margin-bottom: 50px;
}

.sorglos-title {
    margin-bottom: 20px;
    text-align: center;
}

.sorglos-description {
    max-width: 800px;
    margin: 0 auto;
}

.services-grid {
    padding-top: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 60px;
    margin-bottom: 50px;
    justify-items: center;
}

.service-card {
    text-align: center;
    background: transparent;
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--black);
}

.service-icon svg {
    width: 40px;
    height: 40px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card h3 {
    margin-bottom: 15px;
}

.service-card p {
    text-align: justify;
}

.sorglos-cta {
    text-align: center;
}

.sorglos-cta-text {
    margin-bottom: 25px;
}

/* Veranstaltungsarten Section */
.veranstaltungsarten-section {
    background-color: var(--black);
    color: var(--white);
    padding: var(--spacing-xxl) 0;
}

.veranstaltungsarten-content {
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.veranstaltungsarten-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--white);
}

.veranstaltungsarten-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.veranstaltungsarten-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 40px;
    list-style: none;
}

.veranstaltungsarten-list li {
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    padding-left: 15px;
}

.veranstaltungsarten-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--white);
}

.veranstaltungsarten-image {
    height: 300px;
    background: linear-gradient(135deg, #d4b08a 0%, #8b4513 100%);
    background-size: cover;
    background-position: center;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-style: italic;
}

/* Standard */
.standard-content-section {
    background-color: var(--white);
    margin: var(--spacing-xxl) 0;
    text-align: left;
}

.standard-content-section h2, h3 {
    margin-top: var(--spacing-sm);
}

/* slick carousel / gallery */

.slick-slide {
    height: 100%;
}

.slick-prev {
    left: -6px;
    z-index: 1;
}

.slick-prev:focus, .slick-next:focus, .slick-prev:hover, .slick-next:hover {
    color: var(--black);
}

.slick-list {
    left: 10%;
    width: 80%;
}

.slick-list h3 {
    text-align: center;
}

.slick-next {
    right: 2px;
}

.slick-prev, .slick-next {
    background: transparent;
    border: none;
    font-size: 24px;
    color: #333;
    z-index: 10;
    top: 262px;
}

.slick-initialized .slick-slide {
    display: flex;
    justify-content: center;
}

.slick-slide {
    opacity: 1.0;
}

.slick-center {
    opacity: 1;
}
.slick-center:hover {
    opacity: 1;
}

/* =================================================================
    RESPONSIVE DESIGN
    ================================================================= */
@media (max-width: 768px) {
    .col-50,
    .col-25,
    .col-full {
        width: 100%;
    }

    .yt-video {
        width: 100%;
        height: 300px;
    }

    .single-image-section {
        margin-bottom: 0;
    }

    .business-single-image {
        width: 100%;
    }

    .flex-grid {
        gap: 0.5rem; /* optional spacing between stacked elements */
    }

    .kontakt-content, .saal-content {
        grid-template-columns: 1fr;
        gap: 30px;
        width: 100%;
    }

    .kontakt-item:nth-child(1) { order: 2; }
    .kontakt-item:nth-child(2) { order: 3; }
    .kontakt-item:nth-child(3) { order: 1; }

    .hochzeit-kontakt-item:nth-child(1) { order: 2; }
    .hochzeit-kontakt-item:nth-child(2) { order: 1; }

    .vcard-item-reverse:nth-child(1) { order: 2; }
    .vcard-item-reverse:nth-child(2) { order: 1; }

    .gallery-item {
        flex-direction: initial;
    }

    .gallery-item img {
        width: 100%;
        height: 230px;
    }

    .slider-nav {
        top: 135px;
    }

    .slick-initialized .slick-slide {
        display: initial;
    }

    .slick-prev, .slick-next {
        top: 136px;
    }

    .slick-prev {
        left: -10px;
    }

    .hero-content-wrapper-front {
        left: 100px;
    }

    .hero-title {
        font-size: 30px;
    }

    .person-image {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    /* Header Responsive */
    .hero-logo-small {
        width: 240px;
    }

    .hero-logo-small {
        width: 200px;
    }

    .kontakt-hero-content {
        position: absolute;
        bottom: 5px;
        z-index: 50;
    }

    .header {
        padding: 10px 15px;
    }

    .burger-nav {
        left: -100%;
        width: 100%;
    }

    .nav-right {
        gap: 10px;
    }

    .contact-btn {
        padding: 8px 15px;
        font-size: 12px;
        z-index: 10;
    }

    .social-icon {
        width: 30px;
        height: 30px;
    }

    .logo-text {
        font-size: 10px;
    }

    /* Hero Responsive */
    .hero-title {
        font-size: 2.5rem;
    }

    .scroll-arrow {
        font-size: 1.5rem;
    }

    .scroll-text {
        font-size: 0.8rem;
    }

    /* Burger Menu Responsive */
    .burger-nav a {
        font-size: 20px;
    }

    .burger-nav-content {
        padding: 0 40px;
    }

    /* Events Grid Responsive */
    .events-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .event-content {
        padding: 25px;
    }

    /* Slider Responsive */
    .slider-section {
        margin-top: 100px;
        padding: var(--spacing-xl) 0;
    }

    .slider-container-wrapper {
        padding: 0 15px;
    }

    .event-slider {
        height: 720px;
    }

    .slider-container {
        position: relative;
        width: 100%;
        height: 100%;
    }

    .event-mehr-btn {
        margin-top: 0;
    }

    .slide {
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: var(--spacing-md);
    }

    .slide-image {
        width: 100%;
        height: 220px;
    }

    .slide-content {
        width: 100%;
        height: revert;
        padding: var(--spacing-md);
    }

    .prev-btn {
        left: -20px;
    }
    .next-btn {
        right: -20px;
    }

    .next-events-label {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .event-date {
        font-size: var(--base-font-size);
        margin-bottom: 15px;
    }

    .event-description-slider {
        font-size: 14px;
        margin-bottom: var(--spacing-md);
    }

    /* Winter/Geschichte Responsive */
    .winter-wrapper,
    .geschichte-section {
        flex-direction: column;
    }

    .text-container {
        padding: var(--spacing-xl) 25px;
    }

    .geschichte-section {
        padding: var(--spacing-xl) 25px;
    }

    .text-block,
    .text-block-white {
        text-align: justify;
    }

    /* Newsletter Responsive */
    .custom-newsletter-form {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .custom-form-group:nth-child(1),
    .custom-form-group:nth-child(2) {
        grid-column: span 1;
    }

    .custom-subscribe-btn {
        grid-column: span 1;
        align-self: stretch;
    }

    .custom-footer-nav {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .custom-newsletter-title {
        font-size: 24px;
    }

    .custom-privacy-notice {
        flex-direction: row;
        text-align: left;
        justify-content: flex-start;
        gap: 10px;
    }
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-content h4 {
    margin-top: var(--spacing-md);
}

@media (max-width: 480px) {

    .hero-content-wrapper-front {
        left: 50px;
    }

    .hero-title {
        font-size: 24px;
    }

    /* Mobile Specific */
    .hero-logo {
        width: 240px;
        margin-bottom: 25px;
    }

    .scroll-indicator {
        bottom: 30px;
    }

    .scroll-arrow {
        font-size: 1.3rem;
    }

    .scroll-text {
        font-size: 0.7rem;
    }

    .contact-btn {
        padding: 6px 12px;
        font-size: 11px;
    }

    .social-icon {
        width: 28px;
        height: 28px;
    }

    .burger-nav a {
        font-size: 18px;
    }

    .burger-nav-content {
        padding: 0 40px;
    }

    .text-container,
    .geschichte-section {
        padding: var(--spacing-lg) var(--spacing-md);
    }
}