/* ==========================================================================
   THEME STYLE SHEET
   Theme: Matei Bogdan Zero
   ========================================================================== */

/* ==========================================================================
   TABLE OF CONTENTS
   ==========================================================================
   1. FONTS & ROOT VARIABLES
   2. RESET & BASE STYLING
   3. CORE LAYOUT & SIDEBAR NAVIGATION
   4. HOMEPAGE SPLIT SLIDER
   5. PORTFOLIO GALLERY SYSTEMS
   6. JOURNAL & BLOG POST TEMPLATES
   7. CUSTOM ALBUM SHORTCODE STYLES
   8. LIGHT MODE STYLE OVERRIDES
   ========================================================================== */

/* ==========================================================================
   1. FONTS & ROOT VARIABLES
   ========================================================================== */

:root {
    --font-heading: 'Tenor Sans', sans-serif;
    --font-subtitle: 'Roboto', sans-serif;
    --font-paragraph: 'Roboto', sans-serif;
    --font-button: 'Tenor Sans', sans-serif;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --color-bg-dark: #000000;
    --color-bg-light: #ffffff;
    --color-text-dark: #ffffff;
    --color-text-light: #000000;
    --color-accent-gray: #888888;
}

/* Apply Font Families globally */
h1, h2, h3, h4, h5, h6,
.site-title-fancy, 
.logo-top, 
.section-title, 
.portfolio-list a, 
.secondary-links a, 
.page-title, 
.entry-title, 
.mobile-section-title, 
.mobile-nav-link, 
.mobile-logo-title, 
.mobile-studio-list a,
.mobile-studio-list li a,
.mobile-menu-toggle {
    font-family: var(--font-heading) !important;
}

.mobile-logo-subtitle,
.slide-meta,
.slider-progress-counter {
    font-family: var(--font-subtitle) !important;
}

html, body, p, .address-text, .mobile-address-text, .entry-content, .desktop-copyright-text, .mobile-copyright-text {
    font-family: var(--font-paragraph) !important;
}

button, .button, input[type='submit'], .slider-navigation-controls {
    font-family: var(--font-button) !important;
}

/* ==========================================================================
   2. RESET & BASE STYLING
   ========================================================================== */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: var(--color-bg-dark);
    color: var(--color-text-dark);
    transition: background-color 0.3s ease, color 0.3s ease;
}

* {
    box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
}

/* Custom Scrollbar Styling */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: #000000;
}

::-webkit-scrollbar-thumb {
    background: #333333;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555555;
}

html, body {
    scrollbar-width: thin;
    scrollbar-color: #333333 #000000;
}

@media (max-width: 991px) {
    html, body {
        overflow: visible;
        height: auto;
    }
}

a {
    color: #000000;
    font-weight: 500;
}

/* ==========================================================================
   3. CORE LAYOUT & SIDEBAR NAVIGATION
   ========================================================================== */
/* Primary Layout Wrap */
.site-wrapper {
    display: flex;
    flex-direction: row-reverse;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background-color: var(--color-bg-dark);
}

body.menu-position-left .site-wrapper {
    flex-direction: row;
}

/* Sidebar Styling */
.theme-sidebar {
    width: 320px;
    min-width: 320px;
    max-width: 320px;
    height: 100%;
    background-color: var(--color-bg-dark);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 60px 45px;
    z-index: 100;
    transition: width 0.3s ease;
}

.sidebar-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    width: 100%;
}

/* Elegant Logo Typography */
.site-branding-logo {
    margin-bottom: 50px;
}

