/*
Theme Name: Basemedia
Description: Schlankes WordPress Theme von Basemedia - Mobile First
Version: 1.0.2
Author: Basemedia
Text Domain: basemedia
*/

@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&display=swap");

:root {
    --primary: #E30613;
    --primary-dark: #B8050F;
    --secondary: #1D3557;
    --secondary-dark: #162d4a;
    --text-dark: #1a1a2e;
    --text-body: #4a5568;
    --bg-light: #f8fafc;
    --border-light: #e2e8f0;
    --radius-full: 9999px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
    --transition: 0.2s ease;
}

*, *::before, *::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-body);
    background: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.25;
    margin: 0 0 1rem;
}

h1 { font-size: clamp(1.75rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

/* =============================================
   LAYOUT - Mobile First
   ============================================= */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.site-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* =============================================
   STICKY HEADER WRAPPER
   ============================================= */
.sticky-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--secondary); /* Top-Bar Farbe als Fallback */
}

/* =============================================
   TOP BAR - Mobile First
   ============================================= */
.top-bar {
    background: var(--secondary);
    color: white;
    padding: 0.35rem 0;
    font-size: 0.75rem;
}

.top-bar .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.top-bar-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.top-bar-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: rgba(255,255,255,0.85);
    transition: color var(--transition);
    font-size: 0.75rem;
}

.top-bar-link:hover {
    color: white;
}

.top-bar-link svg {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
}

.top-bar-button {
    background: var(--primary);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: white;
    transition: all var(--transition);
    font-size: 0.8125rem;
}

.top-bar-button:hover {
    background: var(--primary-dark);
    color: white;
}

.top-bar-button svg {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
}

/* =============================================
   HEADER - Mobile First
   ============================================= */
.site-header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    min-height: 60px;
}

/* Logo - Mobile */
.site-logo {
    flex-shrink: 0;
}

.site-logo img,
.custom-logo {
    height: 45px;
    width: auto;
    display: block;
    max-width: none;
}

.site-logo a,
.custom-logo-link {
    display: block;
    line-height: 0;
}

/* Mobile Toggle - Visible by default (Mobile First) */
.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition);
    border-radius: 2px;
}

/* Navigation - Mobile First (Hidden by default) */
.main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: var(--shadow-lg);
    display: none;
    padding: 1rem;
    max-height: calc(100vh - 140px);
    overflow-y: auto;
    z-index: 999;
}

.main-nav.is-active {
    display: block;
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.main-nav > ul > li {
    position: relative;
    border-bottom: 1px solid var(--border-light);
}

.main-nav > ul > li:last-child {
    border-bottom: none;
}

.main-nav > ul > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 0;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.875rem;
    transition: color var(--transition);
}

.main-nav > ul > li > a:hover,
.main-nav > ul > li.current-menu-item > a,
.main-nav > ul > li.current-menu-parent > a {
    color: var(--primary);
}

/* Dropdown Arrow - Mobile */
.main-nav .menu-item-has-children > a::after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid currentColor;
    opacity: 0.5;
    transition: transform var(--transition);
}

/* Dropdown Menu - Mobile (visible, indented) */
.main-nav ul ul {
    display: block;
    padding-left: 1rem;
    background: transparent;
}

.main-nav ul ul li a {
    display: block;
    padding: 0.5rem 0;
    color: var(--text-body);
    font-size: 0.875rem;
}

.main-nav ul ul li a:hover {
    color: var(--primary);
}

/* =============================================
   CONTENT
   ============================================= */
.site-content {
    flex: 1;
}

.entry-content {
    padding: 0 1rem;
    max-width: 1280px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .entry-content {
        padding: 0 2rem;
    }
}

