/*
 * =========================================================
 * BOBLESHOW MASTER CSS
 * CLEAN STANDARDIZED VERSION — V3
 *
 * Includes:
 * - Shared standardized hero heights and wave placement
 * - Consistent hero text start position on all devices
 * - Hero content positioned lower for better visual balance
 * - Standardized hero buttons: Tenor Sans, 13px, weight 500
 * - Hero button text shifted 4px upward
 * - Empty accidental hero buttons hidden
 * - Improved hero paragraph wrapping on mobile
 * - Mobile hero paragraph reduced to 15px for cleaner line breaks
 * =========================================================
 */

@keyframes body-gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

html {
    min-height: 100%;
    background: linear-gradient(-45deg, #e8eff5, #f4e8f0, #e8f5f1, #f0eaf5);
    background-size: 400% 400%;
    animation: body-gradient 20s ease infinite;
    background-attachment: fixed;
    scroll-padding-top: 100px;
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    min-height: 100vh;
    background: transparent;
    font-family: 'Tenor Sans', sans-serif;
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

.font-serif {
    font-family: 'Cormorant Garamond', serif;
}

@keyframes morph {
    0% {
        border-radius: 40px 40px 40px 40px;
        transform: scale(1);
    }

    33% {
        border-radius: 50px 30px 45px 35px;
        transform: scale(1.02);
    }

    66% {
        border-radius: 30px 50px 35px 45px;
        transform: scale(0.98);
    }

    100% {
        border-radius: 40px 40px 40px 40px;
        transform: scale(1);
    }
}

.bubble-btn {
    animation: morph 5s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    box-shadow: inset 2px 2px 5px rgba(255, 255, 255, 0.4), inset -2px -2px 10px rgba(255, 255, 255, 0.1), 0 4px 15px rgba(0, 0, 0, 0.2);
}

.bubble-btn::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 15%;
    width: 25%;
    height: 25%;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.7;
}

.bubble-btn:hover {
    animation-play-state: paused;
    transform: scale(1.05) translateY(-2px);
    box-shadow: inset 3px 3px 8px rgba(255, 255, 255, 0.6), inset -3px -3px 12px rgba(255, 255, 255, 0.2), 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* ─── Floating Background Bubbles ─── */
@keyframes float-around {
    0% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(40px, -60px) scale(1.05);
    }

    66% {
        transform: translate(-30px, 30px) scale(0.95);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}

.bg-bubble {
    animation: float-around 20s ease-in-out infinite;
}

.bg-bubble:nth-child(1) {
    animation-duration: 25s;
    animation-delay: 0s;
}

.bg-bubble:nth-child(2) {
    animation-duration: 32s;
    animation-delay: -5s;
}

.bg-bubble:nth-child(3) {
    animation-duration: 22s;
    animation-delay: -10s;
}

.bg-bubble:nth-child(4) {
    animation-duration: 28s;
    animation-delay: -15s;
}

.bg-bubble:nth-child(5) {
    animation-duration: 35s;
    animation-delay: -7s;
}

.bg-bubble:nth-child(6) {
    animation-duration: 20s;
    animation-delay: -12s;
}

/* ── Events Megamenu ────────────────────────────── */

/* Dropdown: hidden by default */
#events-dropdown {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

/* Show dropdown when hovering the Events nav item */
#events-mega-root:hover #events-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Each row is the hover anchor */
.events-menu-item {
    position: relative;
}

/* Invisible bridge that covers the 8px gap between menu item and sub-panel
   so the hover state persists while the mouse crosses over. */
.events-menu-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 100%;
    width: 10px;
    height: 100%;
}

.events-menu-item > button {
    cursor: pointer;
    width: 100%;
    color: #1f2937;
}

.events-menu-item:hover > button {
    background-color: #fdf2f8;
    color: #db2777;
}

.events-menu-item:hover > button iconify-icon {
    opacity: 1;
    color: #db2777;
}

/* Sub-panel: hidden by default, appears to the RIGHT on hover */
.events-sub-panel {
    position: absolute;
    top: 0;
    left: calc(100% + 8px);
    /* RIGHT side, 8px gap */
    width: 220px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.18s ease, visibility 0.18s ease;
    z-index: 100;
}

/* Show sub-panel when its DIRECT parent row is hovered */
.events-menu-item:hover > .events-sub-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Square image in each card */
.sub-card-img {
    width: 64px;
    height: 64px;
    min-width: 64px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Sub-sub-panel: 3rd level flyout (for nested categories like Corporate → Indoor → Adventure in the Air) */
.events-sub-sub-panel {
    position: absolute;
    top: 0;
    left: calc(100% + 8px);
    width: 220px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.18s ease, visibility 0.18s ease;
    z-index: 110;
}

/* Show sub-sub-panel when its DIRECT parent row is hovered */
.events-sub-panel .events-menu-item:hover > .events-sub-sub-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* View More link inside each card */
.view-more-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 6px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #ec4899;
    transition: gap 0.15s ease;
}

.view-more-link:hover {
    gap: 8px;
}

/* ─── Blog Dropdown ───────────────────────────────────── */
#blog-dropdown {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    min-width: 380px;
}

#blog-mega-root:hover #blog-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Invisible bridge over the pt-3 gap so hover state persists */
#blog-mega-root::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 12px;
}

/* ─── Mobile Events Accordion ───────────────────────────── */
.mobile-events-group>summary {
    list-style: none;
}

.mobile-events-group>summary::-webkit-details-marker {
    display: none;
}

.mobile-events-group[open] .mobile-events-chevron {
    transform: rotate(180deg);
}

/* ─── Mobile Blog Accordion ───────────────────────────── */
.mobile-blog-group>summary {
    list-style: none;
}

.mobile-blog-group>summary::-webkit-details-marker {
    display: none;
}

.mobile-blog-group[open] .mobile-blog-chevron {
    transform: rotate(180deg);
}

/* ─── Scroll-Reveal Animations ─────────────────────────────── */
[data-reveal] {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Mouse Bubbles ──────────────────────────────────── */
.mouse-bubble {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    /* crucial so they don't block clicking links */
    z-index: 99999;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.9), hsla(var(--bubble-hue, 330), 100%, 70%, 0.4) 60%, hsla(var(--bubble-hue, 330), 100%, 50%, 0.5) 100%);
    box-shadow: 0 0 10px hsla(var(--bubble-hue, 330), 100%, 60%, 0.6), inset 0 0 10px rgba(255, 255, 255, 0.9);
    border: 1px solid hsla(var(--bubble-hue, 330), 100%, 80%, 0.8);
    animation: floatAndPop 2s forwards ease-in-out;
}

@keyframes floatAndPop {
    0% {
        transform: translateY(0) scale(0.5);
        opacity: 0;
    }

    10% {
        opacity: 1;
        transform: translateY(-5px) scale(1);
    }

    85% {
        opacity: 0.7;
        transform: translateY(-40px) scale(1.1);
    }

    95% {
        opacity: 0;
        /* Pop suddenly */
        transform: translateY(-50px) scale(1.4);
    }

    100% {
        opacity: 0;
        transform: translateY(-50px) scale(1.4);
    }
}

/* ═══ Event Description Page ═══ */

/* Info Card */
.info-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.13);
}

/* Feature item */
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

/* Gallery thumb */
.thumb {
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.10);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.thumb:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.thumb img {
    transition: transform 0.5s ease;
}