.site-branding-logo a {
    text-decoration: none;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.logo-top {
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 5px;
    margin-bottom: 2px;
    color: var(--color-accent-gray);
}

.site-title-fancy {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 0.95;
    margin: 0;
    text-transform: uppercase;
    color: #ffffff;
}

.logo-bottom {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 7px;
    margin-top: 5px;
    color: #ffffff;
    text-indent: 7px;
}

/* Navigation Menu */
.main-navigation {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 45px;
}

.nav-section {
    display: flex;
    flex-direction: column;
}

.section-title {
    letter-spacing: 0px;
    margin: 0;
    font-size: 14px !important;
    font-family: var(--font-subtitle), 'Roboto', sans-serif !important;
    font-weight: 300 !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
    margin-bottom: 10px;
}

/* Portfolio list */
.portfolio-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.portfolio-list li a {
    color: var(--color-accent-gray);
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
    font-size: 21px;
    font-weight: 600;
    color: #ffffff !important;
    transition: opacity 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.portfolio-list li a:hover {
    color: #ffffff;
    padding-left: 0px;
}

/* Polylang Language Switcher Styling */
.language-section h2 {
    margin-top: 80px;
    font-size: 12px;
}

.language-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-items: center;
}

.language-list li {
    display: inline-block;
}

.language-list li a {
    color: var(--color-accent-gray);
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.language-list li.current-lang a {
    color: #ffffff;
    font-weight: 700;
}

.language-list li a:hover {
    color: #ffffff;
}

/* Address Section */
.address-text {
    color: var(--color-accent-gray);
    font-size: 11px;
    line-height: 1.8;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin: 0;
    font-weight: 400;
}

/* Secondary Links */
.secondary-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.secondary-links li a,
.secondary-links a {
    font-size: 21px;
    font-weight: 600;
    color: #ffffff !important;
    text-decoration: none;
    transition: opacity 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.secondary-links li a:hover,
.secondary-links a:hover {
    opacity: 0.7;
}

/* Sidebar Social Icons Footer */
.sidebar-footer {
    margin-top: 40px;
}

.social-icons {
    display: flex;
    gap: 22px;
    justify-content: flex-start;
}

.social-icons a {
    color: var(--color-accent-gray);
    font-size: 15px;
    transition: color 0.3s ease, transform 0.3s ease;
    padding: 5px;
}

.social-icons a:hover {
    color: #000000;
    transform: translateY(-2px);
}

/* Main Content Area */
.site-main-content {
    flex-grow: 1;
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: block;
    background-color: var(--color-bg-dark);
}

/* Mobile Header & Drawer */
.mobile-header {
    display: none;
}

.mobile-menu-drawer {
    display: none;
}

.mobile-logo-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #ffffff;
}

.mobile-logo-title {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1.1;
}

.mobile-logo-subtitle {
    font-size: 8px;
    letter-spacing: 3px;
    text-indent: 3px;
    color: var(--color-accent-gray);
    margin-top: 2px;
    text-transform: uppercase;
}

/* Elegant Hamburger Menu Button */
.hamburger-button {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 22px;
    height: 14px;
    padding: 0;
    z-index: 110;
    position: relative;
}

.hamburger-button .bar {
    width: 100%;
    height: 1.5px;
    background-color: #ffffff;
    border-radius: 1px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease;
}

.hamburger-button.active .bar-1 {
    transform: translateY(6px) rotate(45deg);
}

.hamburger-button.active .bar-2 {
    opacity: 0;
}

.hamburger-button.active .bar-3 {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* Responsive Mobile Layouts */
@media (max-width: 991px) {
    .site-wrapper,
    body.menu-position-left .site-wrapper {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
        overflow: visible;
        width: 100%;
    }
    
    .theme-sidebar {
        display: none;
    }
    
    .mobile-header {
        display: flex;
        width: 100%;
        height: 80px;
        background-color: #000000;
        align-items: center;
        justify-content: space-between;
        padding: 0 20px;
        box-sizing: border-box;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 9999;
    }
    
    .mobile-menu-drawer {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        z-index: 99;
        padding: 40px 30px;
        box-sizing: border-box;
        overflow-y: auto;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-15px);
        transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }
    
    .mobile-menu-drawer.active {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }
    
    .mobile-nav-content {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    
    .mobile-nav-section {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    .mobile-section-title {
        margin: 0;
        font-size: 16px !important;
        font-family: var(--font-subtitle), 'Roboto', sans-serif !important;
        font-weight: 300 !important;
        text-decoration: none !important;
        transition: color 0.3s ease !important;
        margin-top: 40px;
    }
    
    .mobile-portfolio-list, .mobile-studio-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    .mobile-nav-link, .mobile-studio-list li a, .mobile-studio-list a {
        font-size: 24px;
        color: #ffffff !important;
        display: inline-block;
        font-weight: 600;
        text-decoration: none;
        transition: opacity 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 2px;
    }
    
    .mobile-nav-link:hover, .mobile-nav-link:active, .mobile-studio-list li a:hover, .mobile-studio-list li a:active, .mobile-studio-list a:hover, .mobile-studio-list a:active {
        color: var(--color-accent-gray);
        padding-left: 4px;
    }
    
    .mobile-address-text {
        font-size: 13px;
        line-height: 1.6;
        color: var(--color-accent-gray);
        margin: 0;
        letter-spacing: 0.5px;
    }
    
    .mobile-menu-footer {
        margin-top: 40px;
        border-top: 1px solid #111111;
        padding-top: 20px;
    }
    
    .mobile-social-icons {
        display: flex;
        gap: 20px;
        margin: 0 0 15px 0;
    }
    
    .mobile-social-icons a {
        color: var(--color-accent-gray);
        font-size: 20px;
        transition: color 0.2s ease;
        padding: 5px;
    }
    
    .mobile-social-icons a:hover, .mobile-social-icons a:active {
        color: #000000;
    }
    
    .sidebar-inner {
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .site-branding-logo {
        margin-bottom: 0;
    }
    
    .main-navigation {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 15px;
        flex-grow: 0;
    }
    
    .nav-section {
        display: none;
    }
    
    .nav-section.links-section {
        display: block;
    }
    
    .secondary-links {
        flex-direction: row;
        gap: 15px;
    }
    
    .sidebar-footer {
        margin-top: 0;
    }
    
    .site-main-content {
        flex-grow: 1;
        width: 100%;
        height: auto;
        min-height: calc(100vh - 60px);
        display: block;
        background-color: var(--color-bg-dark);
        overflow: visible;
        padding-top: 80px;
        box-sizing: border-box;
    }
    
    /* Mobile Language Switcher */
    .mobile-language-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: row;
        gap: 20px;
    }
    
    .mobile-language-list li {
        display: inline-block;
    }
    
    .mobile-language-list li a {
        font-size: 18px;
        color: var(--color-accent-gray) !important;
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 2px;
        transition: color 0.2s ease;
    }
    
    .mobile-language-list li.current-lang a {
        color: #ffffff !important;
        font-weight: 700;
    }
    
    .mobile-language-list li a:hover, 
    .mobile-language-list li a:active {
        color: #ffffff !important;
    }
}

@media (max-width: 600px) {
    .sidebar-inner {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .main-navigation {
        display: none;
    }
}

/* ==========================================================================
   4. HOMEPAGE SPLIT SLIDER
   ========================================================================== */
.slider-master-container {
    flex-grow: 1;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.split-slider-wrapper {
    position: relative;
    display: flex;
    overflow: hidden;
    margin: 0;
}

.split-slider-wrapper.ratio-16-9 {
    width: min(calc(100vh * 12 / 9), calc(100vw - max(320px, min(500px, calc(100vw - calc(100vh * 12 / 9))))));
    height: calc(min(calc(100vh * 12 / 9), calc(100vw - max(320px, min(500px, calc(100vw - calc(100vh * 12 / 9)))))) * 9 / 12);
}

.split-slider-wrapper.fit-screen {
    width: 100%;
    height: 100%;
}

.split-slider-column {
    width: 50%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.slider-track {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    transition: transform 1.1s cubic-bezier(0.77, 0, 0.175, 1);
    will-change: transform;
}

.split-slide-item {
    width: 100%;
    height: 100%;
    flex: 0 0 100%;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.slide-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

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

/* High-Fidelity Transition Parallax Layers */
.parallax-layers-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #050505;
}

.parallax-layer {
    position: absolute;
    top: -15%;
    left: 0;
    width: 100%;
    height: 130%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 1.1s cubic-bezier(0.77, 0, 0.175, 1);
    will-change: transform;
}

.parallax-layer.layer-contained {
    top: 0 !important;
    height: 100% !important;
}

.layer-bg {
    z-index: 1;
}

.layer-subject {
    z-index: 2;
}

.layer-fg {
    z-index: 3;
    pointer-events: none;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0) 100%);
    pointer-events: none;
    transition: background 0.5s ease;
}

/* Navigation Controls & Dot Indicators */
.slider-navigation-controls {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 10;
}

.slider-nav-btn {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.slider-nav-btn:hover {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
    transform: scale(1.05);
}

.slider-dots-container {
    position: absolute;
    right: 40px;
    bottom: 50px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 10;
}

.slider-dot {
    background: rgba(255, 255, 255, 0.25);
    border: none;
    width: 16px;
    height: 2px;
    padding: 0;
    cursor: pointer;
    transition: all 0.4s ease;
}

.slider-dot.active {
    background: #ffffff;
    width: 32px;
}

/* Mobile Single-Image Slider Component */
.mobile-single-slider-wrapper {
    display: none !important;
}

@media (max-width: 768px) {
    .has-mobile-single-slider .split-slider-wrapper {
        display: none !important;
    }
    
    .has-mobile-single-slider .mobile-single-slider-wrapper {
        display: flex !important;
        position: relative;
        overflow: hidden;
        margin: 0;
        width: 100%;
        height: 100%;
    }
    
    .has-mobile-single-slider .mobile-single-slider-wrapper.ratio-16-9 {
        width: min(100vw, calc((100vh - 90px) * 9 / 16));
        height: min(calc(100vw * 16 / 9), calc(100vh - 90px));
        margin: auto;
    }
    
    .has-mobile-single-slider .mobile-single-slider-wrapper.fit-screen {
        width: 100%;
        height: calc(100vh - 60px);
        margin: 0;
    }
    
    .mobile-slider-track {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 100%;
        transition: transform 1.1s cubic-bezier(0.25, 1, 0.5, 1);
    }
    
    .mobile-slide-item {
        width: 100%;
        height: 100%;
        flex-shrink: 0;
        position: relative;
        overflow: hidden;
    }
    
    .mobile-slide-item .slide-link {
        display: block;
        width: 100%;
        height: 100%;
        position: relative;
    }
    
    .mobile-slide-item .slide-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: scale(1.15);
        transition: transform 1.1s cubic-bezier(0.25, 1, 0.5, 1);
        will-change: transform;
    }
}

@media (max-width: 991px) {
    .split-slider-wrapper.ratio-16-9 {
        width: min(100vw, calc((100vh - 90px) * 12 / 9));
        height: min(75vw, calc(100vh - 90px));
        margin: auto;
    }
    
    .split-slider-wrapper.fit-screen {
        width: 100%;
        height: calc(100vh - 60px);
        margin: 0;
    }
    
    .split-slide-item {
        height: 100%;
    }
}

@media (max-width: 600px) {
    .slider-dots-container {
        right: 20px;
        bottom: 20px;
    }
    
    .split-slider-column {
        width: 50%;
    }
}

/* ==========================================================================
   5. PORTFOLIO GALLERY SYSTEMS
   ========================================================================== */
/* Horizontal Scroll Gallery Container */
.gallery-horizontal-scroll-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    height: 100%;
    width: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    background-color: #000;
    scroll-behavior: smooth;
}

/* Gallery Cover Column */
.gallery-cover-column {
    height: 100vh;
    width: calc(100vh * 9 / 16);
    min-width: calc(100vh * 9 / 16);
    flex-shrink: 0;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 10;
    border-right: 1px solid #151515;
}

.gallery-cover-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.gallery-cover-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 60px 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    color: #fff;
}

.gallery-title {
    font-size: 42px;
    font-weight: 600;
    margin: 0 0 15px 0;
    line-height: 1.1;
    text-transform: uppercase;
}

.gallery-description {
    font-size: 14px;
    color: #ccc;
    font-weight: 300;
    line-height: 1.6;
    margin: 0;
    max-width: 90%;
}

/* Vertical Title Column (For layouts without Cover) */
.gallery-vertical-title-column {
    position: sticky;
    top: 0;
    right: 0;
    height: 100vh;
    width: 90px;
    min-width: 90px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-left: 1px solid #151515;
    background-color: #000;
    z-index: 10;
    padding: 70px 0;
}

body.menu-position-left .gallery-vertical-title-column {
    left: 0;
    right: auto;
    border-left: none;
}

.vertical-title-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    width: 100%;
}

.vertical-back-btn {
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    transition: color 0.3s;
    position: absolute;
    top: 40px;
}

.vertical-back-btn:hover {
    color: #888;
}

.vertical-title-text-group {
    margin: auto 0 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.vertical-album-subtitle {
    font-size: 11px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #cccccc !important;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    white-space: nowrap;
    margin-bottom: 20px;
    font-family: var(--font-subtitle) !important;
}

.vertical-gallery-title {
    font-size: 28px;
    font-weight: 400;
    margin: auto 0 0 0;
    text-transform: uppercase;
    white-space: nowrap;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    color: #fff;
}

/* Album Info Column */
.album-info-column {
    height: 100vh;
    width: 300px;
    min-width: 300px;
    flex-shrink: 0;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 10;
    background-color: #050505;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 40px;
}

.album-info-inner {
    width: 100%;
}

.album-subtitle {
    font-size: clamp(14px, 1.8vw, 18px);
    font-weight: 300;
    letter-spacing: 2px;
    color: #cccccc !important;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-family: var(--font-subtitle) !important;
    display: block;
}

.album-title {
    font-size: 36px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.album-description {
    font-size: 14px;
    color: #aaa;
    line-height: 1.6;
    margin: 0 0 40px 0;
}

.album-back-link a {
    color: #fff;
    text-decoration: none;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 1px solid #333;
    padding-bottom: 5px;
    transition: border-color 0.3s;
}

.album-back-link a:hover {
    border-color: #fff;
}

/* Masonry Columns for Albums & Photos */
.gallery-albums-masonry-wrapper {
    flex-grow: 1;
    padding: 40px;
    display: block;
    overflow: hidden;
}

.gallery-albums-masonry-inner {
    display: flex;
    gap: 30px;
    width: 100%;
}

.masonry-column-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    min-width: 0;
}

.masonry-album-item {
    display: block;
    width: 100%;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
    background: #111;
}

.masonry-album-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1), filter 0.5s;
    filter: brightness(1);
}

.masonry-album-item:hover img,
.masonry-album-item.focused img {
    transform: scale(1.05);
    filter: brightness(1);
}

.album-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    pointer-events: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s, transform 0.4s;
}