/* Full Width Blocks */
.alignfull {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.alignfull > .wp-block-cover__inner-container,
.alignfull > .wp-block-group__inner-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Hero - Mobile */
.wp-block-cover.alignfull {
    min-height: 400px;
}

.wp-block-cover h1 {
    color: white;
}

.wp-block-cover p {
    color: rgba(255,255,255,0.9);
}

/* Buttons */
.wp-block-button__link {
    background: var(--primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.875rem;
    border: none;
    display: inline-block;
    transition: all var(--transition);
}

.wp-block-button__link:hover {
    background: var(--primary-dark);
    color: white;
}

.is-style-outline .wp-block-button__link {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--border-light);
}

.is-style-outline .wp-block-button__link:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.wp-block-cover .is-style-outline .wp-block-button__link {
    border-color: rgba(255,255,255,0.5);
    color: white;
}

.wp-block-cover .is-style-outline .wp-block-button__link:hover {
    background: white;
    color: var(--secondary);
    border-color: white;
}

/* Service Cards */
.service-card {
    border: 1px solid var(--border-light);
    border-radius: 16px;
    overflow: hidden;
    background: white;
    transition: all var(--transition);
}

.service-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* =============================================
   FOOTER - Mobile First
   ============================================= */
.site-footer {
    background: var(--secondary);
    color: white;
    padding: 3rem 0 0;
    margin-top: 3rem;
}

.footer-widgets {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-widget h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer-widget p,
.footer-widget li {
    color: rgba(255,255,255,0.7);
    font-size: 0.9375rem;
}

.footer-widget a {
    color: rgba(255,255,255,0.7);
}

.footer-widget a:hover {
    color: white;
}

.footer-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widget li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.25rem 0;
    text-align: center;
    background: var(--secondary-dark);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
}

.footer-bottom a {
    color: rgba(255,255,255,0.6);
}

/* =============================================
   TABLET - min-width: 768px
   ============================================= */
@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }

    .top-bar .container {
        flex-direction: row;
        justify-content: space-between;
    }

    .top-bar-contact {
        flex-direction: row;
        gap: 1.5rem;
    }

    .header-inner {
        min-height: 70px;
    }

    .site-logo img,
    .custom-logo {
        height: 52px;
    }

    .alignfull > .wp-block-cover__inner-container,
    .alignfull > .wp-block-group__inner-container {
        padding: 0 2rem;
    }

    .wp-block-cover.alignfull {
        min-height: 500px;
    }

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

/* =============================================
   DESKTOP - min-width: 1200px
   ============================================= */
