/*
Theme Name: MCF Liezen
Theme URI: https://mcf-liezen.at
Author: MCF Liezen
Author URI: https://mcf-liezen.at
Description: Custom WordPress Theme für Motor Cycle Friends Liezen - basierend auf dem Original Joomla Template mcf32_1
Version: 1.0
License: Private
Text Domain: mcf-liezen
*/

/* ==========================================================================
   CSS Variables
   ========================================================================== */
:root {
    --mcf-black: #000000;
    --mcf-dark: #1D1C1B;
    --mcf-orange: #FFA500;
    --mcf-orange-dark: #FF8000;
    --mcf-orange-border: #DF7001;
    --mcf-orange-brown: #C76605;
    --mcf-white: #FFFFFF;
    --mcf-text: #000000;
    --mcf-content-text: #FFFFFF;
    --mcf-shadow: rgba(0,0,0,0.59);
    --mcf-border-dark: #191919;
    --mcf-page-width: 1000px;
    --mcf-sidebar-width: 20%;
    --mcf-content-width: 80%;
    --mcf-font-main: 'Open Sans', Arial, sans-serif;
    --mcf-font-size: 12px;
    --mcf-menu-font-size: 14px;
    --mcf-header-height: 150px;
    --mcf-menu-height: 56px;
    --mcf-footer-height: 60px;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-image: url(images/body.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    font-size: var(--mcf-font-size);
    font-family: var(--mcf-font-main);
    color: var(--mcf-content-text);
    margin: 0;
    padding: 0;
}

img {
    border-style: none;
    vertical-align: middle;
    max-width: 100%;
    height: auto;
}

a {
    color: var(--mcf-orange);
    text-decoration: none;
}

a:hover {
    color: var(--mcf-white);
    text-decoration: none;
}

p {
    margin: 0 0 10px 0;
    padding: 0;
}

/* ==========================================================================
   Page Container
   ========================================================================== */
#mcf-page {
    width: 100%;
    min-width: 20px;
    margin: 0 auto;
    padding-top: 20px;
    padding-bottom: 0;
}

#mcf-page-inner {
    width: var(--mcf-page-width);
    margin: 0 auto;
    border-radius: 1px;
    border: 1px solid var(--mcf-border-dark);
    box-shadow: -3px 0 4px var(--mcf-shadow);
    background-color: var(--mcf-black);
    overflow: hidden;
}

/* ==========================================================================
   Header & Slideshow
   ========================================================================== */
#mcf-header {
    position: relative;
    width: 100%;
    overflow: hidden;
}

#mcf-header-inner {
    height: var(--mcf-header-height);
    position: relative;
    margin: 0 auto;
}

/* Slideshow */
.mcf-slideshow {
    position: relative;
    width: 100%;
    height: var(--mcf-header-height);
    overflow: hidden;
}

.mcf-slideshow-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.mcf-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center center;
}

.mcf-slide.active {
    opacity: 1;
}

.mcf-slide-0 { background-image: url(images/headerforeground01.png); background-color: #000; }
.mcf-slide-1 { background-image: url(images/Slide1.jpg); }
.mcf-slide-2 { background-image: url(images/Slide2.jpg); }
.mcf-slide-3 { background-image: url(images/Slide3.jpg); }
.mcf-slide-4 { background-image: url(images/Slide4.jpg); }

/* Slideshow Navigation Dots */
.mcf-slide-nav {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 8px;
}

.mcf-slide-nav span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: background 0.3s;
}

.mcf-slide-nav span.active {
    background: var(--mcf-orange);
}

/* ==========================================================================
   Navigation / Menu
   ========================================================================== */
#mcf-nav {
    background-color: var(--mcf-dark);
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    position: relative;
    z-index: 100;
}

#mcf-nav-inner {
    height: var(--mcf-menu-height);
    text-align: left;
    position: relative;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 0 5px;
    flex-wrap: wrap;
}

/* Hamburger Menu Toggle (Mobile) */
.mcf-menu-toggle {
    display: none;
    cursor: pointer;
    padding: 4px 12px;
    background-color: var(--mcf-orange);
    color: var(--mcf-text);
    font-size: var(--mcf-menu-font-size);
    font-family: Arial, sans-serif;
    border: 1px solid var(--mcf-orange-border);
    border-radius: 0;
    line-height: 24px;
}