.masonry-album-item:hover .album-item-overlay,
.masonry-album-item.focused .album-item-overlay {
    opacity: 1;
    transform: translateY(0);
}

.album-item-subtitle {
    font-size: 11px;
    color: #cccccc !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 4px 0;
    font-weight: 300;
    font-family: var(--font-subtitle) !important;
    display: block;
}

.album-item-title {
    font-size: 22px;
    color: #fff;
    margin: 0 0 5px 0;
    font-weight: 600;
}

.album-item-excerpt {
    font-size: 12px;
    color: #bbb;
    margin: 0;
    line-height: 1.4;
}

/* Photo Specific Item Styles */
.masonry-photo-item {
    cursor: pointer;
}

.masonry-photo-item:hover img {
    filter: brightness(1);
}

/* Photo Lightbox Popup System */
.mb-photo-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000000;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.mb-photo-lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.mb-lightbox-img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    box-shadow: none;
}

.mb-lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    line-height: 1;
    transition: transform 0.3s;
}

.mb-lightbox-close:hover {
    transform: scale(1.1);
}

.mb-lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 44px;
    font-weight: 300;
    cursor: pointer;
    user-select: none;
    transition: opacity 0.3s, transform 0.3s;
    opacity: 0.5;
    z-index: 10000;
    padding: 15px;
}

.mb-lightbox-arrow:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.15);
}

.mb-lightbox-prev {
    left: 40px;
}

.mb-lightbox-next {
    right: 40px;
}

/* Responsive Gallery Adjustments */
@media (max-width: 991px) {
    .gallery-horizontal-scroll-container {
        flex-direction: column;
        overflow-y: visible;
        overflow-x: hidden;
        height: auto;
        min-height: calc(100vh - 60px);
    }

    .gallery-cover-column {
        width: 100%;
        min-width: 100%;
        height: 60vh;
        position: relative;
    }

    .gallery-vertical-title-column {
        width: 100%;
        height: auto;
        min-width: 100%;
        position: relative;
        border-left: none;
        padding: 20px 20px;
        order: -1;
    }

    body.menu-position-left .gallery-vertical-title-column {
        border-right: none;
    }

    .vertical-title-wrapper {
        flex-direction: row;
        padding: 0;
    }

    .vertical-back-btn {
        position: static;
        margin-right: 20px;
        margin-bottom: 0;
    }

    .vertical-title-text-group {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin: 0;
    }

    .vertical-album-subtitle {
        writing-mode: horizontal-tb;
        transform: none;
        white-space: normal;
        margin-bottom: 5px;
        text-align: center;
    }

    .vertical-gallery-title {
        writing-mode: horizontal-tb;
        transform: none;
        white-space: normal;
        text-align: center;
        font-size: 28px;
        width: 100%;
    }

    .album-info-column {
        width: 100%;
        min-width: 100%;
        height: auto;
        position: relative;
        padding: 40px 20px;
    }

    .gallery-albums-masonry-wrapper {
        height: auto;
        padding: 20px;
    }

    .gallery-albums-masonry-inner {
        height: auto;
        gap: 20px;
    }

    .masonry-column-container {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .mb-lightbox-arrow {
        font-size: 32px;
        padding: 10px;
    }
    .mb-lightbox-prev {
        left: 20px;
    }
    .mb-lightbox-next {
        right: 20px;
    }
}

@media (max-width: 600px) {
    /* Responsive layout column redistribution handled dynamically in theme.js */
}

/* ==========================================================================
   6. JOURNAL & BLOG POST TEMPLATES
   ========================================================================== */
.blog-archive-wrapper {
    width: 100%;
    padding: 0;
    display: flex;
    flex-direction: row;
    height: 100vh;
    overflow: hidden;
}

.blog-list-scroll-wrapper {
    flex: 1;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    background-color: #000;
}

.blog-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    padding-bottom: 40px;
}

.blog-post-card {
    position: relative;
    width: calc(100% - 80px);
    height: 80vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 40px 0 40px;
}

.blog-post-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.blog-post-bg:hover,
.blog-post-card:hover .blog-post-bg {
    transform: scale(1.03);
}

.blog-post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: background 0.6s ease;
    pointer-events: none;
    background: rgba(0, 0, 0, 0.4) !important;
}

.blog-post-card:hover .blog-post-overlay {
    background: rgba(0, 0, 0, 0.2) !important;
}

.entry-content-layer {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px;
    pointer-events: none;
}

.blog-post-card .entry-meta {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    color: #ffffff !important;
    opacity: 0.8 !important;
}

.blog-post-card .entry-subtitle {
    font-size: clamp(14px, 1.8vw, 18px);
    font-weight: 300;
    letter-spacing: 3px;
    margin-top: -5px;
    margin-bottom: 20px;
    color: #cccccc !important;
}

.blog-post-card .entry-title {
    font-size: clamp(32px, 5vw, 50px);
    font-weight: 400;
    margin: 0 0 20px;
}

.blog-post-card .entry-title a {
    text-decoration: none;
    pointer-events: auto;
    color: #ffffff !important;
}

.blog-post-card .entry-summary {
    font-size: 18px;
    line-height: 1.6;
    max-width: 740px;
    margin: 0 auto;
    color: #eeeeee !important;
    opacity: 0.9 !important;
}

.blog-post-card .read-more-btn {
    display: inline-block;
    margin-top: 30px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 1px solid;
    padding-bottom: 5px;
    text-decoration: none;
    pointer-events: auto;
    transition: opacity 0.3s;
    color: #ffffff !important;
    border-color: #ffffff !important;
}

.blog-post-card:hover .read-more-btn {
    opacity: 0.7;
}

.blog-no-stories {
    color: #888;
    text-align: center;
    padding: 100px 20px;
}

/* Responsive cover toggle classes */
.cover-mobile {
    display: none !important;
}
.cover-desktop {
    display: block !important;
}

@media (max-width: 767px) {
    .cover-desktop {
        display: none !important;
    }
    .cover-mobile {
        display: block !important;
    }
    .blog-post-card .entry-summary {
        display: none !important;
    }
    .post-cover-container {
        height: 50vh !important;
    }
}

@media (max-width: 991px) {
    .blog-archive-wrapper {
        flex-direction: column !important;
        height: auto !important;
        overflow-y: visible !important;
    }
    .blog-list-scroll-wrapper {
        height: auto !important;
        overflow-y: visible !important;
    }
    .blog-post-card {
        height: 60vh !important;
        width: calc(100% - 40px);
        margin: 20px 20px 0 20px;
    }
    .blog-grid {
        padding-bottom: 20px;
    }
}

/* Single Blog Post Template */
.single-post-wrapper {
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
}

@media (max-width: 991px) {
    .single-post-wrapper {
        height: auto;
        min-height: calc(100vh - 60px);
        overflow-y: visible;
    }
}

.post-cover-container {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    background-color: #000;
}

.post-cover-parallax-wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    will-change: transform;
}

.post-cover-standard {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Scroll indicator animation */
.scroll-down-indicator {
    position: absolute;
    bottom: 50px;
    right: 50px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    opacity: 0.8;
    pointer-events: none;
}

.mouse-icon {
    width: 26px;
    height: 40px;
    border: 2px solid #fff;
    border-radius: 13px;
    position: relative;
}

.mouse-wheel {
    width: 4px;
    height: 8px;
    background: #fff;
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: mouseScrollAnim 1.5s infinite ease-in-out;
}

@keyframes mouseScrollAnim {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 15px); opacity: 0; }
}

.post-header-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.post-header-content.has-cover {
    padding: 60px 50px 20px;
}

.post-header-content.no-cover {
    padding: 150px 50px 20px;
}

.single-post-wrapper .entry-meta {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    margin-bottom: 20px;
}

.single-post-wrapper .entry-subtitle {
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 300;
    letter-spacing: 1px;
    color: #aaa;
    margin-top: -5px;
    margin-bottom: 25px;
}

.single-post-wrapper .entry-title {
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 400;
    margin: 0;
    line-height: 1.1;
}

/* Category buttons */
.post-categories {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.category-btn {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 16px;
    border: 1px solid #333;
    border-radius: 4px;
    color: #bbb;
    text-decoration: none;
    box-shadow: none !important;
    transition: all 0.3s ease;
}

.category-btn:hover {
    border-color: #fff !important;
    color: #fff !important;
    background-color: #111;
}

/* Mobile responsive styles for categories and single post padding */
@media (max-width: 768px) {
    .post-categories {
        flex-wrap: wrap !important;
        justify-content: center !important;
        margin-top: 20px;
    }

    /* Reduce padding on mobile for single blog posts */
    .post-header-content.has-cover {
        padding: 40px 20px 15px !important;
    }
    .post-header-content.no-cover {
        padding: 100px 20px 15px !important;
    }
    .entry-content-wrapper {
        padding: 15px 20px 40px !important;
    }
    
    /* Make typography look optimal with tighter side margins */
    .single-post-wrapper .entry-title {
        font-size: clamp(28px, 8vw, 42px) !important;
    }
}

/* Core Content Body styles */
.entry-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 50px 60px;
}