.thumb:hover img {
    transform: scale(1.07);
}

.thumb .thumb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    transition: opacity 0.3s;
}

.thumb:hover .thumb-overlay {
    opacity: 1;
}

/* Sticky Book Bar */
.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding: 0.875rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.sticky-bar.visible {
    transform: translateY(0);
}

/* Tab button */
.tab-btn {
    padding: 0.6rem 1.5rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.25s;
    border: 2px solid transparent;
    color: #6b7280;
}

.tab-btn.active {
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    color: white;
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.3);
}

.tab-btn:not(.active):hover {
    background: #f3f4f6;
    color: #1f2937;
}
.gtranslate-flags a.glink {
    display: inline-block;
    margin-right: 12px !important;
}

.gtranslate-flags a.glink:last-of-type {
    margin-right: 0 !important;
}
#mega-menu-primary > li.mega-current-menu-item > a.mega-menu-link,
#mega-menu-primary > li.mega-current-menu-ancestor > a.mega-menu-link,
#mega-menu-primary > li > a.mega-menu-link:hover,
#mega-menu-primary > li > a.mega-menu-link:focus {
    background: rgba(255,255,255,0.08) !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08) !important;
    border-radius: 10px !important;
}
#mega-menu-primary > li > a.mega-menu-link[href="/#booking"] {
    background: transparent !important;
    box-shadow: none !important;
}

#mega-menu-primary > li > a.mega-menu-link[href="/#booking"]:hover,
#mega-menu-primary > li > a.mega-menu-link[href="/#booking"]:focus {
    background: rgba(255,255,255,0.08) !important;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08) !important;
}
#mobile-menu-btn {
    width: 42px;
    height: 42px;
    border-radius: 13px;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.22);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.16);
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 18px;
    right: 14px;
    z-index: 99999;
}

.mobile-menu-icon {
    width: 21px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-menu-icon span {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: #fff;
}
/* =====================================================
   HERO BUTTONS
   Phone = vertical
   Tablet / iPad / Desktop = horizontal
   ===================================================== */

#hero .hero-buttons {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    width: 100% !important;
}

#hero .hero-buttons > a {
    width: 100% !important;
}

@media screen and (min-width: 700px) {
    #hero .hero-buttons {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        justify-content: flex-start !important;
        width: auto !important;
        gap: 20px !important;
    }

    #hero .hero-buttons > a {
        width: auto !important;
        flex: 0 0 auto !important;
        white-space: nowrap !important;
    }
}


/* =====================================================
   TABLET SOCIAL SHARE MENU
   ===================================================== */

#tablet-social-menu {
    display: none;
    position: relative;
}

#tablet-social-menu summary {
    list-style: none;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;

    color: white;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.18);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

#tablet-social-menu summary::-webkit-details-marker {
    display: none;
}

.tablet-social-popup {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;

    display: flex;
    gap: 8px;

    padding: 10px;

    border-radius: 16px;

    background: rgba(20, 10, 35, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.15);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);

    z-index: 99999;
}

.tablet-social-popup a {
    width: 36px;
    height: 36px;

    border-radius: 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;

    background: rgba(255, 255, 255, 0.08);
}

.tablet-social-popup a:hover {
    background: rgba(255, 255, 255, 0.16);
}


/* =====================================================
   MOBILE
   Under 768px
   Hamburger menu
   ===================================================== */

@media screen and (max-width: 767px) {

    #desktop-header-menu {
        display: none !important;
    }

    #header-social-language {
        display: none !important;
    }

    #mobile-menu-btn {
        display: flex !important;
    }

    #header-social-icons {
        display: none !important;
    }

    #tablet-social-menu {
        display: none !important;
    }
}


/* =====================================================
   TABLET / IPAD PORTRAIT
   Full horizontal navigation
   Hide 4 social icons
   Show ONE share button
   Keep language flags
   ===================================================== */

@media screen
and (min-width: 768px)
and (max-width: 1366px)
and (orientation: portrait) {

    #desktop-header-menu {
        display: flex !important;
    }

    #mobile-menu-btn {
        display: none !important;
    }

    #header-social-language {
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
    }

    #header-social-language #header-social-icons {
        display: none !important;
    }

    #header-social-language #tablet-social-menu {
        display: block !important;
    }
}


/* =====================================================
   IPAD LANDSCAPE
   Full horizontal navigation
   Full social icons
   Language flags
   ===================================================== */

@media screen
and (min-width: 768px)
and (max-width: 1366px)
and (orientation: landscape) {

    #desktop-header-menu {
        display: flex !important;
    }

    #mobile-menu-btn {
        display: none !important;
    }

    #header-social-language {
        display: flex !important;
        align-items: center !important;
    }

    #header-social-icons {
        display: flex !important;
    }

    #tablet-social-menu {
        display: none !important;
    }
}


/* =====================================================
   DESKTOP
   Full menu + full social icons + flags
   ===================================================== */

@media screen and (min-width: 1367px) {

    #desktop-header-menu {
        display: flex !important;
    }

    #mobile-menu-btn {
        display: none !important;
    }

    #header-social-language {
        display: flex !important;
    }

    #header-social-icons {
        display: flex !important;
    }

    #tablet-social-menu {
        display: none !important;
    }
}
/* MOBILE DRAWER MENU */

#mobile-primary-menu {
    padding: 18px 16px;
    overflow-y: auto;
    flex: 1;
}

#mobile-primary-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#mobile-primary-menu > ul > li {
    margin-bottom: 6px;
}

#mobile-primary-menu a {
    display: block;
    width: 100%;
    padding: 11px 12px;
    border-radius: 10px;
    color: white;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
}

#mobile-primary-menu a:hover,
#mobile-primary-menu a:focus {
    background: rgba(255,255,255,0.10);
}

/* Nested menu items */
#mobile-primary-menu ul ul {
    margin-left: 12px;
    margin-top: 4px;
    padding-left: 10px;
    border-left: 1px solid rgba(255,255,255,0.14);
}

#mobile-primary-menu ul ul a {
    font-size: 14px;
    padding: 8px 10px;
    color: rgba(255,255,255,0.82);
}

/* Active item */
#mobile-primary-menu .current-menu-item > a,
#mobile-primary-menu .current-menu-ancestor > a {
    background: rgba(255,255,255,0.08);
}
/* Mobile drawer: show menu immediately, hide Max Mega Menu second hamburger */

#mobile-primary-menu .mega-menu-toggle {
    display: none !important;
}

#mobile-primary-menu #mega-menu-primary {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    max-height: none !important;
}

#desktop-header-menu #mega-menu-wrap-primary,
#mobile-primary-menu #mega-menu-wrap-primary {
    background: transparent !important;
}

#desktop-header-menu #mega-menu-primary,
#mobile-primary-menu #mega-menu-primary {
    background: transparent !important;
}
/* ===== PROFESSIONAL GLASS SUBMENU ===== */

/* Submenu panels */
#mega-menu-primary .mega-sub-menu,
#mobile-primary-menu .mega-sub-menu {
    background: rgba(0, 0, 0, 0.22) !important;
    border: 1px solid rgba(255,255,255,0.10) !important;
    border-radius: 18px !important;
    box-shadow: 0 14px 35px rgba(0,0,0,0.22) !important;
    backdrop-filter: blur(18px) !important;
    -webkit-backdrop-filter: blur(18px) !important;
    padding: 6px !important;
}