@media (min-width: 1280px) {
    /* Top Bar */
    .top-bar {
        padding: 0.6rem 0;
    }

    .top-bar-link,
    .top-bar-button {
        font-size: 0.875rem;
    }

    .top-bar-link svg,
    .top-bar-button svg {
        width: 16px;
        height: 16px;
    }

    /* Header */
    .header-inner {
        min-height: 80px;
        padding: 0.75rem 0;
    }

    .site-logo img,
    .custom-logo {
        height: 58px;
    }

    /* Hide mobile toggle */
    .menu-toggle {
        display: none;
    }

    /* Desktop Navigation */
    .main-nav {
        position: static;
        display: flex;
        background: transparent;
        box-shadow: none;
        padding: 0;
        max-height: none;
        overflow: visible;
    }

    .main-nav ul {
        flex-direction: row;
        align-items: center;
    }

    .main-nav > ul > li {
        border-bottom: none;
    }

    .main-nav > ul > li > a {
        padding: 0.875rem 0.5rem;
        font-size: 0.8125rem;
        font-weight: 500;
        white-space: nowrap;
        justify-content: flex-start;
        gap: 0.25rem;
        letter-spacing: 0.01em;
    }

    /* Dropdown Arrow - Desktop */
    .main-nav .menu-item-has-children > a::after {
        border-top-width: 4px;
        border-left-width: 4px;
        border-right-width: 4px;
    }

    .main-nav .menu-item-has-children:hover > a::after {
        transform: rotate(180deg);
        opacity: 1;
    }

    /* Dropdown Menu - Desktop */
    .main-nav ul ul {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%) translateY(10px);
        background: white;
        min-width: 260px;
        border-radius: 16px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.12);
        padding: 0.75rem;
        opacity: 0;
        visibility: hidden;
        display: block;
        transition: all 0.25s ease;
        z-index: 100;
    }

    .main-nav ul li:hover > ul {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }

    .main-nav ul ul li {
        margin: 0;
    }

    .main-nav ul ul li a {
        padding: 0.625rem 1rem;
        font-size: 0.9375rem;
        border-radius: 10px;
        transition: all var(--transition);
    }

    .main-nav ul ul li a:hover {
        background: var(--bg-light);
        color: var(--primary);
        padding-left: 1.25rem;
    }

    .main-nav ul ul li.current-menu-item > a {
        color: var(--primary);
        background: rgba(227, 6, 19, 0.05);
    }

    /* Hero */
    .wp-block-cover.alignfull {
        min-height: 550px;
    }

    /* Buttons */
    .wp-block-button__link {
        padding: 0.75rem 1.75rem;
        font-size: 0.9375rem;
    }

    .wp-block-button__link:hover {
        transform: translateY(-1px);
    }

    /* Footer */
    .site-footer {
        padding: 4rem 0 0;
        margin-top: 4rem;
    }

    .footer-widgets {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* =============================================
   LARGE DESKTOP - min-width: 1200px
   ============================================= */
@media (min-width: 1280px) {
    .main-nav > ul > li > a {
        padding: 0.875rem 0.65rem;
        font-size: 0.84375rem;
    }
}

/* =============================================
   EXTRA LARGE - min-width: 1400px
   ============================================= */
@media (min-width: 1400px) {
    .main-nav > ul > li > a {
        padding: 0.875rem 0.85rem;
        font-size: 0.875rem;
    }
}

/* =============================================
   THE EVENTS CALENDAR - CUSTOM STYLING
   ============================================= */

/* Events Container */
.tribe-events {
    font-family: inherit;
}

.tribe-common--breakpoint-medium.tribe-events .tribe-events-l-container {
    padding: 0;
    max-width: 1100px;
    margin: 0 auto;
}

/* Event List View */
.tribe-events-calendar-list {
    padding: 0;
}

/* Individual Event Card */
.tribe-events-calendar-list__event {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    margin-bottom: 1rem;
    padding: 1.25rem;
    transition: all 0.2s ease;
}

.tribe-events-calendar-list__event:hover {
    border-color: #E30613;
    box-shadow: 0 4px 12px rgba(227, 6, 19, 0.1);
}

/* Date display */
.tribe-events-calendar-list__event-date-tag {
    background: #E30613;
    color: #fff;
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    text-align: center;
    min-width: 60px;
}

.tribe-events-calendar-list__event-date-tag-month {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
}

.tribe-events-calendar-list__event-date-tag-daynum {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
}

/* Event Title */
.tribe-events-calendar-list__event-title a {
    color: #1D3557;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.tribe-events-calendar-list__event-title a:hover {
    color: #E30613;
}

/* Event Meta (Time, Venue) */
.tribe-events-calendar-list__event-datetime,
.tribe-events-calendar-list__event-venue {
    color: #4a5568;
    font-size: 0.875rem;
}

.tribe-events-calendar-list__event-venue-title {
    color: #4a5568;
}

/* Event Featured Image */
.tribe-events-calendar-list__event-featured-image-link img {
    border-radius: 8px;
}

/* Month Header */
.tribe-events-calendar-list__month-separator-text {
    background: #1D3557;
    color: #fff;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-weight: 600;
    font-size: 0.875rem;
}

/* Event Header Wrapper */
.tribe-events-header {
    margin-bottom: 1.5rem;
}

.tribe-events-header__title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1D3557;
}

