/**
 * Theme1 Schützenauszug Styles
 * Frontend-Stile für den Schützenauszug-Bereich
 */

/* Google Fonts werden nicht mehr eingebunden, da die globale Theme-Schriftart verwendet wird */

.wp-block-theme1-schuetzenauszug {
    position: relative;
    padding: 8rem 0;
    background: linear-gradient(135deg, #1e3a32 0%, #0a1f18 100%);
    color: #ffffff;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    box-sizing: border-box;
}

.wp-block-theme1-schuetzenauszug::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: none;
    opacity: 0.5;
    z-index: 1;
}

.theme1-schuetzenauszug-inner {
    position: relative;
    z-index: 2;
    max-width: var(--wp--style--global--content-size, 1200px);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header-Bereich */
.theme1-schuetzenauszug-header {
    text-align: center;
    margin-bottom: 6rem;
    position: relative;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.theme1-schuetzenauszug-header::after {
    content: '';
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #d4af37;
    border-radius: 2px;
}

.theme1-schuetzenauszug-title {
    font-size: 3.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: inherit; /* Globale Farbe verwenden statt Gold-Akzentfarbe */
    margin-bottom: 1.5rem;
    margin-top: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    background-color: transparent !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
}

.theme1-schuetzenauszug-subtitle {
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: #ffffff;
    letter-spacing: 0.5px;
    opacity: 0.95;
}

.theme1-schuetzenauszug-description {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

/* Content-Bereich */
.theme1-schuetzenauszug-content {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

/* Event-Karten mit Bildern */
.theme1-schuetzenauszug-event-card {
    display: flex;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.theme1-schuetzenauszug-event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.theme1-schuetzenauszug-event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.theme1-schuetzenauszug-event-card:hover::before {
    opacity: 1;
}

.theme1-schuetzenauszug-event-card:nth-child(odd) {
    flex-direction: row;
}

.theme1-schuetzenauszug-event-card:nth-child(even) {
    flex-direction: row-reverse;
}

/* Event-Bereich */
.theme1-schuetzenauszug-event {
    flex: 0 0 50%;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    position: relative;
    z-index: 2;
}

.theme1-schuetzenauszug-event::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 60%;
    background: linear-gradient(to bottom, #d4af37 0%, rgba(212, 175, 55, 0.3) 100%);
    border-radius: 3px;
}

.theme1-schuetzenauszug-event-card:nth-child(odd) .theme1-schuetzenauszug-event::before {
    left: 0;
}

.theme1-schuetzenauszug-event-card:nth-child(even) .theme1-schuetzenauszug-event::before {
    right: 0;
}

.theme1-schuetzenauszug-event-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: inherit; /* Globale Farbe verwenden statt weiß */
    margin-bottom: 0.5rem;
    margin-top: 0;
    line-height: 1.3;
    background-color: transparent !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
}

.theme1-schuetzenauszug-event-title::before {
    display: none;
}

.theme1-schuetzenauszug-event-time {
    font-size: 1.1rem;
    font-weight: 600;
    color: #d4af37; /* Gold-Akzentfarbe */
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 0.4rem 1rem;
    background: transparent;
    border-radius: 30px;
    letter-spacing: 0.5px;
}

.theme1-schuetzenauszug-event-time i {
    margin-right: 0.5rem;
    opacity: 0.9;
}

.theme1-schuetzenauszug-event-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
}

/* Bild-Bereich */
.theme1-schuetzenauszug-image {
    flex: 0 0 50%;
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.theme1-schuetzenauszug-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease, filter 0.8s ease;
    filter: brightness(0.9) saturate(1.1);
}

.theme1-schuetzenauszug-event-card:hover .theme1-schuetzenauszug-image img {
    transform: scale(1.05);
    filter: brightness(1.05) saturate(1.2);
}

.theme1-schuetzenauszug-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.7;
    transition: opacity 0.4s ease;
}

.theme1-schuetzenauszug-event-card:nth-child(odd) .theme1-schuetzenauszug-image::after {
    background: linear-gradient(to right, rgba(30, 58, 50, 0.8) 0%, rgba(30, 58, 50, 0) 100%);
}

.theme1-schuetzenauszug-event-card:nth-child(even) .theme1-schuetzenauszug-image::after {
    background: linear-gradient(to left, rgba(30, 58, 50, 0.8) 0%, rgba(30, 58, 50, 0) 100%);
}

.theme1-schuetzenauszug-event-card:hover .theme1-schuetzenauszug-image::after {
    opacity: 0.5;
}

/* Responsive Anpassungen */
@media (max-width: 1200px) {
    .theme1-schuetzenauszug-title {
        font-size: 3rem;
    }
    
    .theme1-schuetzenauszug-subtitle {
        font-size: 1.4rem;
    }
    
    .theme1-schuetzenauszug-event {
        padding: 3rem;
    }
    
    .theme1-schuetzenauszug-image {
        min-height: 350px;
    }
}

@media (max-width: 992px) {
    .wp-block-theme1-schuetzenauszug {
        padding: 6rem 0;
    }
    
    .theme1-schuetzenauszug-title {
        font-size: 2.8rem;
    }
    
    .theme1-schuetzenauszug-subtitle {
        font-size: 1.3rem;
    }
    
    .theme1-schuetzenauszug-event-title {
        font-size: 1.6rem;
    }
    
    .theme1-schuetzenauszug-event-time {
        font-size: 1.1rem;
    }
    
    .theme1-schuetzenauszug-event-description {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .wp-block-theme1-schuetzenauszug {
        padding: 5rem 0;
    }
    
    .theme1-schuetzenauszug-header {
        margin-bottom: 4rem;
    }
    
    .theme1-schuetzenauszug-title {
        font-size: 2.5rem;
    }
    
    .theme1-schuetzenauszug-subtitle {
        font-size: 1.2rem;
    }
    
    .theme1-schuetzenauszug-content {
        gap: 3rem;
    }
    
    /* Wichtig: Alle Karten in der mobilen Ansicht gleich behandeln */
    .theme1-schuetzenauszug-event-card,
    .theme1-schuetzenauszug-event-card:nth-child(1),
    .theme1-schuetzenauszug-event-card:nth-child(2),
    .theme1-schuetzenauszug-event-card:nth-child(3),
    .theme1-schuetzenauszug-event-card:nth-child(odd),
    .theme1-schuetzenauszug-event-card:nth-child(even) {
        flex-direction: column !important;
        display: flex !important; /* Erzwinge Anzeige */
    }
    
    /* Stelle sicher, dass alle Event- und Bild-Bereiche korrekt angezeigt werden */
    .theme1-schuetzenauszug-event,
    .theme1-schuetzenauszug-image {
        flex: 0 0 100% !important;
        width: 100% !important;
        display: block !important; /* Erzwinge Anzeige */
    }
    
    /* Stelle sicher, dass alle Bilder korrekt angezeigt werden */
    .theme1-schuetzenauszug-image {
        min-height: 300px !important;
        order: -1 !important;
        position: relative !important;
    }
    
    /* Stelle sicher, dass alle Bilder korrekt angezeigt werden */
    .theme1-schuetzenauszug-image img {
        position: absolute !important;
        display: block !important;
        width: 100% !important;
        height: 100% !important;
    }
    
    /* Stelle sicher, dass alle Event-Bereiche korrekt angezeigt werden */
    .theme1-schuetzenauszug-event {
        order: 1 !important;
    }
    
    /* Anpassung der Trennlinie für die mobile Ansicht */
    .theme1-schuetzenauszug-event::before {
        top: 0 !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 60% !important;
        height: 6px !important;
    }
    
    /* Stelle sicher, dass die Trennlinie für alle Karten gleich ist */
    .theme1-schuetzenauszug-event-card:nth-child(even) .theme1-schuetzenauszug-event::before {
        right: auto !important;
        left: 50% !important;
    }
    
    /* Anpassung der Hintergrundverläufe für die mobile Ansicht */
    .theme1-schuetzenauszug-event-card:nth-child(odd) .theme1-schuetzenauszug-image::after,
    .theme1-schuetzenauszug-event-card:nth-child(even) .theme1-schuetzenauszug-image::after {
        background: linear-gradient(to top, rgba(30, 58, 50, 0.8) 0%, rgba(30, 58, 50, 0) 100%) !important;
    }
}

@media (max-width: 576px) {
    .wp-block-theme1-schuetzenauszug {
        padding: 4rem 0;
    }
    
    .theme1-schuetzenauszug-title {
        font-size: 2.2rem;
    }
    
    .theme1-schuetzenauszug-subtitle {
        font-size: 1.1rem;
    }
    
    .theme1-schuetzenauszug-description {
        font-size: 1.1rem;
    }
    
    .theme1-schuetzenauszug-event {
        padding: 2.5rem 2rem;
    }
    
    .theme1-schuetzenauszug-event-title {
        font-size: 1.4rem;
    }
    
    .theme1-schuetzenauszug-event-time {
        font-size: 1.1rem;
        padding: 0.3rem 0.8rem;
    }
    
    .theme1-schuetzenauszug-event-description {
        font-size: 1.1rem;
    }
    
    .theme1-schuetzenauszug-image {
        min-height: 250px !important;
    }
} 