/* Submenu links */
#mega-menu-primary .mega-sub-menu a.mega-menu-link,
#mobile-primary-menu .mega-sub-menu a.mega-menu-link {
    background: transparent !important;
    color: rgba(255,255,255,0.94) !important;
    border-radius: 12px !important;
    padding: 10px 14px !important;
    border: 1px solid transparent !important;
    font-weight: 500 !important;
}

/* Hover / focus / active — same feel as top menu */
#mega-menu-primary .mega-sub-menu a.mega-menu-link:hover,
#mega-menu-primary .mega-sub-menu a.mega-menu-link:focus,
#mega-menu-primary .mega-sub-menu .mega-current-menu-item > a.mega-menu-link,
#mobile-primary-menu .mega-sub-menu a.mega-menu-link:hover,
#mobile-primary-menu .mega-sub-menu a.mega-menu-link:focus,
#mobile-primary-menu .mega-sub-menu .mega-current-menu-item > a.mega-menu-link {
    background: rgba(255,255,255,0.08) !important;
    color: #fff !important;
    border: 1px solid rgba(255,255,255,0.10) !important;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04) !important;
}

/* Deeper flyout panels */
#mega-menu-primary .mega-sub-menu .mega-sub-menu,
#mobile-primary-menu .mega-sub-menu .mega-sub-menu {
    background: rgba(0, 0, 0, 0.26) !important;
    border: 1px solid rgba(255,255,255,0.10) !important;
}

/* Small submenu arrows */
#mega-menu-primary .mega-sub-menu .mega-indicator,
#mobile-primary-menu .mega-sub-menu .mega-indicator {
    color: rgba(255,255,255,0.75) !important;
}
/* ===== COMPACT SUBMENU ITEMS ===== */

#mega-menu-primary .mega-sub-menu a.mega-menu-link,
#mobile-primary-menu .mega-sub-menu a.mega-menu-link {
    background: transparent !important;
    color: rgba(255,255,255,0.94) !important;
    border-radius: 10px !important;

    padding: 6px 12px !important;
    line-height: 1.15 !important;

    border: 1px solid transparent !important;
    font-weight: 500 !important;

    white-space: nowrap !important;
}

/* Make submenu width follow the longest label */
#mega-menu-primary .mega-sub-menu,
#mobile-primary-menu .mega-sub-menu {
    width: max-content !important;
    min-width: 170px !important;
    max-width: none !important;
}
/* Space below main menu before first submenu */
#mega-menu-primary > li.mega-menu-item-has-children > .mega-sub-menu {
    margin-top: 10px !important;
}

/* Space between submenu levels */
#mega-menu-primary .mega-sub-menu .mega-sub-menu,
#mobile-primary-menu .mega-sub-menu .mega-sub-menu {
    margin-left: 12px !important;
    margin-top: 6px !important;
}
/* Main header buttons - perfectly centered */
#mega-menu-primary > li > a.mega-menu-link {
    height: auto !important;
    min-height: 0 !important;

    padding: 8px 12px !important;

    line-height: 1.2 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    box-sizing: border-box !important;
}
/* =========================================================
   BOBLESHOW
   MASTER PAGE CSS

   SHOW
   ARRANGØR
   PRIVAT
   GALLERI
   OM JULIA
========================================================= */


/* =========================================================
   PAGE WRAPPERS
========================================================= */

.show-hub-page,
.arrangor-page,
.privat-page,
.gallery-page,
.julia-page {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
}


/* =========================================================
   SHARED HERO
   STANDARDIZED ACROSS ALL LANDING PAGES
========================================================= */

.show-hero {
    position: relative;

    display: block !important;

    width: 100%;

    /*
     * SAME HERO HEIGHT ON EVERY DESKTOP PAGE
     */
    height: 700px !important;
    min-height: 700px !important;
    max-height: 700px !important;

    margin: 0 !important;
    padding: 0 !important;

    overflow: hidden;

    box-sizing: border-box;

    background: #06070b;
}


/* =========================================================
   HERO IMAGE
========================================================= */

.show-hero__image {
    position: absolute !important;

    inset: 0;

    display: block !important;

    width: 100% !important;
    height: 100% !important;
    max-width: none !important;

    margin: 0 !important;
    padding: 0 !important;

    object-fit: cover;
    object-position: center center;

    z-index: 0;
}


/* =========================================================
   HERO OVERLAY
========================================================= */

.show-hero__overlay {
    position: absolute;

    inset: 0;

    z-index: 1;

    pointer-events: none;

    background: linear-gradient(
        90deg,
        rgba(4,5,9,.72) 0%,
        rgba(4,5,9,.55) 32%,
        rgba(4,5,9,.28) 60%,
        rgba(4,5,9,.05) 100%
    );
}


/* =========================================================
   HERO WAVE
   SAME POSITION ON EVERY PAGE
========================================================= */

.show-hero::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;

    bottom: -1px;

    z-index: 4;

    display: block;

    width: 100%;
    height: 120px;

    pointer-events: none;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0%25' y1='0%25' x2='100%25' y2='0%25'%3E%3Cstop offset='0%25' stop-color='%23e8eff5'/%3E%3Cstop offset='50%25' stop-color='%23f4e8f0'/%3E%3Cstop offset='100%25' stop-color='%23e8f5f1'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M0,120 C150,120 250,50 400,60 C550,70 600,100 750,90 C900,80 1050,20 1200,50 L1200,120 Z' fill='url(%23g)'/%3E%3Cpath d='M0,120 C200,90 300,110 500,100 C700,90 800,50 1000,70 C1150,85 1200,120 1200,120 Z' fill='url(%23g)' opacity='.5'/%3E%3Cpath d='M0,120 C100,100 250,120 450,90 C650,60 850,100 1050,80 C1150,70 1200,120 1200,120 Z' fill='url(%23g)' opacity='.3'/%3E%3C/svg%3E");

    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 100% 100%;
}


/* =========================================================
   HERO INNER
   FIXED TOP START = SAME TEXT HEIGHT ON EVERY PAGE
========================================================= */

