/*
Theme Name: OceanWP Child
Theme URI: https://oceanwp.org/
Description: OceanWP WordPress theme child theme.
Author: Olaf Lederer
Author URI: https://www.finalwebsites.nl/
Template: oceanwp
Version: 1.0
*/

.wp-elements-eac16cc374df31d2d4c4f7736fae7770 {
    margin-top: -70px
}

/* Hide OceanWP page-header on ALL pages, ALL screen sizes */
.page-header,
#site-header,
#site-header.vertical-header,
#top-bar-wrap {
    display: none !important;
}

/* ===========================================
   DESKTOP: Hide vertical sidebar + top bar
   =========================================== */
@media only screen and (min-width: 960px) {

    #site-header.vertical-header {
        display: none !important;
    }

    #top-bar-wrap {
        display: none !important;
    }

    body.vertical-header-style.left-header #outer-wrap,
    body.vertical-header-style.vh-closed.left-header #outer-wrap {
        margin-left: 0 !important;
    }

    body.vertical-header-style.right-header #outer-wrap {
        margin-right: 0 !important;
    }

    #dc-desktop-nav {
        display: flex !important;
    }

    /* Hide WP editor content on desktop (mobile-only content) */
    .page-template-page-dc-frontpage .entry-content {
        display: none !important;
    }

    /* Show new video hero */
    #dc-hero {
        display: block !important;
    }

    /* OceanWP Container-Reset for fullscreen sections */
    .page-template-page-dc-frontpage #outer-wrap,
    .page-template-page-dc-frontpage #wrap,
    .page-template-page-dc-frontpage #main,
    .page-template-page-dc-frontpage .site-main,
    .page-template-page-dc-frontpage #content-wrap,
    .page-template-page-dc-frontpage #content-wrap.container,
    .page-template-page-dc-frontpage #primary,
    .page-template-page-dc-frontpage .content-area,
    .page-template-page-dc-frontpage #content,
    .page-template-page-dc-frontpage .site-content {
        max-width: 100% !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        overflow: visible !important;
    }
    .page-template-page-dc-frontpage .page-header {
        display: none !important;
    }

    body.vertical-header-style #outer-wrap {
        padding-top: 0 !important;
    }
}

/* ===========================================
   CUSTOM DESKTOP NAVIGATION
   =========================================== */
#dc-desktop-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: transparent;
    justify-content: flex-end;
    align-items: center;
    gap: 40px;
    padding: 40px 5% 40px 2%;
}

#dc-nav-logo {
    position: fixed;
    top: 4%;
    left: 2%;
    z-index: 10000;
}

#dc-nav-logo img {
    height: 90px;
    width: auto;
}

#dc-nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
}

#dc-nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-family: 'Asap', sans-serif;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

#dc-nav-links a:hover {
    color: #d4772c;
}

/* Language switcher in nav */
#dc-nav-lang {
    display: flex;
    align-items: center;
    gap: 6px;
}

#dc-nav-lang .dc-lang {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-family: 'Asap', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

#dc-nav-lang .dc-lang:hover {
    color: #d4772c;
}

#dc-nav-lang .dc-lang.active {
    color: #ffffff;
}

#dc-nav-lang .dc-lang-sep {
    color: rgba(255, 255, 255, 0.3);
    font-size: 18px;
    user-select: none;
}

/* Social media icons in nav */
#dc-nav-social {
    display: flex;
    align-items: center;
    gap: 18px;
}

#dc-nav-social a {
    color: #ffffff;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    line-height: 0;
}

#dc-nav-social a:hover {
    color: #d4772c;
}

#dc-nav-social svg {
    display: block;
}

/* ===========================================
   FULLSCREEN VIDEO HERO
   =========================================== */
#dc-hero {
    display: none;
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #000;
}

#dc-hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    filter: brightness(0.45);
}

#dc-hero-overlay {
    position: absolute;
    top: 33%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 2;
    padding: 0 20px;
}

#dc-hero-overlay h1 {
    font-family: 'Asap', sans-serif;
    font-size: 130px;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 8px;
    margin: 0;
    text-shadow: 2px 2px 20px rgba(0,0,0,0.5);
}

#dc-hero-overlay .dc-hero-subtitle {
    font-family: 'Asap', sans-serif;
    font-size: 50px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin: 0;
    text-shadow: 1px 1px 10px rgba(0,0,0,0.5);
}