/* Menu List */
.mcf-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
}

.mcf-menu li {
    position: relative;
}

.mcf-menu > li > a {
    display: block;
    padding: 4px 8px;
    background-color: var(--mcf-orange);
    color: var(--mcf-text);
    font-size: var(--mcf-menu-font-size);
    font-family: Arial, sans-serif;
    font-weight: normal;
    text-decoration: none;
    border: 1px solid var(--mcf-orange-border);
    margin: 2px 3px;
    line-height: 18px;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

.mcf-menu > li > a:hover,
.mcf-menu > li.current-menu-item > a,
.mcf-menu > li.current-menu-parent > a {
    background-color: var(--mcf-orange-dark);
    color: var(--mcf-text);
    border-color: var(--mcf-border-dark);
}

.mcf-menu > li > a:hover {
    background-color: var(--mcf-white);
    border-color: var(--mcf-orange-brown);
}

/* Submenu / Dropdown */
.mcf-menu li ul.sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 3px;
    z-index: 300;
    list-style: none;
    margin: 0;
    padding: 0;
    min-width: 170px;
    background-color: var(--mcf-orange);
}

.mcf-menu li:hover > ul.sub-menu {
    display: block;
}

.mcf-menu li ul.sub-menu li a {
    display: block;
    padding: 4px 8px;
    background-color: var(--mcf-orange-dark);
    color: var(--mcf-text);
    font-size: var(--mcf-menu-font-size);
    font-family: Arial, sans-serif;
    text-decoration: none;
    border: 1px solid var(--mcf-orange-border);
    line-height: 30px;
    white-space: nowrap;
    transition: background 0.2s;
}

.mcf-menu li ul.sub-menu li a:hover {
    background-color: var(--mcf-white);
    border-color: var(--mcf-border-dark);
}

/* Sub-Submenu */
.mcf-menu li ul.sub-menu li ul.sub-menu {
    top: 0;
    left: 100%;
}

/* Menu items with children - arrow indicator */
.mcf-menu > li.menu-item-has-children > a::after {
    content: ' ▾';
    font-size: 10px;
}

.mcf-menu li ul.sub-menu li.menu-item-has-children > a::after {
    content: ' ▸';
    font-size: 10px;
}

/* ==========================================================================
   Sidebar (Left)
   ========================================================================== */
#mcf-sidebar-left {
    float: left;
    width: var(--mcf-sidebar-width);
    background: transparent;
}

#mcf-sidebar-left-inner {
    padding: 5px;
}

/* Sidebar Vertical Menu */
.mcf-vmenu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mcf-vmenu li {
    list-style: none;
    line-height: 40px;
}

.mcf-vmenu > li > a {
    display: block;
    padding: 0 4px;
    background-color: var(--mcf-orange);
    color: var(--mcf-text);
    font-size: var(--mcf-menu-font-size);
    font-family: Arial, sans-serif;
    text-decoration: none;
    transition: background 0.2s;
}

.mcf-vmenu > li > a:hover,
.mcf-vmenu > li.current-menu-item > a {
    background-color: var(--mcf-white);
}

.mcf-vmenu > li.current-menu-item > a,
.mcf-vmenu > li.current-menu-parent > a {
    background-color: var(--mcf-orange-dark);
}

/* Sidebar Submenu */
.mcf-vmenu li ul.sub-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: none;
}

.mcf-vmenu li.current-menu-item > ul.sub-menu,
.mcf-vmenu li.current-menu-parent > ul.sub-menu,
.mcf-vmenu li:hover > ul.sub-menu {
    display: block;
}

.mcf-vmenu li ul.sub-menu li {
    line-height: 20px;
}

.mcf-vmenu li ul.sub-menu li a {
    display: block;
    padding: 4px;
    background-color: var(--mcf-orange-dark);
    color: var(--mcf-text);
    font-size: var(--mcf-menu-font-size);
    font-family: Arial, sans-serif;
    text-decoration: none;
    transition: background 0.2s;
}

.mcf-vmenu li ul.sub-menu li a:hover {
    background-color: var(--mcf-white);
}