.entry-content {
    font-size: 18px;
    line-height: 1.8;
    font-weight: 300;
}

.entry-content p {
    margin-bottom: 25px;
}

.entry-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 40px 0;
}

.entry-content .wp-block-columns img {
    margin: 0;
}

/* Share & Action bar */
.post-share-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 0 auto 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #222;
    max-width: 600px;
}

.post-share-bar .share-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
}

.post-share-bar .share-buttons {
    display: flex;
    gap: 20px;
}

.share-btn {
    color: #888;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.share-btn:hover {
    color: #ffffff !important;
    transform: translateY(-2px);
}

/* Post Tag Lists */
.post-tags-section {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #222;
    text-align: center;
}

.post-tags-section .tags-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    display: block;
    margin-bottom: 15px;
}

.post-tags-section .tags-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.post-tag-item {
    display: inline-block;
    font-size: 12px;
    font-weight: 300;
    padding: 6px 18px;
    border: 1px solid #333;
    border-radius: 4px;
    color: #aaa;
    text-decoration: none;
    transition: all 0.3s ease;
}

.post-tag-item:hover {
    border-color: #fff !important;
    color: #fff !important;
    background-color: #111;
}

/* Prev/Next Post Links Navigation */
.post-navigation {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid #333;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.nav-previous {
    flex: 1;
    min-width: 250px;
}

.nav-next {
    flex: 1;
    min-width: 250px;
    text-align: right;
}

.nav-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    margin-bottom: 10px;
}

.nav-post-link {
    display: inline-block;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s;
}

.nav-post-link:hover {
    opacity: 0.6;
}