.show-hero__inner {
    position: relative;

    z-index: 5;

    width: min(1180px, calc(100% - 64px));
    height: 100%;

    margin: 0 auto;

    /*
     * IMPORTANT:
     * All hero content now begins from the same top position.
     * Content length no longer moves the whole block up/down.
     */
    padding: 205px 0 120px;

    box-sizing: border-box;

    overflow: visible !important;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.show-hero__content {
    position: relative;

    z-index: 6;

    width: 100%;
    max-width: 640px;

    margin: 0 !important;
    padding: 0 !important;

    overflow: visible !important;
}


/* =========================================================
   HERO TYPOGRAPHY
========================================================= */

.show-hero__eyebrow {
    display: block !important;

    margin: 0 0 18px !important;
    padding: 0 !important;

    font-family: 'Tenor Sans', sans-serif !important;

    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 1 !important;

    letter-spacing: 3px !important;

    text-transform: uppercase;

    color: #ec4899 !important;
}


.show-hero h1 {
    display: block !important;

    width: 100%;
    max-width: 660px;

    margin: 0 0 24px !important;
    padding: 0 !important;

    font-family: 'Cormorant Garamond', serif !important;

    font-size: clamp(50px, 4.9vw, 72px) !important;
    font-weight: 400 !important;
    line-height: 1.02 !important;

    letter-spacing: -.7px !important;

    color: #ffffff !important;
}


.show-hero__lead {
    display: block !important;

    width: 100%;
    max-width: 570px;

    margin: 0 !important;
    padding: 0 !important;

    font-family: 'Tenor Sans', sans-serif !important;

    font-size: 18px !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;

    letter-spacing: 0 !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
    hyphens: none !important;
    text-wrap: pretty;

    color: rgba(255,255,255,.92) !important;
}


/* =========================================================
   HERO BUTTON
   STANDARDIZED ON ALL LANDING PAGES
========================================================= */

.show-home-btn {
    position: relative;
    z-index: 10;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: auto !important;
    min-width: 0 !important;
    min-height: 48px !important;

    margin: 34px 0 0 !important;
    padding: 0 28px !important;

    box-sizing: border-box !important;

    font-family: 'Tenor Sans', sans-serif !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    line-height: 1 !important;
    letter-spacing: 0 !important;

    text-align: center !important;
    text-decoration: none !important;
    white-space: nowrap !important;

    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;

    background: rgba(255,255,255,.20) !important;

    border: 1px solid rgba(255,255,255,.50) !important;
    border-radius: 40px;

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    box-shadow:
        inset 2px 2px 5px rgba(255,255,255,.40),
        inset -2px -2px 10px rgba(255,255,255,.10),
        0 4px 15px rgba(0,0,0,.20);

    overflow: hidden !important;

    animation: showBubbleMorph 5s ease-in-out infinite;
}


.show-home-btn__text {
    position: relative;
    z-index: 2;

    /*
     * Small optical correction:
     * keeps the text visually centered without sitting too high.
     */
    top: -8px;

    font-family: 'Tenor Sans', sans-serif !important;
    font-size: 18px !important;
    font-weight: 500 !important;
    line-height: 1 !important;
    letter-spacing: 0 !important;

    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}


.show-home-btn::before {
    content: '';

    position: absolute;
    top: 10%;
    left: 15%;

    width: 25%;
    height: 25%;

    background: radial-gradient(
        ellipse at center,
        rgba(255,255,255,.90) 0%,
        rgba(255,255,255,0) 70%
    );

    border-radius: 50%;
    opacity: .7;

    pointer-events: none;
}


.show-home-btn,
.show-home-btn:link,
.show-home-btn:visited,
.show-home-btn:focus,
.show-home-btn:active {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;

    text-decoration: none !important;
}


.show-home-btn:hover {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;

    background: rgba(255,255,255,.27) !important;

    border-color: rgba(255,255,255,.85) !important;

    animation-play-state: paused;

    transform: scale(1.05) translateY(-1px);

    box-shadow:
        inset 3px 3px 8px rgba(255,255,255,.60),
        inset -3px -3px 12px rgba(255,255,255,.20),
        0 8px 25px rgba(255,255,255,.30);
}


/* Hide accidental empty hero buttons */

.show-home-btn:empty,
.show-home-btn:not(:has(.show-home-btn__text)) {
    display: none !important;
}


@keyframes showBubbleMorph {

    0% {
        border-radius: 40px;
        transform: scale(1);
    }

    33% {
        border-radius: 50px 30px 45px 35px;
        transform: scale(1.02);
    }

    66% {
        border-radius: 30px 50px 35px 45px;
        transform: scale(.98);
    }

    100% {
        border-radius: 40px;
        transform: scale(1);
    }

}


/* =========================================================
   SHARED CONTENT
========================================================= */

.show-content {
    width: 100%;

    padding: 80px 24px;

    box-sizing: border-box;

    background: #ffffff;
}


.show-content__inner {
    width: 100%;
    max-width: 1180px;

    margin: 0 auto;
}


.show-content__eyebrow {
    margin: 0 0 16px !important;

    font-family: 'Tenor Sans', sans-serif !important;

    font-size: 12px !important;
    font-weight: 400 !important;
    line-height: 1.4 !important;

    letter-spacing: .22em !important;

    text-transform: uppercase;

    color: #8c837b !important;
}


.show-content h2,
.show-related-events h2 {
    margin: 0;

    font-family: 'Cormorant Garamond', serif;

    font-size: clamp(42px, 5vw, 60px);
    font-weight: 500;
    line-height: 1.05;

    letter-spacing: -.02em;

    color: #24211f;
}


/* =========================================================
   SHOW INTRO
========================================================= */

.show-content__intro {
    width: 100%;
    max-width: 780px;

    margin: 0 auto 80px;

    text-align: center;
}


.show-content__intro > p:last-child {
    max-width: 720px;

    margin: 26px auto 0;

    font-family: 'Tenor Sans', sans-serif;

    font-size: 16px;
    line-height: 1.85;

    color: #635d58;
}


/* =========================================================
   SHOW AUDIENCE
========================================================= */

.show-audience-row {
    display: flex !important;

    flex-direction: row !important;
    flex-wrap: nowrap !important;

    align-items: flex-start !important;

    width: 100% !important;

    gap: 48px !important;

    margin: 0 !important;
    padding: 0 !important;
}


.show-audience-row > .show-audience {
    flex: 1 1 0 !important;

    width: calc(50% - 24px) !important;
    max-width: calc(50% - 24px) !important;
    min-width: 0 !important;

    margin: 0 !important;
    padding: 0 !important;
}
.show-audience__heading {
    margin: 0 0 24px;
}


.show-audience__label {
    margin: 0 0 10px !important;

    font-family: 'Tenor Sans', sans-serif !important;

    font-size: 11px !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;

    letter-spacing: .13em;

    text-transform: uppercase;

    color: #918881 !important;
}


.show-audience__heading h3 {
    margin: 0 !important;

    font-family: 'Cormorant Garamond', serif !important;

    font-size: clamp(38px, 4vw, 48px) !important;
    font-weight: 500 !important;
    line-height: 1.05 !important;

    color: #24211f !important;
}


.show-audience__image-link {
    display: block !important;

    width: 100% !important;

    overflow: hidden;

    border-radius: 4px;

    text-decoration: none;
}


.show-audience__image {
    display: block !important;

    width: 100% !important;
    height: 340px !important;
    max-width: none !important;

    margin: 0 !important;
    padding: 0 !important;

    object-fit: cover;

    transition: transform .6s ease;
}


.show-audience__image-link:hover .show-audience__image {
    transform: scale(1.025);
}


.show-audience__content {
    width: 100%;

    padding-top: 26px;
}


.show-audience__content p {
    margin: 0 0 17px;

    font-family: 'Tenor Sans', sans-serif;

    font-size: 14px;
    line-height: 1.8;

    color: #625d58;
}


/* =========================================================
   TEXT LINKS
========================================================= */

.show-text-link,
.show-text-link:link,
.show-text-link:visited {
    display: inline-block;

    margin-top: 8px;

    padding-bottom: 3px;

    border-bottom: 1px solid rgba(41,37,34,.45);

    font-family: 'Tenor Sans', sans-serif;

    font-size: 13px;
    line-height: 1.4;

    letter-spacing: .04em;

    color: #292522 !important;

    text-decoration: none !important;

    transition:
        opacity .2s ease,
        border-color .2s ease;
}


.show-text-link:hover {
    color: #292522 !important;

    opacity: .65;

    border-color: #292522;
}


/* =========================================================
   EVENT SECTIONS
========================================================= */

.show-related-events {
    background: #ffffff;
}


.show-selection__heading {
    width: 100%;
    max-width: 720px;

    margin: 0 auto 55px;

    text-align: center;
}


.show-selection__heading > p:not(.show-content__eyebrow) {
    max-width: 650px;

    margin: 22px auto 0;

    font-family: 'Tenor Sans', sans-serif;

    font-size: 15px;
    line-height: 1.8;

    color: #625d58;
}


#kulturhus-festival,
#arrangor-show,
#privat-show,
#julia-start,
#gallery-start {
    scroll-margin-top: 1px;
}