/* Sidebar Widget Styling */
.widget {
    margin-bottom: 15px;
}

.widget-title {
    font-size: var(--mcf-menu-font-size);
    font-family: Arial, sans-serif;
    color: var(--mcf-white);
    text-align: center;
    line-height: 30px;
    background: none;
    margin: 0;
}

/* WordPress Widget Navigation Menu */
#mcf-sidebar-left .widget_nav_menu ul,
#mcf-sidebar-left .wp-block-navigation ul,
#mcf-sidebar-left .widget ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#mcf-sidebar-left .widget_nav_menu ul li,
#mcf-sidebar-left .wp-block-navigation ul li,
#mcf-sidebar-left .widget ul li {
    list-style: none;
    margin: 0;
}

#mcf-sidebar-left .widget_nav_menu ul li a,
#mcf-sidebar-left .wp-block-navigation ul li a,
#mcf-sidebar-left .widget ul li a {
    display: block;
    padding: 8px 10px;
    background-color: var(--mcf-orange);
    color: var(--mcf-text);
    font-size: 14px;
    font-family: Arial, sans-serif;
    font-weight: bold;
    text-decoration: none;
    border-bottom: 1px solid var(--mcf-orange-border);
    line-height: 24px;
    transition: background 0.2s;
}

#mcf-sidebar-left .widget_nav_menu ul li a:hover,
#mcf-sidebar-left .wp-block-navigation ul li a:hover,
#mcf-sidebar-left .widget ul li a:hover {
    background-color: var(--mcf-white);
    color: var(--mcf-text);
}

#mcf-sidebar-left .widget_nav_menu ul li.current-menu-item a,
#mcf-sidebar-left .widget ul li.current-menu-item a {
    background-color: var(--mcf-orange-dark);
}

/* Submenu in Sidebar - Flyout nach rechts */
#mcf-sidebar-left .widget_nav_menu ul li {
    position: relative;
}

#mcf-sidebar-left .widget_nav_menu ul li ul.sub-menu {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    z-index: 300;
    min-width: 170px;
    margin: 0;
    padding: 0;
}

#mcf-sidebar-left .widget_nav_menu ul li:hover > ul.sub-menu {
    display: block;
}

#mcf-sidebar-left .widget_nav_menu ul li ul.sub-menu li a {
    padding: 8px 10px;
    background-color: var(--mcf-orange-dark);
    font-weight: normal;
    font-size: 13px;
    white-space: nowrap;
    border-bottom: 1px solid var(--mcf-orange-border);
}

#mcf-sidebar-left .widget_nav_menu ul li ul.sub-menu li a:hover {
    background-color: var(--mcf-white);
}

/* Pfeil-Indikator für Menüpunkte mit Unterpunkten */
#mcf-sidebar-left .widget_nav_menu ul li.menu-item-has-children > a::after {
    content: ' \25B8';
    float: right;
    font-size: 10px;
}

/* ==========================================================================
   Content Area
   ========================================================================== */
#mcf-content-area {
    overflow: hidden;
    margin: 0 auto;
}

#mcf-content {
    float: left;
    width: var(--mcf-content-width);
}

#mcf-content.full-width {
    float: none;
    width: 100%;
}

#mcf-content-inner {
    padding: 15px;
    min-height: 400px;
}

/* Content Typography */
#mcf-content-inner h1 {
    font-size: 22px;
    color: var(--mcf-orange);
    margin-bottom: 15px;
    font-family: var(--mcf-font-main);
}

#mcf-content-inner h2 {
    font-size: 18px;
    color: var(--mcf-orange);
    margin-bottom: 12px;
    font-family: var(--mcf-font-main);
}

#mcf-content-inner h3 {
    font-size: 16px;
    color: var(--mcf-orange);
    margin-bottom: 10px;
    font-family: var(--mcf-font-main);
}

#mcf-content-inner h4, 
#mcf-content-inner h5, 
#mcf-content-inner h6 {
    font-size: 14px;
    color: var(--mcf-orange);
    margin-bottom: 8px;
    font-family: var(--mcf-font-main);
}

#mcf-content-inner table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 15px;
}