/* Hero description text */
.dc-hero-description {
    font-family: 'Asap', sans-serif;
    font-size: 30px;
    font-weight: 400;
    color: #ffffff;
    max-width: 900px;
    margin: 190px 0 0;
    padding: 0 20px;
    text-align: left;
    align-self: flex-start;
    margin-left: 10%;
    line-height: 1.6;
    text-shadow: 1px 1px 8px rgba(0,0,0,0.6);
}

/* Screen-reader only text (SEO keywords in H1, invisible) */
.dc-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;
}

/* Burger section subtitle — same style as hero subtitle */
.dc-section-subtitle {
    font-family: 'Asap', sans-serif;
    font-size: 50px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 45px 0 0;
    text-shadow: 1px 1px 10px rgba(0,0,0,0.5);
}

/* SEO text block in About section */
#dc-seo-text {
    max-width: 800px;
    margin: 20px auto;
    padding: 0 20px;
    text-align: center;
}

#dc-seo-text p {
    font-family: 'Asap', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    margin: 0;
}

#dc-hero-buttons {
    position: absolute;
    top: 83%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    display: flex;
    gap: 40px;
}

/* Button styles inherited from global .dc-btn */

/* ===========================================
   SECTION HEADINGS (shared)
   =========================================== */
h1.de-headline-single,
.dc-section-title {
    font-family: 'Asap', sans-serif;
    font-size: 130px;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 8px;
    text-shadow: 2px 2px 20px rgba(0,0,0,0.5);
    margin: 0;
    padding: 0;
    line-height: 1;
    text-align: center;
}

/* Shared button style */
.dc-btn {
    display: inline-block;
    padding: 21px 60px;
    background-color: #be4f1e;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Asap', sans-serif;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 40px;
    border: 2px solid #be4f1e;
    transition: all 0.3s ease;
}

.dc-btn:hover {
    background-color: transparent;
    border-color: #ffffff;
    color: #ffffff;
}

/* ===========================================
   BURGER TEASER SECTION
   =========================================== */
#dc-burger {
    display: none;
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #000;
}

#dc-burger-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 28px;
    padding: 4%;
    box-sizing: border-box;
}

.dc-burger-item {
    overflow: hidden;
    border-radius: 16px;
}

.dc-burger-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.45);
}

#dc-burger-overlay {
    position: absolute;
    top: 28%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 2;
    padding: 0 20px;
}

.dc-sticker {
    position: absolute;
    top: -50px;
    right: -100px;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    font-family: 'Asap', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
    z-index: 1;
}

.dc-sticker::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #be4f1e;
    clip-path: polygon(50% 0%, 59% 16%, 75% 7%, 75% 25%, 93% 25%, 84% 41%, 100% 50%, 84% 59%, 93% 75%, 75% 75%, 75% 93%, 59% 84%, 50% 100%, 41% 84%, 25% 93%, 25% 75%, 7% 75%, 16% 59%, 0% 50%, 16% 41%, 7% 25%, 25% 25%, 25% 7%, 41% 16%);
    animation: dc-spin 12s linear infinite;
    z-index: -1;
}

@keyframes dc-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

#dc-burger-overlay h1,
#dc-burger-overlay h2 {
    position: relative;
}

#dc-burger-buttons {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    display: flex;
    gap: 40px;
}

/* ===========================================
   STANDORT SECTION
   =========================================== */
#dc-standort {
    display: none;
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #000;
}

#dc-standort-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#dc-standort-bg img {
    position: absolute;
    width: 110%;
    height: 110%;
    top: -15%;
    left: 0.4%;
    object-fit: cover;
    filter: brightness(0.5);
}

#dc-standort-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 80px 40px #000;
    z-index: 1;
    pointer-events: none;
}

#dc-map-pin {
    position: absolute;
    top: 62%;
    left: 50%;
    transform: translate(-50%, -100%);
    z-index: 1;
    animation: dc-pin-bounce 2s ease infinite;
}

#dc-map-pin svg {
    width: 40px;
    height: 60px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.5));
}

@keyframes dc-pin-bounce {
    0%, 100% { transform: translate(-50%, -100%); }
    50% { transform: translate(-50%, -108%); }
}

#dc-standort-overlay {
    position: absolute;
    top: 22%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 2;
    padding: 0 20px;
    gap: 0;
}