.nav-post-title {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.3;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-next .nav-post-title {
    justify-content: flex-end;
}

@media (max-width: 991px) {
    .scroll-down-indicator {
        display: none;
    }
}

/* ==========================================================================
   7. CUSTOM ALBUM SHORTCODE STYLES
   ========================================================================== */
.mb-album-container {
    width: 100%;
    margin: 40px auto;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0px;
    box-shadow: none !important;
}

.mb-album-header {
    margin-bottom: 25px;
    text-align: left;
    border-bottom: 1px solid #222;
    padding-bottom: 15px;
}

.mb-album-title {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0;
}

.mb-album-title a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.mb-album-title a:hover {
    opacity: 0.7;
}

/* Option 1: Cover Only styling */
.mb-album-cover-img-wrapper {
    width: 100%;
    overflow: hidden;
    background-color: #111;
}

.mb-album-cover-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 60vh;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mb-album-cover-link {
    display: block;
    width: 100%;
    overflow: hidden;
    text-decoration: none;
}

.mb-album-cover-link:hover .mb-album-cover-img {
    transform: scale(1.02);
}

/* Option 2: Gallery Slideshow Layout */
.mb-album-slideshow-wrapper {
    display: none;
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Display correct vertical vs horizontal sets based on ResizeObserver classes */
.mb-album-container.layout-vertical .mb-album-gallery-vertical-set {
    display: block;
}

.mb-album-container.layout-horizontal .mb-album-gallery-horizontal-set {
    display: block;
}

.mb-album-slides-container {
    position: relative;
    width: 100%;
    background-color: #111;
}

.mb-album-gallery-vertical-set .mb-album-slides-container {
    aspect-ratio: 2/3;
    max-height: 70vh;
}

.mb-album-gallery-horizontal-set .mb-album-slides-container {
    aspect-ratio: 3/2;
    max-height: 75vh;
}

.mb-album-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
    pointer-events: none;
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mb-album-slide.active {
    opacity: 1;
    z-index: 2;
    pointer-events: auto;
}

.mb-album-slide-link {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    text-decoration: none;
}

.mb-album-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mb-album-slide-link:hover img {
    transform: scale(1.02);
}

/* Slideshow Left/Right Navigation controls */
.mb-album-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 44px;
    height: 44px;
    border-radius: 0px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, opacity 0.3s, border-color 0.3s;
    opacity: 0;
    pointer-events: none;
    box-shadow: none !important;
}

.mb-album-control i {
    font-size: 14px;
}

.mb-album-slideshow-wrapper:hover .mb-album-control {
    opacity: 1;
    pointer-events: auto;
}

@media (max-width: 991px) {
    .mb-album-control {
        opacity: 0.8;
        pointer-events: auto;
    }
}

.mb-album-control:hover {
    background: #000;
    border-color: rgba(255, 255, 255, 0.4);
}

.mb-album-control.prev {
    left: 20px;
}

.mb-album-control.next {
    right: 20px;
}

/* Slideshow Counter Indicator */
.mb-album-indicator {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    font-size: 11px;
    letter-spacing: 1.5px;
    pointer-events: none;
    box-shadow: none !important;
}

.mb-album-no-photos {
    font-size: 11px;
    color: #888;
    text-align: center;
    padding: 40px 10px;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ==========================================================================
   8. LIGHT MODE STYLE OVERRIDES
   ========================================================================== */
body.theme-mode-light {
    background-color: var(--color-bg-light);
    color: var(--color-text-light);
}

body.theme-mode-light .site-wrapper,
body.theme-mode-light .site-main-content,
body.theme-mode-light .split-slider-wrapper,
body.theme-mode-light .parallax-layers-container {
    background-color: var(--color-bg-light);
    background-color: #f6f6f6;
}

body.theme-mode-light .theme-sidebar {
    background-color: var(--color-bg-light);
    background-color: #f6f6f6;
    border-color: #eaeaea;
}

body.theme-mode-light .mobile-header,
body.theme-mode-light .mobile-menu-drawer {
    background-color: var(--color-bg-light);
}

body.theme-mode-light .mobile-logo-title,
body.theme-mode-light .mobile-logo-subtitle,
body.theme-mode-light .site-title-fancy,
body.theme-mode-light .logo-bottom,
body.theme-mode-light .section-title,
body.theme-mode-light .mobile-section-title,
body.theme-mode-light .logo-title,
body.theme-mode-light .logo-subtitle,
body.theme-mode-light .portfolio-list a,
body.theme-mode-light .mobile-portfolio-list a,
body.theme-mode-light .secondary-links a,
body.theme-mode-light .mobile-studio-list a {
    color: var(--color-text-light) !important;
}

body.theme-mode-light .hamburger-button .bar {
    background-color: var(--color-text-light);
}

body.theme-mode-light .gallery-horizontal-scroll-container,
body.theme-mode-light .gallery-cover-column,
body.theme-mode-light .album-info-column,
body.theme-mode-light #mb-photo-lightbox {
    background-color: #ffffff;
}

body.theme-mode-light .gallery-vertical-title-column {
    background-color: #fafafa;
}

body.theme-mode-light .gallery-cover-overlay,
body.theme-mode-light .album-title-overlay {
    background: linear-gradient(to top, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
    color: var(--color-text-light);
}

body.theme-mode-light .album-back-link a {
    color: var(--color-text-light);
    border-color: #eaeaea;
}

body.theme-mode-light .album-info-inner h1,
body.theme-mode-light .album-info-inner p,
body.theme-mode-light .album-subtitle,
body.theme-mode-light .vertical-album-subtitle,
body.theme-mode-light .vertical-gallery-title,
body.theme-mode-light .vertical-back-btn {
    color: var(--color-text-light) !important;
}

body.theme-mode-light .mb-lightbox-close,
body.theme-mode-light .mb-lightbox-nav,
body.theme-mode-light .mb-lightbox-arrow {
    color: var(--color-text-light);
}

/* Light Mode Scrollbars */
body.theme-mode-light ::-webkit-scrollbar-track {
    background: var(--color-bg-light);
}

body.theme-mode-light ::-webkit-scrollbar-thumb {
    background: #cccccc;
}

body.theme-mode-light ::-webkit-scrollbar-thumb:hover {
    background: #aaaaaa;
}

body.theme-mode-light {
    scrollbar-color: #cccccc #ffffff;
}

/* Light Mode Language Switches */
body.theme-mode-light .language-list li a {
    color: #666666;
}

body.theme-mode-light .language-list li.current-lang a {
    color: var(--color-text-light);
}

body.theme-mode-light .language-list li a:hover {
    color: var(--color-text-light);
}

body.theme-mode-light .mobile-language-list li a {
    color: #666666 !important;
}

body.theme-mode-light .mobile-language-list li.current-lang a {
    color: var(--color-text-light) !important;
}

body.theme-mode-light .mobile-language-list li a:hover {
    color: var(--color-text-light) !important;
}

/* Light Mode Blog Overrides */
body.theme-mode-light .blog-archive-wrapper {
    background-color: var(--color-bg-light);
    color: var(--color-text-light);
}

body.theme-mode-light .blog-list-scroll-wrapper {
    background-color: var(--color-bg-light) !important;
}

body.theme-mode-light .blog-post-overlay {
    background: rgba(0, 0, 0, 0.5) !important;
}

body.theme-mode-light .blog-post-card:hover .blog-post-overlay {
    background: rgba(0, 0, 0, 0.3) !important;
}

body.theme-mode-light .blog-post-card {
    border-bottom-color: #222222 !important;
}

body.theme-mode-light .blog-post-card .entry-title a {
    color: #ffffff !important;
}

body.theme-mode-light .blog-post-card .entry-subtitle {
    color: #cccccc !important;
}

body.theme-mode-light .blog-post-card .entry-summary {
    color: #eeeeee !important;
    font-weight: 300 !important;
}

body.theme-mode-light .blog-post-card .entry-meta {
    color: #ffffff !important;
    opacity: 0.8 !important;
}

body.theme-mode-light .blog-post-card .read-more-btn {
    color: #ffffff !important;
    border-color: #ffffff !important;
}

body.theme-mode-light .single-post-wrapper {
    background-color: #fff;
    color: #000;
}

body.theme-mode-light .post-navigation {
    border-top-color: #eaeaea !important;
}

body.theme-mode-light .category-btn {
    border-color: #ddd !important;
    color: #666 !important;
}

body.theme-mode-light .category-btn:hover {
    border-color: #ccc !important;
    color: var(--color-text-light) !important;
    background-color: #f9f9f9 !important;
}

body.theme-mode-light .post-share-bar {
    border-bottom-color: #eaeaea !important;
}

body.theme-mode-light .share-btn {
    color: #666 !important;
}

body.theme-mode-light .share-btn:hover {
    color: var(--color-text-light) !important;
}

body.theme-mode-light .entry-subtitle {
    color: #555 !important;
}

body.theme-mode-light .post-tags-section {
    border-top-color: #eaeaea !important;
}

body.theme-mode-light .post-tag-item {
    border-color: #ddd !important;
    color: #666 !important;
}

body.theme-mode-light .post-tag-item:hover {
    border-color: #ccc !important;
    color: var(--color-text-light) !important;
    background-color: #f9f9f9 !important;
}

/* Light Mode Album Shortcode Overrides */
body.theme-mode-light .mb-album-header {
    border-bottom-color: #eaeaea;
}

body.theme-mode-light .mb-album-title a {
    color: var(--color-text-light);
}

body.theme-mode-light .mb-album-cover-img-wrapper {
    background-color: #f7f7f7;
}

body.theme-mode-light .mb-album-slides-container {
    background-color: #f7f7f7;
}

body.theme-mode-light .mb-album-control {
    background: rgba(255, 255, 255, 0.9);
    color: #000;
    border-color: #ddd;
}

body.theme-mode-light .mb-album-control:hover {
    background: #fff;
    border-color: #000;
}

body.theme-mode-light .mb-album-indicator {
    background: rgba(255, 255, 255, 0.9);
    color: #000;
    border-color: #ddd;
}

/* ==========================================================================
   CONTACT PAGE & CONTACT FORM 7 STYLES
   ========================================================================== */

/* Fade-in & Slide-up Animations */
@keyframes contactFadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes borderExpand {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

.contact-page-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    box-sizing: border-box;
    background-color: #0a0a0a;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

/* Left Column Info */
.contact-info-panel {
    animation: contactFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.contact-subtitle {
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #888;
    display: block;
    margin-bottom: 15px;
    font-family: var(--font-subtitle) !important;
}

.contact-title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 300;
    color: #ffffff;
    line-height: 1.1;
    margin: 0 0 30px 0;
    font-family: var(--font-heading) !important;
    letter-spacing: -1px;
}

.contact-intro {
    font-size: 16px;
    line-height: 1.8;
    color: #aaaaaa;
    margin-bottom: 50px;
    font-weight: 300;
}

.contact-intro p {
    margin: 0 0 15px 0;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.contact-detail-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.detail-label {
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #666666;
    font-family: var(--font-subtitle) !important;
}

.detail-value {
    font-size: 18px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 300;
    display: inline-block;
    width: fit-content;
    position: relative;
    padding-bottom: 2px;
    transition: color 0.3s ease;
}

.detail-value:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: #ffffff;
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.detail-value:hover {
    color: #ffffff;
}

.detail-value:hover:after {
    width: 100%;
}

.contact-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 5px;
}

.contact-social-links a {
    font-size: 14px;
    color: #aaaaaa;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 300;
}

.contact-social-links a i {
    font-size: 16px;
}

.contact-social-links a:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

/* Right Column Contact Form 7 */
.contact-form-panel {
    animation: contactFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: 0.2s;
}

.contact-form-inner {
    background-color: transparent;
}

/* Reset / style default WP paragraphs in forms */
.contact-form-inner p {
    margin: 0 0 25px 0;
}

.contact-form-inner label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #666;
    font-family: var(--font-subtitle) !important;
}

/* Contact Form 7 Native Controls overrides */
.wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.wpcf7-form .wpcf7-text,
.wpcf7-form .wpcf7-textarea {
    width: 100%;
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 0 !important;
    padding: 12px 0 !important;
    color: #ffffff !important;
    font-size: 15px !important;
    font-weight: 300 !important;
    transition: border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease !important;
    box-shadow: none !important;
    outline: none !important;
    font-family: inherit;
    box-sizing: border-box;
}

.wpcf7-form .wpcf7-textarea {
    min-height: 120px !important;
    resize: vertical;
}

.wpcf7-form .wpcf7-text:focus,
.wpcf7-form .wpcf7-textarea:focus {
    border-bottom-color: #ffffff !important;
    box-shadow: none !important;
}

/* Style the CF7 submit button */
.wpcf7-form .wpcf7-submit {
    background-color: #ffffff !important;
    color: #000000 !important;
    font-family: var(--font-heading) !important;
    text-transform: uppercase !important;
    letter-spacing: 3px !important;
    font-size: 11px !important;
    font-weight: 500 !important;
    border: 1px solid #ffffff !important;
    padding: 16px 45px !important;
    border-radius: 0 !important;
    cursor: pointer !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    display: inline-block !important;
    margin-top: 15px !important;
    box-shadow: none !important;
    appearance: none;
    -webkit-appearance: none;
}

.wpcf7-form .wpcf7-submit:hover {
    background-color: transparent !important;
    color: #ffffff !important;
    border-color: #ffffff !important;
    transform: translateY(-2px);
}

.wpcf7-form .wpcf7-submit:active {
    transform: translateY(0);
}

/* CF7 Response and Validation Messages */
.wpcf7-response-output {
    margin: 30px 0 0 0 !important;
    padding: 15px 20px !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    font-size: 13px !important;
    color: #aaaaaa !important;
    border-radius: 0 !important;
    font-weight: 300 !important;
    line-height: 1.5 !important;
    background-color: rgba(255, 255, 255, 0.02) !important;
    animation: contactFadeUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.wpcf7-form.sent .wpcf7-response-output {
    border-color: #4caf50 !important;
    color: #4caf50 !important;
    background-color: rgba(76, 175, 80, 0.05) !important;
}

.wpcf7-form.invalid .wpcf7-response-output,
.wpcf7-form.unaccepted .wpcf7-response-output {
    border-color: #f44336 !important;
    color: #f44336 !important;
    background-color: rgba(244, 67, 54, 0.05) !important;
}

.wpcf7-not-valid-tip {
    color: #f44336 !important;
    font-size: 11px !important;
    font-weight: 300 !important;
    margin-top: 6px !important;
    display: block !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    animation: contactFadeUp 0.3s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Spinners & loading states */
.wpcf7-spinner {
    background-color: #ffffff !important;
    margin-left: 15px !important;
    vertical-align: middle !important;
}

/* ==========================================================================
   CONTACT PAGE LIGHT MODE ADAPTATION
   ========================================================================== */

body.theme-mode-light .contact-page-wrapper {
    background-color: #ffffff;
}

body.theme-mode-light .contact-title {
    color: #111111;
}

body.theme-mode-light .contact-subtitle {
    color: #888888;
}

body.theme-mode-light .contact-intro {
    color: #555555;
}

body.theme-mode-light .detail-label {
    color: #999999;
}

body.theme-mode-light .detail-value {
    color: #111111;
}

body.theme-mode-light .detail-value:after {
    background-color: #111111;
}

body.theme-mode-light .contact-social-links a {
    color: #666666;
}

body.theme-mode-light .contact-social-links a:hover {
    color: #111111;
}

body.theme-mode-light .contact-form-inner label {
    color: #888;
}

body.theme-mode-light .wpcf7-form .wpcf7-text,
body.theme-mode-light .wpcf7-form .wpcf7-textarea {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
    color: #111111 !important;
}

body.theme-mode-light .wpcf7-form .wpcf7-text:focus,
body.theme-mode-light .wpcf7-form .wpcf7-textarea:focus {
    border-bottom-color: #000000 !important;
}

body.theme-mode-light .wpcf7-form .wpcf7-submit {
    background-color: #000000 !important;
    color: #ffffff !important;
    border: 1px solid #000000 !important;
}

body.theme-mode-light .wpcf7-form .wpcf7-submit:hover {
    background-color: transparent !important;
    color: #000000 !important;
    border-color: #000000 !important;
}

body.theme-mode-light .wpcf7-response-output {
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    color: #555555 !important;
    background-color: rgba(0, 0, 0, 0.01) !important;
}

body.theme-mode-light .wpcf7-spinner {
    background-color: #000000 !important;
}

/* ==========================================================================
   CONTACT PAGE RESPONSIVE MEDIA QUERIES
   ========================================================================== */

@media (max-width: 1024px) {
    .contact-page-wrapper {
        padding: 60px 40px;
    }
    
    .contact-grid {
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .contact-page-wrapper {
        padding: 80px 24px 40px 24px;
        align-items: flex-start;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-intro {
        margin-bottom: 35px;
    }
    
    .contact-details-list {
        gap: 25px;
    }
    
    .detail-value {
        font-size: 16px;
    }
    
    .contact-social-links {
        gap: 15px;
    }
    
    .contact-form-inner p {
        margin-bottom: 20px;
    }

    .contact-form-panel {
        border-top: 1px solid rgba(0, 0, 0, 0.2);
        padding-top: 60px;
    }

    .wpcf7-form .wpcf7-submit {
        width: 100% !important;
        text-align: center !important;
        padding: 14px 20px !important;
    }
}


/* ==========================================================================
   ABOUT ME PAGE TEMPLATE STYLES
   ========================================================================== */

.about-page-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 60px;
    box-sizing: border-box;
    background-color: #0a0a0a;
}

.about-grid {
    display: grid;
    grid-template-columns: 4.5fr 7.5fr;
    gap: 80px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

/* Left Column visual elements */
.about-visual-panel {
    animation: contactFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.about-image-wrapper {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    position: relative;
    background-color: #121212;
    margin-bottom: 30px;
}

.about-portrait-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-image-wrapper:hover .about-portrait-img {
    transform: scale(1.04);
}

/* Fallback Initials Placeholder */
.about-portrait-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #151515 0%, #0d0d0d 100%);
    position: relative;
}

.placeholder-overlay {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin: 15px;
}

.placeholder-text-group {
    text-align: center;
    z-index: 2;
}

.placeholder-initials {
    display: block;
    font-size: 84px;
    font-weight: 300;
    color: #ffffff;
    font-family: var(--font-heading) !important;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 10px;
}

.placeholder-tagline {
    font-size: 10px;
    font-weight: 400;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-family: var(--font-subtitle) !important;
}

/* Stats section below image */
.about-meta-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 25px;
}

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

.stat-number {
    display: block;
    font-size: 24px;
    font-weight: 400;
    color: #ffffff;
    font-family: var(--font-heading) !important;
    margin-bottom: 4px;
}

.stat-label {
    display: block;
    font-size: 9px;
    font-weight: 400;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-subtitle) !important;
    line-height: 1.3;
}

/* Right Column Content Panel */
.about-content-panel {
    animation: contactFadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.about-subtitle {
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #888888;
    display: block;
    margin-bottom: 15px;
    font-family: var(--font-subtitle) !important;
}

.about-title {
    font-size: clamp(32px, 4vw, 54px);
    font-weight: 300;
    color: #ffffff;
    line-height: 1.2;
    margin: 0 0 35px 0;
    font-family: var(--font-heading) !important;
    letter-spacing: -1px;
}

.about-description {
    margin-bottom: 50px;
}

.about-description p {
    font-size: 16px;
    line-height: 1.8;
    color: #aaaaaa;
    margin: 0 0 20px 0;
    font-weight: 300;
}

.about-description p:last-child {
    margin-bottom: 0;
}

/* Philosophy Section */
.about-philosophy-section {
    margin-bottom: 50px;
}

.philosophy-title {
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #ffffff;
    margin: 0 0 30px 0;
    font-family: var(--font-heading) !important;
}

.philosophy-item {
    display: flex;
    gap: 25px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    align-items: start;
}

.philosophy-item:first-of-type {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.philosophy-number {
    font-size: 12px;
    font-weight: 400;
    color: #666666;
    font-family: var(--font-mono) !important;
    padding-top: 3px;
}

.philosophy-text h4 {
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    margin: 0 0 6px 0;
    font-family: var(--font-heading) !important;
}

.philosophy-text p {
    font-size: 13px;
    line-height: 1.6;
    color: #888888;
    margin: 0;
    font-weight: 300;
}

/* About CTA Button */
.about-cta {
    margin-top: 20px;
}

.about-btn {
    display: inline-block;
    background-color: #ffffff;
    color: #000000;
    font-family: var(--font-heading) !important;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 11px;
    font-weight: 500;
    border: 1px solid #ffffff;
    padding: 16px 45px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-btn:hover {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-2px);
}


/* ==========================================================================
   PRICING & SESSIONS TEMPLATE STYLES
   ========================================================================== */

.pricing-page-wrapper {
    min-height: 100vh;
    padding: 100px 60px 80px;
    box-sizing: border-box;
    background-color: #0a0a0a;
}

.pricing-header-panel {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 70px;
    animation: contactFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.pricing-subtitle {
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #888888;
    display: block;
    margin-bottom: 15px;
    font-family: var(--font-subtitle) !important;
}

.pricing-page-title {
    font-size: clamp(32px, 4.5vw, 54px);
    font-weight: 300;
    color: #ffffff;
    line-height: 1.2;
    margin: 0 0 25px 0;
    font-family: var(--font-heading) !important;
    letter-spacing: -1px;
}

.pricing-intro p {
    font-size: 16px;
    line-height: 1.8;
    color: #aaaaaa;
    font-weight: 300;
    margin: 0;
}

/* Pricing Packages Grid Layout */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 60px;
    width: 100%;
}

.pricing-card {
    background-color: #0e0e0e;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 45px 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    animation: contactFadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.pricing-card:nth-child(2) {
    animation-delay: 0.15s;
}

.pricing-card:nth-child(3) {
    animation-delay: 0.3s;
}

.pricing-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
    background-color: #111111;
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Featured / Signature package highlighted styling */
.pricing-card.featured {
    border-color: rgba(255, 255, 255, 0.15);
    background-color: #121212;
}

.pricing-card.featured:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background-color: #141414;
}

.package-badge {
    display: inline-block;
    font-size: 9px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888888;
    margin-bottom: 20px;
    font-family: var(--font-subtitle) !important;
}

.pricing-card.featured .package-badge {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.06);
    padding: 4px 12px;
    margin-bottom: 16px;
}

.package-name {
    font-size: 22px;
    font-weight: 400;
    color: #ffffff;
    margin: 0 0 25px 0;
    font-family: var(--font-heading) !important;
}

.package-price {
    display: flex;
    align-items: baseline;
    margin-bottom: 35px;
    color: #ffffff;
}

.package-price .currency {
    font-size: 18px;
    font-weight: 300;
    margin-right: 2px;
    font-family: var(--font-heading) !important;
}

.package-price .amount {
    font-size: 48px;
    font-weight: 300;
    line-height: 1;
    font-family: var(--font-heading) !important;
    letter-spacing: -1px;
}

/* Package details lists */
.pricing-card-body {
    flex-grow: 1;
    margin-bottom: 40px;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.package-features li {
    font-size: 14px;
    line-height: 1.5;
    color: #888888;
    position: relative;
    padding-left: 20px;
    font-weight: 300;
}

.package-features li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.2);
}

.package-features li strong {
    color: #ffffff;
    font-weight: 400;
}

/* Package Booking Action Buttons */
.pricing-card-footer {
    width: 100%;
}

.pricing-btn {
    display: block;
    width: 100%;
    text-align: center;
    background-color: transparent;
    color: #ffffff;
    font-family: var(--font-heading) !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 11px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 14px 20px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-sizing: border-box;
}

.pricing-btn:hover {
    background-color: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

/* Highlighted booking button */
.featured-btn {
    background-color: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

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

/* Footer Additional Editor Content block spacing */
.pricing-footer-content {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 60px !important;
    padding-top: 40px !important;
    text-align: center;
}


/* ==========================================================================
   ABOUT & PRICING LIGHT MODE SUPPORT
   ========================================================================== */

body.theme-mode-light .about-page-wrapper,
body.theme-mode-light .pricing-page-wrapper {
    background-color: #ffffff;
}

body.theme-mode-light .about-title,
body.theme-mode-light .pricing-page-title {
    color: #111111;
}

body.theme-mode-light .about-subtitle,
body.theme-mode-light .pricing-subtitle {
    color: #888888;
}

body.theme-mode-light .about-description p,
body.theme-mode-light .pricing-intro p {
    color: #555555;
}

body.theme-mode-light .about-meta-stats {
    border-top-color: #eaeaea;
}

body.theme-mode-light .stat-number {
    color: #111111;
}

body.theme-mode-light .stat-label {
    color: #999999;
}

body.theme-mode-light .about-image-wrapper {
    background-color: #f7f7f7;
}

body.theme-mode-light .about-portrait-placeholder {
    background: linear-gradient(135deg, #f7f7f7 0%, #ededed 100%);
}

body.theme-mode-light .placeholder-overlay {
    border-color: rgba(0, 0, 0, 0.05);
}

body.theme-mode-light .placeholder-initials {
    color: #111111;
}

body.theme-mode-light .placeholder-tagline {
    color: #666666;
}

body.theme-mode-light .philosophy-title {
    color: #111111;
}

body.theme-mode-light .philosophy-item {
    border-color: #eaeaea;
}

body.theme-mode-light .philosophy-number {
    color: #999999;
}

body.theme-mode-light .philosophy-text h4 {
    color: #111111;
}

body.theme-mode-light .philosophy-text p {
    color: #666666;
}

body.theme-mode-light .about-btn {
    background-color: #000000;
    color: #ffffff;
    border-color: #000000;
}

body.theme-mode-light .about-btn:hover {
    background-color: transparent;
    color: #000000;
    border-color: #000000;
}

/* Pricing Light Mode */
body.theme-mode-light .pricing-card {
    background-color: #fcfcfc;
    border-color: #eaeaea;
}

body.theme-mode-light .pricing-card:hover {
    border-color: #cccccc;
    background-color: #fafafa;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

body.theme-mode-light .pricing-card.featured {
    border-color: #dddddd;
    background-color: #fcfcfc;
}

body.theme-mode-light .pricing-card.featured:hover {
    border-color: #999999;
    background-color: #fafafa;
}

body.theme-mode-light .package-badge {
    color: #666666;
}

body.theme-mode-light .pricing-card.featured .package-badge {
    color: #000000;
    background-color: rgba(0, 0, 0, 0.05);
}

body.theme-mode-light .package-name,
body.theme-mode-light .package-price {
    color: #111111;
}

body.theme-mode-light .package-features li {
    color: #555555;
}

body.theme-mode-light .package-features li::before {
    color: rgba(0, 0, 0, 0.15);
}

body.theme-mode-light .package-features li strong {
    color: #111111;
}

body.theme-mode-light .pricing-btn {
    color: #111111;
    border-color: #cccccc;
}

body.theme-mode-light .pricing-btn:hover {
    background-color: #000000;
    color: #ffffff;
    border-color: #000000;
}

body.theme-mode-light .featured-btn {
    background-color: #000000;
    color: #ffffff;
    border-color: #000000;
}

body.theme-mode-light .featured-btn:hover {
    background-color: transparent;
    color: #000000;
    border-color: #000000;
}

body.theme-mode-light .pricing-footer-content {
    border-top-color: #eaeaea;
}


/* ==========================================================================
   ABOUT & PRICING RESPONSIVE QUERIES
   ========================================================================== */

@media (max-width: 1024px) {
    .about-page-wrapper,
    .pricing-page-wrapper {
        padding: 80px 40px;
    }

    .about-grid {
        gap: 50px;
    }

    .pricing-grid {
        gap: 20px;
    }

    .pricing-card {
        padding: 35px 25px;
    }
}

@media (max-width: 991px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-image-wrapper {
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    .about-meta-stats {
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 480px;
    }

    .pricing-header-panel {
        margin-bottom: 50px;
    }
}

@media (max-width: 768px) {
    .about-page-wrapper,
    .pricing-page-wrapper {
        padding: 80px 24px 40px 24px;
    }

    .about-title,
    .pricing-page-title {
        margin-bottom: 25px;
    }

    .about-description {
        margin-bottom: 40px;
    }

    .about-philosophy-section {
        margin-bottom: 40px;
    }

    .about-btn,
    .pricing-btn {
        width: 100% !important;
        text-align: center;
        padding: 14px 20px !important;
    }
}

/* ==========================================================================
   ALBUM NAVIGATION SECTION (NEXT ALBUM)
   ========================================================================== */
.next-album-nav-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid #151515;
    width: 100%;
    clear: both;
}

.next-album-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-accent-gray);
    margin-bottom: 20px;
    font-weight: 500;
}

.next-album-link {
    display: flex;
    position: relative;
    width: 100%;
    min-height: 250px;
    background-color: #080808;
    border: 1px solid #111;
    overflow: hidden;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    transition: border-color 0.4s ease;
}

.next-album-link:hover {
    border-color: #333;
}

.next-album-nav-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.65;
    transition: opacity 0.4s ease, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    filter: grayscale(40%);
}

.next-album-link:hover .next-album-nav-bg {
    opacity: 0.25;
    transform: scale(1.05);
}

.next-album-nav-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 30px;
    transition: transform 0.4s ease;
}

.next-album-link:hover .next-album-nav-content {
    transform: translateY(-2px);
}

.next-album-subtitle {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #ffffff;
    margin-bottom: 10px;
    font-family: var(--font-subtitle) !important;
}

.next-album-title {
    font-size: clamp(24px, 4.5vw, 42px);
    font-weight: 400;
    color: #ffffff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.next-album-link:hover .next-album-title {
    color: #ffffff;
}

/* Light Mode Overrides for Next Album */
body.theme-mode-light .next-album-nav-section {
    border-top-color: #eaeaea;
}

body.theme-mode-light .next-album-link {
    border-color: #eaeaea;
}

body.theme-mode-light .next-album-link:hover {
    border-color: #999;
}

body.theme-mode-light .next-album-title {
    color: #ffffff;
}

/* Responsive Overrides: Hide back links on mobile/tablets */
@media (max-width: 991px) {
    .album-back-link,
    .vertical-back-btn {
        display: none !important;
    }
}

/* ==========================================================================
   HOMEPAGE NO-SCROLL OVERRIDES & GALLERY ALIGN CENTER
   ========================================================================== */

/* 1. Prevent all scrolling on the homepage (Desktop & Mobile) */
body.home {
    overflow: hidden !important;
    height: 100vh !important;
    height: 100dvh !important;
    width: 100% !important;
    position: fixed !important;
    top: 0;
    left: 0;
}

body.home .site-wrapper {
    height: 100vh !important;
    height: 100dvh !important;
    overflow: hidden !important;
    display: flex;
}

body.home .site-main-content {
    height: 100vh !important;
    height: 100dvh !important;
    overflow: hidden !important;
}

/* On mobile views specifically for homepage */
@media (max-width: 991px) {
    body.home .site-wrapper {
        flex-direction: column !important;
    }
    
    body.home .site-main-content {
        height: calc(100vh - 80px) !important;
        height: calc(100dvh - 80px) !important;
        margin-top: 80px !important;
        padding-top: 0 !important;
        overflow: hidden !important;
    }

    body.home .slider-master-container {
        height: 100% !important;
        width: 100% !important;
    }

    body.home .split-slider-wrapper,
    body.home .mobile-single-slider-wrapper {
        height: 100% !important;
        width: 100% !important;
        margin: 0 !important;
    }
}

/* Custom Slide Title & Subtitle Parallax Overlays */
.slide-content-overlay {
    position: absolute;
    bottom: 20%;
    left: 0;
    width: 100%;
    padding: 60px 40px;
    box-sizing: border-box;
    z-index: 5;
    pointer-events: none;
}

.slide-content-inner {
    transition: transform 1.1s cubic-bezier(0.77, 0, 0.175, 1), opacity 1.1s cubic-bezier(0.77, 0, 0.175, 1);
    will-change: transform, opacity;
    transform: translateY(0);
    opacity: 1;
}

.slide-title {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 8px 0;
    line-height: 1.2;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.75);
}

.slide-subtitle {
    font-size: clamp(10px, 1.5vw, 12px);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.75);
}

@media (max-width: 768px) {
    .slide-content-overlay {
        padding: 40px 25px;
    }
}

/* ==========================================================================
   WordPress Block Gallery to Tight-Packed Metro Masonry Transformation
   ========================================================================== */
.entry-content .wp-block-gallery.gallery-albums-masonry-wrapper {
    display: block !important;
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    background: transparent !important;
}

.entry-content .wp-block-gallery.gallery-albums-masonry-wrapper .gallery-albums-masonry-inner {
    display: flex !important;
    gap: 12px !important;
    width: 100% !important;
}

.entry-content .wp-block-gallery.gallery-albums-masonry-wrapper .masonry-column-container {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    flex: 1 !important;
    min-width: 0 !important;
}

.entry-content .wp-block-gallery.gallery-albums-masonry-wrapper .masonry-album-item {
    display: block !important;
    width: 100% !important;
    position: relative !important;
    overflow: hidden !important;
    background: transparent !important;
    margin: 0 !important;
    padding: 0 !important;
    cursor: pointer !important;
}

.entry-content .wp-block-gallery.gallery-albums-masonry-wrapper .masonry-album-item img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    margin: 0 !important;
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1), filter 0.5s !important;
    filter: brightness(1) !important;
}