#mcf-content-inner table th {
    background: rgba(255,255,255,0);
    padding: 5px;
    text-align: left;
}

#mcf-content-inner table td {
    padding: 5px;
    border-bottom: 1px solid #333;
}

/* ==========================================================================
   Geburtstage Widget
   ========================================================================== */
.mcf-birthdays {
    background: rgba(29,28,27,0.8);
    border: 1px solid #333;
    border-radius: 3px;
    padding: 10px;
    margin-bottom: 15px;
}

.mcf-birthdays h3 {
    color: var(--mcf-orange);
    font-size: 14px;
    margin-bottom: 8px;
    text-align: center;
}

.mcf-birthdays ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mcf-birthdays li {
    padding: 3px 0;
    border-bottom: 1px solid #333;
    font-size: 12px;
    color: var(--mcf-white);
}

.mcf-birthdays li:last-child {
    border-bottom: none;
}

.mcf-birthdays .birthday-date {
    color: var(--mcf-orange);
    font-weight: bold;
}

/* ==========================================================================
   Countdown / Jubilaeum Banner
   ========================================================================== */
.mcf-jubilee-banner {
    background: linear-gradient(135deg, #1D1C1B 0%, #2a2000 50%, #1D1C1B 100%);
    border: 2px solid var(--mcf-orange);
    border-radius: 5px;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.mcf-jubilee-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,165,0,0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.mcf-jubilee-banner h2 {
    color: var(--mcf-orange);
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(255,165,0,0.3);
}

.mcf-jubilee-top {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.mcf-jubilee-years {
    color: #ccc;
    font-size: 20px;
    font-weight: normal;
}

.mcf-jubilee-title {
    color: var(--mcf-orange);
    font-size: 28px;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255,165,0,0.3);
}

.mcf-jubilee-subtitle {
    color: var(--mcf-orange);
    font-size: 32px;
    font-weight: bold;
    text-shadow: 0 0 15px rgba(255,165,0,0.4);
    margin-bottom: 5px;
}

.mcf-jubilee-banner .countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.mcf-jubilee-banner .countdown-item {
    text-align: center;
}

.mcf-jubilee-banner .countdown-number {
    font-size: 36px;
    font-weight: bold;
    color: var(--mcf-orange);
    display: block;
}

.mcf-jubilee-banner .countdown-label {
    font-size: 12px;
    color: var(--mcf-white);
    text-transform: uppercase;
}

/* ==========================================================================
   Footer
   ========================================================================== */
#mcf-footer {
    background-color: var(--mcf-dark);
    border-top: 1px solid #939393;
    position: relative;
}

.mcf-footer-widgets {
    display: flex;
    padding: 15px;
}

.mcf-footer-widgets .widget-area {
    width: 33.33%;
    padding: 0 10px;
}

.mcf-footer-bottom {
    height: var(--mcf-footer-height);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mcf-footer-copyright {
    font-size: 11px;
    font-family: Arial, sans-serif;
    color: var(--mcf-orange);
    text-align: center;
}

.mcf-footer-copyright a {
    color: var(--mcf-orange);
    text-decoration: none;
}

.mcf-footer-social {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 10px;
}

.mcf-footer-social a {
    display: inline-block;
    width: 30px;
    height: 30px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.mcf-footer-social a:hover {
    opacity: 1;
}

/* Footer Links (Impressum, Datenschutz) */
.mcf-footer-links {
    text-align: center;
    padding: 10px 0;
    border-top: 1px solid #333;
}

.mcf-footer-links a {
    color: #999;
    font-size: 11px;
    margin: 0 10px;
    text-decoration: none;
}

.mcf-footer-links a:hover {
    color: var(--mcf-orange);
}

/* ==========================================================================
   WordPress Specific
   ========================================================================== */

/* Post/Article Styling */
.mcf-post {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #333;
}

.mcf-post:last-child {
    border-bottom: none;
}

.mcf-post-title {
    font-size: 20px;
    color: var(--mcf-orange);
    margin-bottom: 5px;
}

.mcf-post-title a {
    color: var(--mcf-orange);
    text-decoration: none;
}

.mcf-post-title a:hover {
    color: var(--mcf-white);
}

.mcf-post-meta {
    font-size: 11px;
    color: #999;
    margin-bottom: 10px;
}

.mcf-post-content {
    color: var(--mcf-content-text);
    line-height: 1.6;
}

.mcf-post-content img {
    margin: 10px 0;
}

/* Pagination */
.mcf-pagination {
    text-align: center;
    margin: 20px 0;
}

.mcf-pagination a,
.mcf-pagination span {
    display: inline-block;
    padding: 5px 10px;
    margin: 0 3px;
    background: var(--mcf-dark);
    color: var(--mcf-orange);
    border: 1px solid #333;
    text-decoration: none;
}

.mcf-pagination .current,
.mcf-pagination a:hover {
    background: var(--mcf-orange);
    color: var(--mcf-text);
}

/* Members Only - Login Form */
.mcf-login-form {
    max-width: 400px;
    margin: 30px auto;
    padding: 20px;
    background: rgba(29,28,27,0.8);
    border: 1px solid #333;
    border-radius: 5px;
}

.mcf-login-form label {
    display: block;
    color: var(--mcf-orange);
    margin-bottom: 5px;
    font-size: 13px;
}

.mcf-login-form input[type="text"],
.mcf-login-form input[type="password"] {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    background: #333;
    border: 1px solid #555;
    color: var(--mcf-white);
    border-radius: 3px;
}

.mcf-login-form input[type="submit"] {
    background-color: var(--mcf-orange);
    color: var(--mcf-text);
    padding: 8px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s;
}

.mcf-login-form input[type="submit"]:hover {
    background-color: var(--mcf-orange-dark);
}

/* ==========================================================================
   Buttons (like original)
   ========================================================================== */
.mcf-button,
button,
input[type="submit"] {
    background-color: #D6CEAE;
    background: linear-gradient(180deg, rgba(214,206,174,1) 0%, rgba(226,220,198,1) 100%);
    border-radius: 9px;
    border: 0 solid #2D2915;
    box-shadow: 0 0 5px var(--mcf-shadow);
    padding: 6px 11px;
    font-size: 13px;
    font-family: var(--mcf-font-main);
    color: #282515;
    text-decoration: none;
    cursor: pointer;
    margin: 5px 5px 0 0;
}

.mcf-button:hover,
button:hover,
input[type="submit"]:hover {
    border-color: #AD7000;
    background: rgba(254,153,98,1);
    color: #D96E02;
}

/* ==========================================================================
   Clearfix
   ========================================================================== */
.clearfix::after {
    content: '';
    display: table;
    clear: both;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

/* Tablets */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
    #mcf-page-inner {
        width: auto;
        margin: 0;
        border: none;
        border-radius: 0;
    }

    #mcf-header-inner {
        width: 100%;
        height: auto;
    }

    .mcf-slideshow {
        height: 120px;
    }

    #mcf-sidebar-left {
        width: 20%;
    }

    #mcf-content {
        width: 80%;
    }
}