/* =========================================================
   LANDING PAGE BACKGROUNDS
========================================================= */

.arrangor-page,
.privat-page,
.gallery-page,
.julia-page {
    background: #fbf8fb !important;
}


.arrangor-page .show-content,
.arrangor-page .show-related-events,
.privat-page .show-content,
.privat-page .show-related-events,
.gallery-page .show-content,
.julia-page .show-content {
    background: #fbf8fb !important;
}


/* =========================================================
   ARRANGØR + PRIVAT INTRO
========================================================= */

.arrangor-page .arrangor-intro-section,
.privat-page .privat-intro-section {
    width: 100%;

    padding-top: 90px !important;
    padding-bottom: 48px !important;

    background: #fbf8fb !important;
}


.arrangor-page .arrangor-intro-split__text,
.privat-page .privat-intro-split__text {
    min-width: 0 !important;

    text-align: left !important;
}


.arrangor-page .arrangor-intro-split__text h2,
.privat-page .privat-intro-split__text h2 {
    max-width: 620px !important;

    margin: 0 0 26px !important;

    font-family: 'Cormorant Garamond', serif !important;

    font-size: clamp(42px, 4.7vw, 58px) !important;
    font-weight: 500 !important;
    line-height: 1.04 !important;

    color: #24211f !important;
}


.arrangor-page .arrangor-intro-split__text p:not(.show-content__eyebrow),
.privat-page .privat-intro-split__text p:not(.show-content__eyebrow) {
    max-width: 600px !important;

    margin: 0 0 18px !important;

    font-family: 'Tenor Sans', sans-serif !important;

    font-size: 15px !important;
    line-height: 1.85 !important;

    color: #625d58 !important;
}


.arrangor-page .arrangor-intro-split__image,
.privat-page .privat-intro-split__image {
    display: block !important;

    width: 100% !important;
    height: 430px !important;

    object-fit: cover !important;

    border-radius: 10px !important;

    box-shadow:
        0 14px 35px rgba(36,33,31,.08) !important;
}


@media screen and (min-width: 821px) {

    .arrangor-page .arrangor-intro-split,
    .privat-page .privat-intro-split {
        display: flex !important;

        flex-direction: row !important;

        align-items: center !important;

        gap: 60px !important;
    }


    .arrangor-page .arrangor-intro-split__text,
    .privat-page .privat-intro-split__text {
        flex: 1 1 0 !important;
    }


    .arrangor-page .arrangor-intro-split__media,
    .privat-page .privat-intro-split__media {
        flex: 0 0 42% !important;

        width: 42% !important;
    }

}


/* =========================================================
   ARRANGØR + PRIVAT EVENTS
========================================================= */

.arrangor-page .arrangor-events-section,
.privat-page .privat-events-section {
    background: #fbf8fb !important;

    padding-top: 46px !important;
    padding-bottom: 100px !important;
}


/* =========================================================
   ARRANGØR + PRIVAT CTA
========================================================= */

.arrangor-page .arrangor-cta-section,
.privat-page .privat-cta-section {
    width: 100%;
    max-width: 1180px;

    margin: 0 auto;

    padding: 0 24px 100px;
}


.arrangor-page .arrangor-cta,
.privat-page .privat-cta {
    width: 100%;

    padding: 58px 48px;

    text-align: center;

    border-top: 1px solid #e8dfe7;
    border-bottom: 1px solid #e8dfe7;
}


.arrangor-page .arrangor-cta__eyebrow,
.privat-page .privat-cta__eyebrow {
    margin: 0 0 14px;

    font-family: 'Tenor Sans', sans-serif;

    font-size: 11px;
    line-height: 1.4;

    letter-spacing: .18em;

    text-transform: uppercase;

    color: #ec4899 !important;
}


.arrangor-page .arrangor-cta h2,
.privat-page .privat-cta h2 {
    max-width: 760px;

    margin: 0 auto 20px !important;

    font-family: 'Cormorant Garamond', serif !important;

    font-size: clamp(40px, 4.5vw, 54px) !important;
    font-weight: 500 !important;
    line-height: 1.05 !important;

    color: #24211f !important;
}


.arrangor-page .arrangor-cta__text,
.privat-page .privat-cta__text {
    max-width: 620px;

    margin: 0 auto 30px;

    font-family: 'Tenor Sans', sans-serif;

    font-size: 15px;
    line-height: 1.8;

    color: #625d58 !important;
}


/* =========================================================
   SHARED PINK CTA BUTTON
========================================================= */

.arrangor-page .arrangor-cta__button,
.privat-page .privat-cta__button,
.julia-page .julia-cta__button {
    display: inline-flex !important;

    align-items: center !important;
    justify-content: center !important;

    width: auto !important;
    min-width: 0 !important;
    min-height: 48px !important;

    padding: 0 30px 10px !important;

    font-family: 'Tenor Sans', sans-serif !important;

    font-size: 13px !important;
    font-weight: 700 !important;
    line-height: 1 !important;

    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;

    text-decoration: none !important;

    background: linear-gradient(
        135deg,
        #ec4899,
        #a855f7
    ) !important;

    border: 0 !important;
    border-radius: 40px !important;

    box-shadow:
        0 7px 20px rgba(168,85,247,.20) !important;

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}


.arrangor-page .arrangor-cta__button:hover,
.privat-page .privat-cta__button:hover,
.julia-page .julia-cta__button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 11px 27px rgba(168,85,247,.30) !important;
}

/* Privat CTA – egen vertikal justering */
.privat-page .privat-cta__button {
    padding: 0 30px 4px !important;
}

/* =========================================================
   JULIA GENERAL
========================================================= */

.julia-page .show-content {
    padding-top: 90px;
    padding-bottom: 90px;
}


.julia-page .show-content h2 {
    margin: 0 0 26px !important;

    font-size: clamp(42px, 4.7vw, 58px) !important;

    line-height: 1.04 !important;
}


.julia-page .show-content p:not(.show-content__eyebrow) {
    margin: 0 0 18px;

    font-family: 'Tenor Sans', sans-serif;

    font-size: 15px;
    line-height: 1.85;

    color: #625d58;
}


/* =========================================================
   JULIA SPLIT
========================================================= */

.julia-intro-section {
    padding-top: 88px !important;
}


.julia-split {
    display: flex;

    align-items: center;

    gap: 70px;
}


.julia-split__text {
    flex: 1 1 0;

    min-width: 0;
}


.julia-split__media {
    flex: 0 0 42%;

    width: 42%;
}


.julia-split__text h2 {
    max-width: 620px;
}


.julia-split__text p:not(.show-content__eyebrow) {
    max-width: 600px;
}


.julia-split__image {
    display: block !important;

    width: 100% !important;
    height: 440px !important;
    max-width: none !important;

    margin: 0 !important;
    padding: 0 !important;

    object-fit: cover;

    border-radius: 10px;

    box-shadow:
        0 14px 35px rgba(36,33,31,.08);
}


.julia-split__image--children {
    height: 500px !important;
}