#dc-standort-overlay h1,
#dc-standort-overlay h2.dc-section-title {
    font-family: 'Asap', sans-serif;
    font-size: 130px;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 8px;
    text-shadow: 2px 2px 20px rgba(0,0,0,0.5);
    margin: 0;
    padding: 0;
    line-height: 1;
}

#dc-standort-info {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 2;
    padding: 0 20px;
    gap: 0;
}

#dc-standort-info .dc-standort-address {
    font-family: 'Asap', sans-serif;
    font-size: 50px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin: 0;
    text-shadow: 1px 1px 10px rgba(0,0,0,0.5);
}

#dc-standort-contact {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 60px;
    margin-top: 45px;
}

#dc-standort-contact a,
#dc-standort-contact span {
    font-family: 'Asap', sans-serif !important;
    font-size: 50px !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    text-decoration: none !important;
    letter-spacing: 4px !important;
    text-transform: uppercase !important;
    transition: color 0.3s ease;
    text-shadow: 1px 1px 10px rgba(0,0,0,0.5);
}

#dc-standort-contact a:hover {
    color: #d4772c;
}

#dc-standort-buttons {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    display: flex;
    gap: 40px;
}

/* ===========================================
   ÜBER UNS SECTION
   =========================================== */
#dc-about {
    display: none;
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #000;
}

#dc-about-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    padding: 4%;
    box-sizing: border-box;
}

.dc-about-item {
    overflow: hidden;
    border-radius: 16px;
}

.dc-about-empty {
    background: transparent;
}

.dc-about-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.3);
}

#dc-about-overlay {
    position: absolute;
    top: 28%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 2;
}

#dc-about-text {
    position: absolute;
    top: 58%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 800px;
    text-align: center;
    z-index: 2;
    padding: 0 5%;
}

#dc-about-text p {
    font-family: 'Asap', sans-serif !important;
    font-size: 22px !important;
    font-weight: 400 !important;
    color: rgba(255, 255, 255, 0.85) !important;
    line-height: 1.7 !important;
    margin: 0 0 20px 0 !important;
    text-shadow: 1px 1px 10px rgba(0,0,0,0.5);
}

#dc-about-footer {
    position: absolute;
    bottom: 4%;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 2;
}

#dc-about-footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

#dc-about-footer-links a {
    font-family: 'Asap', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

#dc-about-footer-links a:hover {
    color: #d4772c;
}

.dc-footer-sep {
    color: rgba(255, 255, 255, 0.3);
    font-size: 14px;
}

#dc-about-copyright {
    font-family: 'Asap', sans-serif !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    color: rgba(255, 255, 255, 0.4) !important;
    margin: 0 !important;
    letter-spacing: 1px;
}

/* ===========================================
   FOLLOW US / INSTAGRAM SECTION
   =========================================== */
#dc-follow {
    display: none;
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    background: #000;
}

#dc-follow-feed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Override Smash Balloon styles to fill the section */
#dc-follow-feed #sb_instagram,
#dc-follow-feed .sb_instagram,
#dc-follow-feed #sbi_images {
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
}

#dc-follow-feed .sbi_item {
    padding: 0 !important;
    margin: 0 !important;
}

#dc-follow-feed .sbi_photo_wrap,
#dc-follow-feed .sbi_photo {
    border-radius: 0 !important;
}

#dc-follow-feed .sbi_photo img {
    filter: brightness(0.3) !important;
}

/* Hide Smash Balloon header, load more, follow buttons */
#dc-follow-feed .sb_instagram_header,
#dc-follow-feed #sbi_load,
#dc-follow-feed .sbi_follow_btn,
#dc-follow-feed .sbi_loader {
    display: none !important;
}

#dc-follow-overlay {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 2;
    pointer-events: none;
}

/* Force gap between Instagram rows for title */
#dc-follow-feed #sbi_images {
    row-gap: 120px !important;
}

/* Follow buttons removed */

/* ===========================================
   SCROLL SNAP
   =========================================== */
@media only screen and (min-width: 960px) {
    html {
        scroll-snap-type: y mandatory;
        scroll-behavior: smooth;
    }

    #dc-hero,
    #dc-burger,
    #dc-standort,
    #dc-follow,
    #dc-about {
        scroll-snap-align: start;
    }

    /* Hide OceanWP footer on desktop - integrated into About section */
    #footer {
        display: none !important;
    }

    /* Show sections on desktop */
    #dc-burger {
        display: flex !important;
    }

    #dc-standort {
        display: block !important;
    }

    #dc-about {
        display: block !important;
    }

    #dc-follow {
        display: block !important;
    }
}