/* Small Tablets */
@media only screen and (min-width: 481px) and (max-width: 767px) {
    #mcf-page {
        padding-top: 0;
    }

    #mcf-page-inner {
        width: auto;
        margin: 0;
        box-shadow: none;
        border: none;
        border-radius: 0;
    }

    .mcf-slideshow {
        height: 100px;
    }

    #mcf-sidebar-left {
        float: none;
        width: 100%;
    }

    #mcf-content {
        float: none;
        width: 100%;
    }

    .mcf-menu-toggle {
        display: inline-block;
    }

    .mcf-menu {
        display: none;
        width: 100%;
    }

    .mcf-menu.toggled-on {
        display: block;
        background-color: var(--mcf-orange);
    }

    .mcf-menu > li {
        display: block;
    }

    .mcf-menu > li > a {
        display: block;
        margin: 0;
    }

    .mcf-menu li ul.sub-menu {
        position: static;
        display: none;
    }

    .mcf-menu li.toggled-on > ul.sub-menu {
        display: block;
    }

    .mcf-footer-widgets {
        flex-direction: column;
    }

    .mcf-footer-widgets .widget-area {
        width: 100%;
    }
}

/* Smartphones */
@media only screen and (max-width: 480px) {
    #mcf-page {
        padding-top: 0;
    }

    #mcf-page-inner {
        width: auto;
        margin: 0;
        box-shadow: none;
        border: none;
        border-radius: 0;
    }

    .mcf-slideshow {
        display: none;
    }

    .mcf-header-overlay {
        display: none;
    }

    #mcf-nav-inner {
        height: auto;
    }

    .mcf-menu-toggle {
        display: inline-block;
    }

    .mcf-menu {
        display: none;
        width: 100%;
    }

    .mcf-menu.toggled-on {
        display: block;
        background-color: var(--mcf-orange);
    }

    .mcf-menu > li {
        display: block;
    }

    .mcf-menu > li > a {
        display: block;
        margin: 0;
        line-height: 25px;
    }

    .mcf-menu li ul.sub-menu {
        position: static;
        display: none;
        width: 100%;
    }

    .mcf-menu li.toggled-on > ul.sub-menu {
        display: block;
    }

    #mcf-sidebar-left {
        float: none;
        width: 100%;
        padding: 0;
    }

    #mcf-content {
        float: none;
        width: 100%;
        padding: 10px;
    }

    .mcf-footer-widgets {
        display: none;
    }

    .mcf-footer-bottom {
        height: auto;
        padding: 10px;
    }

    .mcf-footer-social {
        position: static;
        transform: none;
        justify-content: center;
        margin-top: 10px;
    }

    .mcf-jubilee-banner h2 {
        font-size: 20px;
    }

    .mcf-jubilee-title {
        font-size: 20px;
    }

    .mcf-jubilee-subtitle {
        font-size: 22px;
    }

    .mcf-jubilee-banner .countdown-number {
        font-size: 24px;
    }
}