/* =====================================================
   JULIA FACT STRIP – PREMIUM LOOK
===================================================== */

.julia-facts-section {
    padding: 34px 20px;
    border: none !important;
    background: transparent;
}

.julia-facts-section::before,
.julia-facts-section::after,
.julia-facts::before,
.julia-facts::after {
    display: none !important;
    content: none !important;
}

.julia-facts {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
    border: none !important;
}

.julia-fact {
    position: relative;
    min-width: 0;
    min-height: 122px;
    padding: 22px 14px 18px;
    text-align: center;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.75);

    background:
        linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.9) 100%);
    
    box-shadow:
        0 10px 30px rgba(31, 41, 55, 0.08),
        0 2px 8px rgba(31, 41, 55, 0.04);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    overflow: hidden;
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease;
}

/* subtle top highlight */
.julia-fact::before {
    content: "";
    position: absolute;
    top: 0;
    left: 18%;
    width: 64%;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, #f2c3ff 0%, #cfd0ff 50%, #f7d9b8 100%);
    opacity: 0.95;
}

/* very soft bubble glow */
.julia-fact::after {
    content: "";
    position: absolute;
    width: 66px;
    height: 66px;
    top: -18px;
    right: -14px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(230, 190, 255, 0.22) 0%, rgba(230, 190, 255, 0.08) 42%, rgba(230, 190, 255, 0) 72%);
    pointer-events: none;
}

.julia-fact:hover {
    transform: translateY(-5px);
    border-color: rgba(232, 205, 255, 0.95);
    box-shadow:
        0 18px 42px rgba(31, 41, 55, 0.12),
        0 6px 16px rgba(31, 41, 55, 0.06);
}

.julia-fact__title {
    font-size: 24px;
    line-height: 1.12;
    font-weight: 700;
    color: #1d2a44;
    margin-bottom: 7px;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 2;
}