/* ===========================================
   GLOBAL: Ensure cookie banner is visible
   =========================================== */
.cky-consent-container,
.cky-consent-bar,
.cky-banner-bottom,
#cky-consent {
    z-index: 999999 !important;
    position: fixed !important;
    scroll-snap-align: none !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* ===========================================
   GLOBAL: Hide mobile elements on desktop
   =========================================== */
@media only screen and (min-width: 960px) {
    #dc-mobile-toggle,
    #dc-mobile-menu {
        display: none !important;
    }
}

/* ===========================================
   GLOBAL: Pure black backgrounds
   =========================================== */
body,
#wrap,
#outer-wrap,
#main {
    background-color: #000000 !important;
}

/* ===========================================
   MOBILE STYLES (< 960px)
   =========================================== */
@media only screen and (max-width: 959px) {

    /* --- Show custom sections on mobile --- */
    #dc-hero,
    #dc-burger,
    #dc-standort,
    #dc-follow,
    #dc-about {
        display: block !important;
    }

    /* Hide old WP editor content on frontpage only */
    .page-template-page-dc-frontpage .entry-content,
    .page-template-page-dc-frontpage .entry,
    .page-template-page-dc-frontpage .entry-content.entry.clr {
        display: none !important;
        height: 0 !important;
        overflow: hidden !important;
    }

    /* Hide OceanWP header/topbar/sidebar on ALL pages */
    #site-header,
    #site-header.vertical-header,
    #top-bar-wrap,
    .page-header {
        display: none !important;
    }

    /* Hide footer on frontpage only */
    .page-template-page-dc-frontpage #footer,
    .page-template-page-dc-frontpage #footer-inner,
    .page-template-page-dc-frontpage #footer-bottom,
    .page-template-page-dc-frontpage #footer-widgets {
        display: none !important;
    }

    /* Fix body margin from vertical header on mobile */
    body.vertical-header-style.left-header #outer-wrap,
    body.vertical-header-style.vh-closed.left-header #outer-wrap {
        margin-left: 0 !important;
    }

    /* Subpages need padding-top for our fixed nav */
    body:not(.page-template-page-dc-frontpage) #content-wrap {
        padding-top: 80px !important;
    }

    /* Container reset for mobile */
    .page-template-page-dc-frontpage #outer-wrap,
    .page-template-page-dc-frontpage #wrap,
    .page-template-page-dc-frontpage #main,
    .page-template-page-dc-frontpage .site-main,
    .page-template-page-dc-frontpage #content-wrap,
    .page-template-page-dc-frontpage #content-wrap.container,
    .page-template-page-dc-frontpage #primary,
    .page-template-page-dc-frontpage .content-area,
    .page-template-page-dc-frontpage #content,
    .page-template-page-dc-frontpage .site-content {
        max-width: 100% !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        overflow: visible !important;
    }

    /* --- Mobile Navigation --- */
    #dc-desktop-nav {
        display: flex !important;
        padding: 15px 4% 15px 2%;
        gap: 0;
        justify-content: space-between;
        background: rgba(0, 0, 0, 0.85);
        backdrop-filter: blur(10px);
    }

    #dc-nav-logo {
        position: fixed;
        top: 8px;
        left: 3%;
    }

    #dc-nav-logo img {
        height: 50px;
    }

    /* Hide full nav links on mobile, show hamburger */
    #dc-nav-links,
    #dc-nav-lang {
        display: none;
    }

    #dc-nav-social {
        display: none;
    }

    /* Hamburger button */
    #dc-mobile-toggle {
        display: flex !important;
        position: fixed;
        top: 18px;
        right: 4%;
        z-index: 10001;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        flex-direction: column;
        gap: 6px;
    }

    #dc-mobile-toggle span {
        display: block;
        width: 28px;
        height: 3px;
        background: #fff;
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    /* Mobile menu overlay */
    #dc-mobile-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.95);
        z-index: 10000;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
    }

    #dc-mobile-menu.open {
        display: flex !important;
    }

    #dc-mobile-menu a {
        color: #ffffff;
        text-decoration: none;
        font-family: 'Asap', sans-serif;
        font-size: 24px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        transition: color 0.3s ease;
    }

    #dc-mobile-menu a:hover {
        color: #d4772c;
    }

    #dc-mobile-menu .dc-mobile-social {
        display: flex;
        gap: 25px;
        margin-top: 20px;
    }

    #dc-mobile-menu .dc-mobile-social a {
        color: #fff;
        font-size: 16px;
    }

    #dc-mobile-menu .dc-mobile-social svg {
        width: 30px;
        height: 30px;
    }

    /* --- HERO Mobile --- */
    #dc-hero {
        height: 100vh;
        height: 100svh;
    }

    #dc-hero-overlay {
        top: 40%;
    }

    #dc-hero-overlay .dc-hero-subtitle {
        font-size: 16px !important;
        letter-spacing: 2px !important;
    }

    .dc-section-subtitle {
        font-size: 16px !important;
        letter-spacing: 2px !important;
    }

    .dc-hero-description {
        font-size: 14px !important;
        margin-top: 15px !important;
        padding: 0 15px !important;
    }

    #dc-hero-buttons {
        top: 75%;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .dc-btn {
        padding: 15px 40px;
        font-size: 16px;
    }

    /* --- BURGER Mobile --- */
    #dc-burger {
        height: auto !important;
        min-height: 100vh;
        min-height: 100svh;
        padding: 0;
        position: relative;
        display: block !important;
    }

    #dc-burger-grid {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 1fr);
        gap: 8px;
        padding: 3%;
    }

    .dc-burger-item img {
        filter: brightness(0.35);
    }

    #dc-burger-overlay {
        position: absolute;
        top: 35%;
        left: 0;
        right: 0;
        transform: translateY(-50%);
        padding: 0 15px;
        z-index: 2;
    }

    #dc-burger-overlay h2.dc-section-title,
    #dc-standort-overlay h2.dc-section-title,
    #dc-follow-overlay h2.dc-section-title,
    #dc-about-overlay h2.dc-section-title,
    #dc-hero-overlay h1,
    .dc-section-title {
        font-size: 38px !important;
        letter-spacing: 2px !important;
    }

    .dc-sticker {
        width: 60px;
        height: 60px;
        font-size: 7px;
        right: -30px;
        top: 50%;
    }

    #dc-burger-buttons {
        position: absolute;
        top: 75%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 3;
        display: flex;
        gap: 20px;
    }

    /* --- STANDORT Mobile --- */
    #dc-standort {
        height: auto !important;
        min-height: 70vh;
        padding: 60px 0 30px;
        display: flex;
        flex-direction: column;
        position: relative;
    }

    #dc-standort-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    #dc-standort-bg img {
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        object-fit: cover;
    }

    #dc-standort-overlay {
        position: relative;
        top: auto;
        transform: none;
        padding: 30px 15px 15px;
        z-index: 2;
    }

    /* Standort title handled by unified .dc-section-title rule above */

    #dc-standort-info {
        position: relative;
        top: auto;
        padding: 0 15px;
        z-index: 2;
    }

    #dc-standort-info .dc-standort-address {
        font-size: 14px !important;
        letter-spacing: 1px !important;
        font-weight: 500 !important;
        color: rgba(255,255,255,0.8) !important;
        text-transform: uppercase !important;
    }

    #dc-standort-contact {
        flex-direction: column;
        gap: 6px;
        margin-top: 10px;
    }

    #dc-standort-contact a,
    #dc-standort-contact span {
        font-size: 13px !important;
        letter-spacing: 0.5px !important;
        font-weight: 400 !important;
        color: rgba(255,255,255,0.7) !important;
    }

    #dc-standort-buttons {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        display: flex;
        justify-content: center;
        padding: 25px 0 0;
        z-index: 2;
    }

    #dc-map-pin {
        display: block;
        top: 71%;
        left: 49%;
    }

    #dc-map-pin svg {
        width: 30px;
        height: 45px;
    }

    /* --- FOLLOW/INSTAGRAM Mobile --- */
    #dc-follow {
        height: auto !important;
        min-height: auto;
        padding: 50px 0 30px;
        display: flex !important;
        flex-direction: column;
    }

    #dc-follow-feed {
        position: relative;
        height: auto;
        order: 2;
    }

    #dc-follow-feed #sbi_images {
        row-gap: 4px !important;
        gap: 4px !important;
    }

    #dc-follow-feed .sbi_item {
        padding: 2px !important;
    }

    #dc-follow-overlay {
        position: relative;
        top: auto;
        transform: none;
        padding: 0 15px 15px;
        z-index: 2;
        order: 1;
    }

    /* Follow title handled by unified .dc-section-title rule above */

    #dc-follow-buttons {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        display: flex;
        justify-content: center;
        padding: 20px 0 0;
        order: 2;
    }

    /* --- ABOUT Mobile --- */
    #dc-about {
        height: auto !important;
        min-height: auto;
        padding: 50px 0 30px;
        display: flex !important;
        flex-direction: column;
    }

    #dc-about-grid {
        position: relative;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 8px;
        padding: 3%;
        order: 3;
    }

    .dc-about-item img {
        filter: brightness(0.6);
    }

    /* Hide empty grid items on mobile */
    .dc-about-empty {
        display: none;
    }

    #dc-about-overlay {
        position: relative;
        top: auto;
        transform: none;
        padding: 0 15px 15px;
        order: 1;
    }

    /* About title handled by unified .dc-section-title rule above */

    #dc-about-text {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        max-width: 100%;
        padding: 15px 5%;
        order: 2;
    }

    #dc-about-footer {
        order: 4;
    }

    #dc-about-text p {
        font-size: 15px !important;
        line-height: 1.6 !important;
    }

    #dc-about-footer {
        position: relative;
        bottom: auto;
        padding: 20px 5% 10px;
        order: 3;
    }

    #dc-about-footer-links {
        flex-wrap: wrap;
        gap: 10px;
    }

    #dc-about-footer-links a {
        font-size: 13px;
    }

    #dc-about-copyright {
        font-size: 12px !important;
    }
}