/* ==========================================================================
   NextGEN Gallery Styling
   ========================================================================== */

/* Album-Übersicht: 3 Spalten Grid */
.ngg-albumoverview {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 15px !important;
    width: 100% !important;
    padding: 10px !important;
}

.ngg-album-compact {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 15px !important;
    width: 100% !important;
    padding: 10px !important;
}

/* Einzelne Album-Kachel */
.ngg-album-compact .ngg-album-compactbox,
.ngg-albumoverview .ngg-album-compact-item,
.ngg-album-compact .ngg-gallery-thumbnail-box {
    background-color: #1D1C1B !important;
    border: 1px solid #DF7001 !important;
    border-radius: 4px !important;
    overflow: hidden !important;
    text-align: center !important;
    width: 100% !important;
    margin: 0 !important;
    float: none !important;
}

/* Thumbnail-Bilder */
.ngg-album-compact img,
.ngg-albumoverview img,
.ngg-gallery-thumbnail img {
    width: 100% !important;
    height: 180px !important;
    object-fit: cover !important;
    display: block !important;
}

/* Galerie-Titel unter dem Bild */
.ngg-album-compact .ngg-album-title,
.ngg-albumoverview .ngg-album-title,
.ngg-album-compact h4,
.ngg-album-compact a {
    color: #FFA500 !important;
    font-family: Arial, sans-serif !important;
    font-size: 13px !important;
    font-weight: bold !important;
    text-decoration: none !important;
    padding: 8px 5px !important;
    display: block !important;
    background-color: #1D1C1B !important;
}

.ngg-album-compact a:hover {
    color: #FFFFFF !important;
}

/* Galerie-Beschreibung ausblenden */
.ngg-album-compact .ngg-album-desc {
    display: none !important;
}

/* Thumbnail-Galerie: 3 Spalten */
.ngg-galleryoverview {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 10px !important;
    width: 100% !important;
}

.ngg-galleryoverview .ngg-gallery-thumbnail-box {
    width: 100% !important;
    margin: 0 !important;
    float: none !important;
}

.ngg-galleryoverview .ngg-gallery-thumbnail img {
    width: 100% !important;
    height: 150px !important;
    object-fit: cover !important;
}

/* Navigation (Seiten) */
.ngg-navigation {
    text-align: center !important;
    padding: 15px 0 !important;
    grid-column: 1 / -1 !important;
}