.entry-content .wp-block-gallery.gallery-albums-masonry-wrapper .masonry-album-item:hover img {
    transform: scale(1.05) !important;
    filter: brightness(1.05) !important;
}

@media (max-width: 768px) {
    .entry-content .wp-block-gallery.gallery-albums-masonry-wrapper {
        margin: 0 !important;
    }
    .entry-content .wp-block-gallery.gallery-albums-masonry-wrapper .gallery-albums-masonry-inner {
        gap: 8px !important;
    }
    .entry-content .wp-block-gallery.gallery-albums-masonry-wrapper .masonry-column-container {
        gap: 8px !important;
    }
}

/* ==========================================================================
   Linked Album Button/Banner inside Single Post
   ========================================================================== */
.post-linked-album-banner {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    height: 180px !important;
    margin: 60px 0 20px 0 !important;
    overflow: hidden !important;
    text-decoration: none !important;
    background-color: #0c0c0c !important; /* Elegant dark charcoal/black */
    border: 0px solid rgba(255, 255, 255, 0.08) !important;
}

.post-linked-album-bg {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-size: cover !important;
    background-position: center !important;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease !important;
    opacity: 0.28 !important; /* Much darker background to pop the titles */
}

.post-linked-album-banner:hover .post-linked-album-bg {
    transform: scale(1.03) !important;
    opacity: 0.38 !important;
}