/****####################################
 * #### SPEISEKARTE PAGE (ID 4818) #####
 * #### Consistent fonts with homepage #
 * #####################################*/

/* Page title (H2 "Speisekarte" / "Bar Menu") */
.page-id-4818 #content h2 {
    font-family: 'Asap Condensed', sans-serif;
    font-size: 130px;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 8px;
    text-align: center;
    text-shadow: 2px 2px 20px rgba(0,0,0,0.5);
    margin: 60px 0 10px;
    line-height: 1;
}

/* Category headings (H3 "Starters", "Steaks", "Burger" etc.) */
.page-id-4818 #content h3 {
    font-family: 'Asap Condensed', sans-serif;
    font-size: 50px;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-align: center;
    text-shadow: 1px 1px 10px rgba(0,0,0,0.5);
    margin: 50px 0 15px;
    line-height: 1.2;
}

/* Subtitle text under page title */
.page-id-4818 #content h2 + p,
.page-id-4818 #content h2 + div p {
    font-family: 'Asap', sans-serif;
    font-size: 30px;
    color: rgba(255,255,255,0.8);
    text-align: center;
    letter-spacing: 2px;
}

/* Menu item names (bold text) */
.page-id-4818 #content strong {
    font-family: 'Asap Condensed', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Menu item descriptions */