/* Navigation Buttons */
.tribe-events-c-nav__list-item .tribe-events-c-nav__next,
.tribe-events-c-nav__list-item .tribe-events-c-nav__prev {
    background: #E30613;
    color: #fff;
    border-radius: 50px;
    padding: 0.5rem 1rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.tribe-events-c-nav__list-item .tribe-events-c-nav__next:hover,
.tribe-events-c-nav__list-item .tribe-events-c-nav__prev:hover {
    background: #c70510;
}

/* Today Button */
.tribe-events-c-top-bar__today-button {
    background: transparent;
    border: 2px solid #E30613;
    color: #E30613;
    border-radius: 50px;
    padding: 0.5rem 1rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.tribe-events-c-top-bar__today-button:hover {
    background: #E30613;
    color: #fff;
}

/* View Selector */
.tribe-events-c-view-selector__button {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    color: #4a5568;
}

.tribe-events-c-view-selector__button:hover {
    border-color: #E30613;
    color: #E30613;
}

/* Search/Filter Bar */
.tribe-events-c-search__input-group {
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.tribe-events-c-search__input {
    border-radius: 8px;
}

/* Event Details Page */
.tribe-events-single {
    max-width: 900px;
    margin: 0 auto;
}

.tribe-events-single-event-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1D3557;
    margin-bottom: 1rem;
}

.tribe-events-schedule {
    background: #f8fafc;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.tribe-events-schedule h2 {
    color: #E30613;
    font-size: 1.1rem;
    margin: 0;
}

/* Back to Events Link */
.tribe-events-back a {
    color: #E30613;
    font-weight: 500;
}

.tribe-events-back a:hover {
    text-decoration: underline;
}

/* Cost */
.tribe-events-cost {
    font-size: 1.25rem;
    font-weight: 700;
    color: #E30613;
}

/* Event Details Widget */
.tribe-events-event-meta {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1.5rem;
}

.tribe-events-meta-group-venue {
    color: #4a5568;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .tribe-events-calendar-list__event {
        padding: 1rem;
    }
    
    .tribe-events-calendar-list__event-date-tag-daynum {
        font-size: 1.25rem;
    }
    
    .tribe-events-calendar-list__event-title a {
        font-size: 1rem;
    }
    
    .tribe-events-single-event-title {
        font-size: 1.5rem;
    }
}

/* =============================================
   HOMEPAGE EVENTS SECTION - MODERN STYLING
   ============================================= */

.homepage-events .tribe-events-calendar-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    padding: 0;
}

@media (max-width: 768px) {
    .homepage-events .tribe-events-calendar-list {
        grid-template-columns: 1fr;
    }
}

.homepage-events .tribe-events-calendar-list__event {
    background: linear-gradient(135deg, #fff 0%, #f8fafc 100%);
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    padding: 0;
    margin: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: row;
    align-items: stretch;
}

.homepage-events .tribe-events-calendar-list__event:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(227, 6, 19, 0.15);
    border-color: #E30613;
}

.homepage-events .tribe-events-calendar-list__event-row {
    display: flex;
    width: 100%;
}