.post-linked-album-content {
    position: relative !important;
    z-index: 2 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 100% !important;
    padding: 20px !important;
    box-sizing: border-box !important;
    text-align: center !important;
}

.post-linked-album-subtitle {
    font-size: 11px !important;
    font-weight: 500 !important;
    letter-spacing: 4px !important;
    text-transform: uppercase !important;
    color: rgba(255, 255, 255, 0.65) !important;
    margin-bottom: 12px !important;
    display: block !important;
}

.post-linked-album-title {
    font-size: 20px !important;
    font-weight: 400 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    color: #ffffff !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    margin: 0 !important;
    transition: letter-spacing 0.4s ease !important;
}

.post-linked-album-banner:hover .post-linked-album-title {
    letter-spacing: 3px !important;
}

.post-linked-album-arrow {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: transform 0.4s ease !important;
}

.post-linked-album-banner:hover .post-linked-album-arrow {
    transform: translateX(6px) !important;
}

@media (max-width: 768px) {
    .post-linked-album-banner {
        height: 150px !important;
        margin: 40px 0 10px 0 !important;
    }
    .post-linked-album-title {
        font-size: 16px !important;
        letter-spacing: 1.5px !important;
    }
    .post-linked-album-subtitle {
        font-size: 9px !important;
        margin-bottom: 8px !important;
        letter-spacing: 3px !important;
    }
}