.page-id-4818 #content p {
    font-family: 'Asap', sans-serif;
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

/* Prices */
.page-id-4818 .has-text-align-right {
    font-family: 'Asap', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
}

/* Horizontal rules / dividers */
.page-id-4818 hr {
    border-color: rgba(255,255,255,0.3);
}

/* Bottom H1 SEO heading */
.page-id-4818 #content h1 {
    font-family: 'Asap Condensed', sans-serif;
    font-size: 50px;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-align: center;
    text-shadow: 1px 1px 10px rgba(0,0,0,0.5);
    margin: 80px 0 30px;
    line-height: 1.2;
}

/* Mobile adjustments for Speisekarte */
@media (max-width: 959px) {
    .page-id-4818 #content h2 {
        font-size: 60px !important;
        letter-spacing: 4px !important;
    }

    .page-id-4818 #content h3 {
        font-size: 30px !important;
        letter-spacing: 2px !important;
    }

    .page-id-4818 #content h2 + p,
    .page-id-4818 #content h2 + div p {
        font-size: 18px !important;
    }

    .page-id-4818 #content h1 {
        font-size: 28px !important;
        letter-spacing: 2px !important;
    }

    .page-id-4818 #content strong {
        font-size: 18px !important;
    }

    .page-id-4818 #content p {
        font-size: 15px !important;
    }
}