.ngg-navigation a,
.ngg-navigation span {
    color: #FFA500 !important;
    background-color: #1D1C1B !important;
    border: 1px solid #DF7001 !important;
    padding: 5px 10px !important;
    margin: 2px !important;
    text-decoration: none !important;
}

.ngg-navigation span.current {
    background-color: #FFA500 !important;
    color: #000000 !important;
}

/* Responsive: 2 Spalten unter 767px */
@media (max-width: 767px) {
    .ngg-albumoverview,
    .ngg-album-compact,
    .ngg-galleryoverview {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Responsive: 1 Spalte unter 480px */
@media (max-width: 480px) {
    .ngg-albumoverview,
    .ngg-album-compact,
    .ngg-galleryoverview {
        grid-template-columns: 1fr !important;
    }
}

/* ==========================================================================
   Login Widget
   ========================================================================== */
.mcf-login-widget {
    padding: 8px;
}

.mcf-login-title {
    color: #FFA500;
    font-size: 14px;
    margin-bottom: 8px;
    text-align: center;
}

.mcf-login-form {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mcf-login-input {
    width: 100%;
    padding: 6px 8px;
    background: #2a2a2a;
    color: #F0A500;
    border: 1px solid #555;
    border-radius: 3px;
    font-size: 13px;
    box-sizing: border-box;
}

.mcf-login-input:focus {
    border-color: #FFA500;
    outline: none;
}

.mcf-login-input::placeholder {
    color: #777;
}

.mcf-login-btn {
    width: 100%;
    font-size: 13px;
    padding: 6px;
}

.mcf-login-hello {
    color: #ccc;
    text-align: center;
    margin-bottom: 8px;
    font-size: 13px;
}

.mcf-login-hello strong {
    color: #FFA500;
}

.mcf-login-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mcf-login-links a {
    display: block;
    padding: 5px 8px;
    background: #333;
    color: #FFA500;
    text-decoration: none;
    font-size: 12px;
    border-radius: 3px;
    transition: background 0.2s;
}

.mcf-login-links a:hover {
    background: #444;
}

/* ==========================================================================
   Vorstand & Mitglieder
   ========================================================================== */
.mcf-vorstand-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mcf-vorstand-card {
    display: flex;
    gap: 15px;
    background: #2a2a2a;
    border: 1px solid #555;
    border-radius: 4px;
    padding: 15px;
}

.mcf-vorstand-card:hover {
    border-color: #FFA500;
}

.mcf-vorstand-photo {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
}

.mcf-vorstand-photo img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 4px;
}

.mcf-vorstand-info h3 {
    color: #FFA500;
    font-size: 16px;
    margin-bottom: 5px;
}

.mcf-vorstand-info .mcf-nick {
    color: #999;
    font-style: italic;
    margin-bottom: 3px;
}

.mcf-vorstand-info .mcf-funktion {
    color: #FFD000;
    font-weight: bold;
    margin-bottom: 5px;
}

.mcf-vorstand-info .mcf-email,
.mcf-vorstand-info .mcf-telefon {
    color: #ccc;
    font-size: 13px;
    margin-bottom: 2px;
}

/* Mitglieder Liste */
.mcf-members-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mcf-member-row {
    display: flex;
    gap: 15px;
    background: #2a2a2a;
    border: 1px solid #555;
    border-radius: 4px;
    padding: 12px;
}

.mcf-member-row:hover {
    border-color: #FFA500;
}

.mcf-member-row .mcf-member-photo {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
}

.mcf-member-row .mcf-member-photo img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #555;
    transition: border-color 0.2s;
}

.mcf-member-row .mcf-member-photo img:hover {
    border-color: #FFA500;
}

.mcf-member-nophoto {
    width: 100px;
    height: 100px;
    background: #333;
    border: 1px solid #555;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

.mcf-member-details h3 {
    margin-bottom: 5px;
}

.mcf-member-details h3 a {
    color: #FFA500;
    text-decoration: none;
    font-size: 16px;
}

.mcf-member-details h3 a:hover {
    color: #FFD000;
}

.mcf-detail {
    color: #ccc;
    font-size: 13px;
    margin-bottom: 3px;
    line-height: 1.4;
}

.mcf-label {
    color: #FFA500;
    font-weight: bold;
}