/* Compact Banner style for Shortcode */
.post-linked-album-banner.compact-banner {
    height: 120px !important;
    margin: 30px 0 !important;
    background-color: #0a0a0a !important; /* solid premium black for both light/dark mode */
    border: 0 !important;
}

.post-linked-album-banner.compact-banner .post-linked-album-bg {
    opacity: 0.8 !important;
}

.post-linked-album-banner.compact-banner:hover .post-linked-album-bg {
    opacity: 0.32 !important;
}

.post-linked-album-banner.compact-banner .post-linked-album-title {
    font-size: 15px !important;
    letter-spacing: 2px !important;
    font-weight: 400 !important;
    color: #ffffff !important;
}

.post-linked-album-banner.compact-banner .post-linked-album-subtitle {
    font-size: 9px !important;
    letter-spacing: 4px !important;
    margin-bottom: 8px !important;
    color: rgba(255, 255, 255, 0.6) !important;
}

@media (max-width: 768px) {
    .post-linked-album-banner.compact-banner {
        height: 100px !important;
        margin: 20px 0 !important;
    }
    .post-linked-album-banner.compact-banner .post-linked-album-title {
        font-size: 13px !important;
        letter-spacing: 1.5px !important;
    }
    .post-linked-album-banner.compact-banner .post-linked-album-subtitle {
        font-size: 8px !important;
        letter-spacing: 3px !important;
        margin-bottom: 6px !important;
    }
}

/* ==========================================================================
   Desktop PC Cover Title Overlay & Parallax Transition
   ========================================================================== */
.post-cover-header-overlay {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    padding: 0 50px 100px 50px !important;
    box-sizing: border-box !important;
    z-index: 5 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-end !important;
    pointer-events: none !important;
    will-change: transform, opacity !important;
}

.post-cover-gradient-bg {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 60% !important; /* Gradients starting at bottom and fading up */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.45) 55%, rgba(0, 0, 0, 0) 100%) !important;
    z-index: 1 !important;
    pointer-events: none !important;
}

.post-cover-header-content {
    position: relative !important;
    z-index: 2 !important;
    text-align: center !important;
    max-width: 1000px !important;
    width: 100% !important;
    will-change: transform, opacity !important;
}

.post-cover-header-content .scroll-down-indicator {
    position: relative !important;
    bottom: auto !important;
    right: auto !important;
    margin: 0 auto 30px auto !important;
}

.post-cover-subtitle-text {
    font-family: var(--font-subtitle) !important;
    font-size: clamp(18px, 2.5vw, 24px) !important;
    font-weight: 300 !important;
    letter-spacing: 1px !important;
    text-transform: none !important;
    color: rgba(255, 255, 255, 0.85) !important;
    margin-bottom: 25px !important;
}

.post-cover-title-text {
    font-family: var(--font-heading) !important;
    font-size: clamp(36px, 6vw, 72px) !important;
    font-weight: 400 !important;
    letter-spacing: normal !important;
    text-transform: none !important;
    color: #ffffff !important;
    line-height: 1.1 !important;
    margin: 0 !important;
}

/* On desktop, the normal header content starts hidden/faded and is animated on scroll */
@media (min-width: 992px) {
    .post-header-content.has-cover {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1), transform 0.6s cubic-bezier(0.25, 1, 0.5, 1) !important;
        will-change: transform, opacity !important;
    }
    
    .post-header-content.has-cover.scrolled-in {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
}

@media (max-width: 991px) {
    .post-cover-header-overlay {
        display: none !important;
    }
}

/* ==========================================================================
   9. SIDEBAR & MOBILE DRAWER FOOTER NAVIGATION
   ========================================================================== */
.desktop-copyright-text {
    font-size: 12px;
    color: var(--color-accent-gray);
    font-family: var(--font-subtitle), 'Roboto', sans-serif;
    font-weight: 300;
    letter-spacing: 0px;
    margin: 10px 0 20px 0;
}

.mobile-copyright-text {
    font-size: 14px;
    color: var(--color-accent-gray);
    font-family: var(--font-subtitle), 'Roboto', sans-serif;
    font-weight: 300;
    letter-spacing: 0px;
    margin: 10px 0 20px 0;
}

.sidebar-footer-nav {
    width: 100%;
}

.sidebar-footer-nav ul,
.footer-links {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 15px !important;
    row-gap: 2px !important;
    justify-content: flex-start !important;
}

.mobile-footer-links {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.mobile-footer-links li {
    margin: 10px 0 0 0 !important;
    padding: 0 !important;
}

.sidebar-footer-nav ul li,
.footer-links li {
    display: inline-block !important;
    margin: 0 !important;
    padding: 0 !important;
}

.sidebar-footer-nav ul li a,
.footer-links li a {
    color: var(--color-accent-gray) !important;
    font-size: 14px  !important;
    letter-spacing: 0x !important;
    font-family: var(--font-subtitle), 'Roboto', sans-serif !important;
    font-weight: 300 !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

.mobile-footer-links li a{
    font-size: 16px !important;
    letter-spacing: 0x !important;
    font-family: var(--font-subtitle), 'Roboto', sans-serif !important;
    font-weight: 300 !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
    color: #3d3d3d !important;
}

.sidebar-footer-nav ul li a:hover,
.footer-links li a:hover {
    color: #ffffff !important;
}

/* Specific styling for Light Mode if active */
.theme-mode-light .sidebar-footer-nav ul li a,
.theme-mode-light .footer-links li a {
    color: #3d3d3d  !important;
}

.theme-mode-light .sidebar-footer-nav ul li a:hover,
.theme-mode-light .footer-links li a:hover {
    color: #000000 !important;
}

/* Mobile responsive drawer specific overrides */
@media (max-width: 991px) {
    .mobile-menu-footer .sidebar-footer-nav {
        margin-top: 15px;
        margin-bottom: 15px;
        border-bottom: 1px solid #111;
        padding-bottom: 15px;
    }
    
    .mobile-menu-footer .sidebar-footer-nav ul,
    .mobile-menu-footer .footer-links {
        gap: 18px !important;
        row-gap: 10px !important;
    }
    
    .mobile-menu-footer .sidebar-footer-nav ul li a,
    .mobile-menu-footer .footer-links li a {
        font-size: 12px !important;
        letter-spacing: 2px !important;
    }
}

/* Hide duplicate Polylang language items in standard navigation menus */
.secondary-links .lang-item,
.footer-links .lang-item,
.mobile-studio-list .lang-item {
    display: none !important;
}