.homepage-events .tribe-events-calendar-list__event-date-tag {
    background: linear-gradient(135deg, #E30613 0%, #c70510 100%);
    color: #fff;
    border-radius: 0;
    padding: 1.25rem 1rem;
    text-align: center;
    min-width: 85px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.homepage-events .tribe-events-calendar-list__event-date-tag-month {
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2px;
}

.homepage-events .tribe-events-calendar-list__event-date-tag-daynum {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    color: #fff;
}

.homepage-events .tribe-events-calendar-list__event-details {
    padding: 1.25rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.homepage-events .tribe-events-calendar-list__event-title {
    margin: 0 0 0.5rem 0;
}

.homepage-events .tribe-events-calendar-list__event-title a {
    color: #1D3557;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: color 0.2s ease;
    line-height: 1.3;
}

.homepage-events .tribe-events-calendar-list__event-title a:hover {
    color: #E30613;
}

.homepage-events .tribe-events-calendar-list__event-datetime {
    color: #64748b;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.homepage-events .tribe-events-calendar-list__event-datetime::before {
    content: 🕐;
    font-size: 0.9rem;
}

.homepage-events .tribe-events-calendar-list__event-venue {
    color: #64748b;
    font-size: 0.85rem;
    margin-top: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.homepage-events .tribe-events-calendar-list__event-venue::before {
    content: 📍;
    font-size: 0.9rem;
}

/* Hide elements we don't need on homepage */
.homepage-events .tribe-events-header,
.homepage-events .tribe-events-c-nav,
.homepage-events .tribe-events-calendar-list__month-separator,
.homepage-events .tribe-events-calendar-list__event-description,
.homepage-events .tribe-events-calendar-list__event-featured-image {
    display: none !important;
}

/* Mobile adjustments */
@media (max-width: 480px) {
    .homepage-events .tribe-events-calendar-list__event-date-tag {
        min-width: 70px;
        padding: 1rem 0.75rem;
    }
    
    .homepage-events .tribe-events-calendar-list__event-date-tag-daynum {
        font-size: 1.5rem;
    }
    
    .homepage-events .tribe-events-calendar-list__event-details {
        padding: 1rem;
    }
    
    .homepage-events .tribe-events-calendar-list__event-title a {
        font-size: 1rem;
    }
}

/* =============================================
   EVENTS PAGE BREADCRUMB & IMPROVED STYLING
   ============================================= */

/* Breadcrumb Header */
.events-breadcrumb-header {
    background: #1D3557;
    padding: 24px 0;
    margin-bottom: 30px;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
    position: relative;
}

.events-breadcrumb-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.events-breadcrumb {
    font-size: 14px;
    margin-bottom: 12px;
}

.events-breadcrumb a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
}

.events-breadcrumb a:hover {
    color: #fff;
}

.events-breadcrumb .sep {
    color: rgba(255,255,255,0.5);
    margin: 0 8px;
}

.events-breadcrumb .current {
    color: #fff;
}

.events-page-title {
    color: #fff;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    margin: 0;
}

/* Improved Event Card Readability */
.tribe-events-calendar-list__event {
    background: #fff !important;
    border: 1px solid #e2e8f0 !important;
}

.tribe-events-calendar-list__event-title a {
    color: #1D3557 !important;
    font-weight: 600 !important;
}

.tribe-events-calendar-list__event-title a:hover {
    color: #E30613 !important;
}

.tribe-events-calendar-list__event-datetime,
.tribe-events-calendar-list__event-datetime-wrapper {
    color: #374151 !important;
}

.tribe-events-calendar-list__event-venue-title,
.tribe-events-calendar-list__event-venue {
    color: #4b5563 !important;
}

/* Event Month Separator */
.tribe-events-calendar-list__month-separator-text {
    background: #1D3557 !important;
    color: #fff !important;
}

/* Single Event Page */
.single-tribe_events .tribe-events-single-event-title {
    color: #1D3557;
}

.single-tribe_events .tribe-events-schedule h2 {
    color: #E30613;
}

/* =============================================
   LRK Events Grid - Custom Shortcode Styles
   ============================================= */
.lrk-events-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.lrk-event-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.lrk-event-card:hover {
    border-color: #E30613;
    box-shadow: 0 4px 12px rgba(227,6,19,0.15);
    transform: translateY(-2px);
}

.lrk-event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 70px;
    height: 70px;
    background: #1D3557;
    border-radius: 10px;
    color: #fff;
    flex-shrink: 0;
}

.lrk-event-date .day {
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}

.lrk-event-date .month {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.lrk-event-info {
    flex: 1;
    min-width: 0;
}

.lrk-event-title {
    font-size: 17px;
    font-weight: 600;
    color: #1D3557;
    margin: 0 0 6px 0;
    line-height: 1.3;
}

.lrk-event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

.lrk-event-meta .time,
.lrk-event-meta .venue {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.lrk-event-arrow {
    font-size: 20px;
    color: #E30613;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.lrk-event-card:hover .lrk-event-arrow {
    opacity: 1;
}

/* Mobile adjustments */
@media (max-width: 600px) {
    .lrk-event-card {
        padding: 16px;
        gap: 14px;
    }
    
    .lrk-event-date {
        min-width: 60px;
        height: 60px;
    }
    
    .lrk-event-date .day {
        font-size: 24px;
    }
    
    .lrk-event-title {
        font-size: 15px;
    }
    
    .lrk-event-meta {
        font-size: 13px;
        flex-direction: column;
        gap: 4px;
    }
    
    .lrk-event-arrow {
        display: none;
    }
}

/* =============================================
   Events Breadcrumb Header
   ============================================= */
.events-breadcrumb-header {
    background: #1D3557;
    padding: 24px 20px;
    margin-bottom: 30px;
}

.events-breadcrumb-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.events-breadcrumb {
    font-size: 14px;
    margin: 0 0 12px 0;
}

.events-breadcrumb a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
}

.events-breadcrumb a:hover {
    color: #ffffff;
}

.events-breadcrumb .sep {
    color: rgba(255,255,255,0.5);
    margin: 0 8px;
}

.events-breadcrumb .current {
    color: #ffffff;
}

.events-page-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}