.julia-fact__text {
    font-size: 11px;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #8a6f63;
    max-width: 95%;
    position: relative;
    z-index: 2;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {
    .julia-facts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .julia-fact {
        min-height: 112px;
        padding: 20px 12px 16px;
    }

    .julia-fact__title {
        font-size: 21px;
    }

    .julia-fact__text {
        font-size: 11px;
        letter-spacing: 0.1em;
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 520px) {
    .julia-facts-section {
        padding: 26px 16px;
    }

    .julia-facts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .julia-fact {
        min-height: 98px;
        padding: 16px 8px 14px;
        border-radius: 18px;
    }

    .julia-fact__title {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .julia-fact__text {
        font-size: 10px;
        line-height: 1.25;
        letter-spacing: 0.07em;
    }
}


/* =========================================================
   JULIA AOIBA
========================================================= */

.julia-soft-section {
    background: #f4eef4 !important;
}


/* LOGO LEFT / TEXT RIGHT */

.julia-aoiba-layout {
    display: flex;

    align-items: center;

    width: 100%;

    gap: 64px;
}


/* AOIBA LOGO COLUMN */

.julia-aoiba-logo {
    flex: 0 0 145px;

    display: flex;

    align-items: center;
    justify-content: center;

    width: 145px;
}


.julia-aoiba-logo img {
    display: block !important;

    width: auto !important;
    height: auto !important;

    max-width: 110px !important;
    max-height: 110px !important;

    margin: 0 !important;
    padding: 0 !important;

    object-fit: contain;
}


/* AOIBA CONTENT */

.julia-aoiba-content {
    flex: 1 1 auto;

    min-width: 0;
}


.julia-aoiba-content h2 {
    width: 100%;
    max-width: 700px;
}


.julia-aoiba-content p:not(.show-content__eyebrow) {
    width: 100%;
    max-width: 680px;
}


/* =========================================================
   JULIA CREDENTIALS – CLEAN DOT ALIGNMENT
========================================================= */

.julia-credentials {
    margin-top: 22px;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 34px;
    row-gap: 0;

    border-top: 1px solid #e8dfe7;
}


.julia-credentials .julia-credential {
    position: relative;

    display: flex !important;
    align-items: center !important;

    gap: 14px;

    min-height: 0 !important;
    height: auto !important;

    padding: 10px 0 !important;

    border-bottom: 1px solid #e8dfe7;

    font-family: 'Tenor Sans', sans-serif;
    font-size: 14px !important;
    font-weight: 500;
    line-height: 1.35 !important;

    color: #59534f;
}


/* PINK DOT */

.julia-credentials .julia-credential span {
    flex: 0 0 6px !important;

    display: block !important;

    width: 6px !important;
    height: 6px !important;

    margin: 0 !important;

    border-radius: 50%;

    background: #ec4899;

    position: static !important;
    transform: none !important;
}


/* MOBILE */

@media (max-width: 520px) {

    .julia-credentials {
        grid-template-columns: 1fr;
        column-gap: 0;
    }

    .julia-credentials .julia-credential {
        padding: 10px 0 !important;
        font-size: 14px !important;
    }
}

/* =========================================================
   JULIA NORWAY
========================================================= */

.julia-norway-section {
    background: #f4eef4 !important;

    text-align: center;
}


.julia-norway-section .show-selection__heading {
    max-width: 790px;
}


.julia-norway-section .show-selection__heading h2 {
    margin-left: auto !important;
    margin-right: auto !important;
}


.julia-venues {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 17px;
}


.julia-venue {
    padding: 32px 20px;

    background: rgba(255,255,255,.48);

    border: 1px solid #e4d9e3;

    border-radius: 8px;
}


.julia-venue__name {
    margin-bottom: 8px;

    font-family: 'Cormorant Garamond', serif;

    font-size: 26px;
    font-weight: 500;
    line-height: 1.1;

    color: #24211f;
}


.julia-venue__place {
    font-family: 'Tenor Sans', sans-serif;

    font-size: 10px;
    line-height: 1.55;

    letter-spacing: .1em;

    text-transform: uppercase;

    color: #8c837b;
}


/* =========================================================
   JULIA STAGE IMAGE
========================================================= */

.julia-stage {
    position: relative;

    display: flex;
    align-items: flex-end;

    width: 100%;

    height: 610px;

    overflow: hidden;

    background: #06070b;
}


.julia-stage__image {
    position: absolute !important;
    inset: 0;

    z-index: 0;

    display: block !important;

    width: 100% !important;
    height: 100% !important;
    max-width: none !important;

    margin: 0 !important;

    object-fit: cover;
    object-position: center;
}


.julia-stage__overlay {
    position: absolute;
    inset: 0;

    z-index: 1;

    background: linear-gradient(
        0deg,
        rgba(4,5,9,.94) 0%,
        rgba(4,5,9,.58) 42%,
        rgba(4,5,9,.08) 100%
    );
}


.julia-stage__inner {
    position: relative;

    z-index: 2;

    width: min(1180px, calc(100% - 64px));

    margin: 0 auto;

    padding: 95px 0;
}


.julia-stage__text {
    width: 100%;
    max-width: 840px;

    margin: 0 !important;

    font-family: 'Cormorant Garamond', serif !important;

    font-size: clamp(43px, 5vw, 65px) !important;
    font-weight: 400 !important;
    line-height: 1.04 !important;

    letter-spacing: -.025em;

    color: #ffffff !important;
}


/* =========================================================
   JULIA REVIEWS
========================================================= */

.julia-reviews-section {
    text-align: center;
}


.julia-reviews {
    width: 100%;
    max-width: 700px;

    margin: 0 auto;
}


.julia-reviews__number {
    margin-bottom: 6px;

    font-family: 'Cormorant Garamond', serif;

    font-size: clamp(78px, 9vw, 112px);
    font-weight: 500;
    line-height: .9;

    color: #24211f;
}


.julia-reviews__stars {
    margin-bottom: 20px;

    font-size: 18px;

    letter-spacing: 5px;

    color: #ec4899;
}


.julia-reviews__text {
    max-width: 600px;

    margin-left: auto !important;
    margin-right: auto !important;
}


/* =========================================================
   JULIA FINAL CTA
========================================================= */

.julia-cta-section {
    width: 100%;
    max-width: 1180px;

    margin: 0 auto;

    padding: 0 24px 100px;

    box-sizing: border-box;

    background: #fbf8fb;
}


.julia-cta {
    width: 100%;

    padding: 58px 48px;

    text-align: center;

    border-top: 1px solid #e8dfe7;
    border-bottom: 1px solid #e8dfe7;
}


.julia-cta__eyebrow {
    margin: 0 0 14px;

    font-family: 'Tenor Sans', sans-serif;

    font-size: 11px;
    line-height: 1.4;

    letter-spacing: .18em;

    text-transform: uppercase;

    color: #ec4899 !important;
}


.julia-cta h2 {
    width: 100%;
    max-width: 760px;

    margin: 0 auto 20px !important;

    font-family: 'Cormorant Garamond', serif !important;

    font-size: clamp(40px, 4.5vw, 54px) !important;
    font-weight: 500 !important;
    line-height: 1.05 !important;

    color: #24211f !important;
}


.julia-cta__text {
    width: 100%;
    max-width: 620px;

    margin: 0 auto 30px;

    font-family: 'Tenor Sans', sans-serif;

    font-size: 15px;
    line-height: 1.8;

    color: #625d58 !important;
}


/* =========================================================
   SMALL DESKTOP
========================================================= */

@media screen and (max-width: 1000px) {

    .show-hero {
        height: 650px !important;
        min-height: 650px !important;
        max-height: 650px !important;
    }


    .show-hero::after {
        height: 100px;
    }


    .show-hero__inner {
        width: calc(100% - 44px);
        height: 100%;

        padding: 185px 0 100px;

        box-sizing: border-box;
    }


    .show-hero__content {
        max-width: 580px;
    }


    .show-hero h1 {
        max-width: 580px;

        font-size: clamp(48px, 7.5vw, 64px) !important;
    }


    .show-hero__lead {
        max-width: 530px;

        font-size: 17px !important;
    }


    .show-content__inner {
        max-width: 850px;
    }


    .show-audience-row {
        gap: 34px !important;
    }


    .show-audience-row > .show-audience {
        width: calc(50% - 17px) !important;
        max-width: calc(50% - 17px) !important;
    }


    .show-audience__image {
        height: 300px !important;
    }


    .arrangor-page .arrangor-intro-split,
    .privat-page .privat-intro-split {
        gap: 38px !important;
    }


    .julia-split {
        gap: 45px;
    }


    .julia-aoiba-layout {
        gap: 45px;
    }


    .julia-aoiba-logo {
        flex-basis: 125px;

        width: 125px;
    }


    .julia-aoiba-logo img {
        max-width: 95px !important;
        max-height: 95px !important;
    }


    .julia-venues {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================================
   TABLET
========================================================= */

@media screen and (max-width: 820px) {

    .show-audience-row {
        flex-direction: column !important;

        gap: 70px !important;

        width: 100% !important;
        max-width: 660px !important;

        margin-left: auto !important;
        margin-right: auto !important;
    }


    .show-audience-row > .show-audience {
        width: 100% !important;
        max-width: 100% !important;
    }


    .show-audience__image {
        height: 390px !important;
    }


    .arrangor-page .arrangor-intro-split,
    .privat-page .privat-intro-split,
    .julia-split {
        display: flex !important;

        flex-direction: column !important;

        width: 100% !important;

        gap: 30px !important;
    }


    .julia-split__text,
    .julia-split__media {
        flex: 0 0 100%;

        width: 100%;
        max-width: 100%;
    }


    .julia-split__image,
    .julia-split__image--children {
        width: 100% !important;

        height: auto !important;

        aspect-ratio: 4 / 3;
    }


    /* KEEP AOIBA SIDE BY SIDE ON TABLET */

    .julia-aoiba-layout {
        gap: 35px;
    }


    .julia-aoiba-logo {
        flex: 0 0 105px;

        width: 105px;
    }


    .julia-aoiba-logo img {
        max-width: 85px !important;
        max-height: 85px !important;
    }


    .julia-facts {
        grid-template-columns: repeat(2, 1fr);
    }


    .julia-fact:nth-child(2) {
        border-right: 0;
    }


    .julia-fact:nth-child(-n+2) {
        border-bottom: 1px solid #e8dfe7;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media screen and (max-width: 600px) {

    .show-hero {
        height: 650px !important;
        min-height: 650px !important;
        max-height: 650px !important;
    }


    .show-hero::after {
        height: 60px;
    }


    .show-hero__image {
        object-position: 60% center;
    }


    .show-hero__overlay {
        background: linear-gradient(
            180deg,
            rgba(4,5,9,.12) 0%,
            rgba(4,5,9,.25) 32%,
            rgba(4,5,9,.64) 60%,
            rgba(4,5,9,.95) 84%,
            rgba(4,5,9,.99) 100%
        );
    }


    .show-hero__inner {
        width: calc(100% - 34px);
        height: 100%;

        padding: 200px 0 80px;

        box-sizing: border-box;
    }


    .show-hero__eyebrow {
        margin-bottom: 14px !important;

        font-size: 15px !important;

        letter-spacing: 2.4px !important;
    }


    .show-hero h1 {
        max-width: 100%;

        margin-bottom: 20px !important;

        font-size: clamp(42px, 11.5vw, 54px) !important;

        line-height: 1 !important;
    }


    .show-hero__lead {
        width: 100%;
        max-width: 100%;

        font-size: 15px !important;
        line-height: 1.55 !important;

        letter-spacing: 0 !important;
        word-break: normal !important;
        overflow-wrap: normal !important;
        hyphens: none !important;
        text-wrap: pretty;
    }


    .show-home-btn {
        min-height: 46px !important;

        padding: 0 26px !important;
    }


    .show-content {
        padding: 48px 20px 55px;
    }


    .show-content h2,
    .julia-page .show-content h2 {
        font-size: 40px !important;
    }


    .show-content__intro {
        margin-bottom: 38px;
    }


    .show-audience-row {
        gap: 38px !important;
    }


    .show-audience__heading h3 {
        font-size: 40px !important;
    }


    .show-audience__image {
        height: auto !important;

        aspect-ratio: 4 / 3;
    }


    .julia-intro-section {
        padding-top: 68px !important;
    }


    .julia-page .show-content p:not(.show-content__eyebrow) {
        font-size: 14px;

        line-height: 1.8;
    }


    .julia-facts-section {
        padding: 0 20px 68px;
    }


    .julia-fact {
        padding: 24px 12px;
    }


    .julia-fact__title {
        font-size: 24px;
    }


    .julia-fact__text {
        font-size: 9px;
    }


    /* =====================================================
       AOIBA MOBILE
    ====================================================== */

    .julia-aoiba-layout {
        flex-direction: column;

        align-items: flex-start;

        gap: 26px;
    }


    .julia-aoiba-logo {
        flex: none;

        width: auto;

        justify-content: flex-start;
    }


    .julia-aoiba-logo img {
        width: auto !important;

        max-width: 75px !important;
        max-height: 75px !important;
    }


    .julia-venues {
        grid-template-columns: 1fr;

        gap: 12px;
    }


    .julia-stage {
        height: 500px;
    }


    .julia-stage__inner {
        width: calc(100% - 40px);

        padding: 68px 0;
    }


    .julia-stage__text {
        font-size: 42px !important;
    }


    .julia-cta-section {
        padding: 0 20px 72px;
    }


    .julia-cta {
        padding: 44px 10px;
    }


    .julia-cta h2 {
        font-size: 40px !important;
    }


    .julia-cta__text {
        font-size: 14px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .show-home-btn {
        animation: none;
    }


    .show-home-btn,
    .show-audience__image,
    .arrangor-intro-split__image,
    .privat-intro-split__image,
    .arrangor-cta__button,
    .privat-cta__button,
    .julia-cta__button {
        transition: none;
    }

}
/* =========================================================
   OM JULIA – COMPACT SPACING + CREDENTIALS
========================================================= */


/* ---------------------------------------------------------
   TIGHTER SECTION SPACING
--------------------------------------------------------- */

.julia-page .julia-intro-section,
.julia-page .julia-soft-section,
.julia-page .julia-children-section,
.julia-page .julia-norway-section,
.julia-page .julia-reviews-section {
    padding-top: 68px !important;
    padding-bottom: 68px !important;
}


/* ---------------------------------------------------------
   CREDENTIALS – CLEAN 2 x 2 GRID
--------------------------------------------------------- */

.julia-page .julia-credentials {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 34px;
    row-gap: 0;

    margin-top: 28px;
    width: 100%;
}


.julia-page .julia-credential {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 58px;
    padding: 14px 8px 14px 22px;

    border-bottom: 1px solid rgba(36, 33, 31, 0.10);

    font-family: "Tenor Sans", sans-serif;
    font-size: 13px;
    line-height: 1.5;
    color: #625d58;
}


/* Pink dot */

.julia-page .julia-credential > span {
    position: absolute;
    left: 0;
    top: 50%;

    width: 6px;
    height: 6px;

    border-radius: 50%;
    background: #ec4899;

    transform: translateY(-50%);
}


/* ---------------------------------------------------------
   REDUCE EXTRA GAP AROUND TEXT/BLOCKS
--------------------------------------------------------- */

.julia-page .julia-split__text > p:last-of-type {
    margin-bottom: 0;
}

.julia-page .julia-credentials + * {
    margin-top: 0;
}


/* ---------------------------------------------------------
   MOBILE
--------------------------------------------------------- */

@media (max-width: 700px) {

    .julia-page .julia-intro-section,
    .julia-page .julia-soft-section,
    .julia-page .julia-children-section,
    .julia-page .julia-norway-section,
    .julia-page .julia-reviews-section {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }


    .julia-page .julia-credentials {
        grid-template-columns: 1fr;
        column-gap: 0;
        margin-top: 22px;
    }


    .julia-page .julia-credential {
        min-height: 0;
        padding: 13px 6px 13px 20px;

        font-size: 13px;
        line-height: 1.45;
    }

}
/* =========================================================
   OM JULIA – MINDRE AVSTAND MELLOM SEKSJONENE
========================================================= */

.julia-page .julia-intro-section,
.julia-page .julia-soft-section,
.julia-page .julia-children-section,
.julia-page .julia-norway-section,
.julia-page .julia-reviews-section {
    padding-top: 45px !important;
    padding-bottom: 45px !important;
}


/* Mobile */

@media (max-width: 700px) {

    .julia-page .julia-intro-section,
    .julia-page .julia-soft-section,
    .julia-page .julia-children-section,
    .julia-page .julia-norway-section,
    .julia-page .julia-reviews-section {
        padding-top: 34px !important;
        padding-bottom: 34px !important;
    }

}
/* =========================================
   BOOKING + FOOTER – CLEANER TEXT FONT
========================================= */

#booking-section input,
#booking-section select,
#booking-section textarea,
#booking-section label,
#booking-section p,
footer,
footer a,
footer p,
footer span {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
}
/* =========================================
   SMALL SECTION LABELS – LARGER + STRONGER
========================================= */

.show-content__eyebrow,
.show-audience__label,
.arrangor-page .arrangor-cta__eyebrow,
.privat-page .privat-cta__eyebrow,
.julia-cta__eyebrow,
.birthday-eyebrow,
.partners-eyebrow {
    font-size: 14px !important;
    font-weight: 600 !important;
}
/* =========================================================
   GALLERY LIGHTBOX – BOBLESHOW STYLE
========================================================= */

/* Hele bildeområdet */
.glightbox-container .gslide-image img {
    border-radius: 24px 24px 0 0 !important;
}

/* Tekstboksen under bildet */
.glightbox-container .gslide-description {
    background: rgba(255, 255, 255, 0.96) !important;

    border-radius: 0 0 24px 24px !important;

    overflow: hidden !important;
}

/* Innhold i tekstboksen */
.glightbox-container .gdesc-inner {
    padding: 18px 22px 20px !important;

    text-align: center !important;
}

/* Boblemagi / eventnavn */
.glightbox-container .gslide-title {
    margin: 0 0 7px !important;

    font-family: 'Cormorant Garamond', serif !important;
    font-size: 25px !important;
    font-weight: 600 !important;
    line-height: 1.15 !important;

    text-align: center !important;

    color: #24211f !important;
}

/* Galleri / Arrangør / Privat */
.glightbox-container .gslide-desc {
    margin: 0 !important;

    font-family: 'Tenor Sans', sans-serif !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;

    letter-spacing: 2px !important;
    text-transform: uppercase !important;

    text-align: center !important;

    color: #ec4899 !important;
}
/* FJERN HORISONTALE LINJER RUNDT FACT-BOXENE */

.julia-facts-section,
.julia-facts {
    border: none !important;
    border-top: 0 !important;
    border-bottom: 0 !important;
}

.julia-facts::before,
.julia-facts::after,
.julia-facts-section::before,
.julia-facts-section::after {
    content: none !important;
    display: none !important;
    border: 0 !important;
}
/* =====================================================
   MOBILE – FORCE 5TH FACT BOX TO CENTER
===================================================== */

@media (max-width: 520px) {

    .julia-facts {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
    }

    .julia-facts > .julia-fact:nth-child(5) {
        grid-column: 1 / 3 !important;
        width: calc((100% - 10px) / 2) !important;
        max-width: none !important;
        justify-self: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}
/* =========================================================
   PARTNERS – CLEANER / SMALLER LOGO CARDS
========================================================= */

.partners-logos {
    gap: 14px;
}

.partner-logo-card {
    min-height: 94px;
    padding: 15px 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 18px;
}

.partner-logo-card img {
    display: block;

    width: auto;
    height: auto;

    max-width: 135px;
    max-height: 48px;

    object-fit: contain;
}


/* MOBILE */

@media (max-width: 640px) {

    .partners-logos {
        gap: 10px;
    }

    .partner-logo-card {
        min-height: 82px;
        padding: 12px 14px;
        border-radius: 16px;
    }

    .partner-logo-card img {
        max-width: 115px;
        max-height: 42px;
    }
}