/* ============================================
   VENKOVNÍ STOLOVÉ PODNOŽE - Outdoor Box
   Standalone CSS for the outdoor box redesign
   ============================================ */

/* Main box container - full background image */
.hp-cross__spc--outdoor {
    background: #fff !important;
    display: flex !important;
    flex-direction: column;
    position: relative;
    padding: 20px 15px !important;
    min-height: 300px !important;
    overflow: hidden;
}

/* Background image via pseudo-element for opacity control */
.hp-cross__spc--outdoor.hp-cross__spc--04::before {
    content: "" !important;
    display: block !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/venkovni-stul-bg.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0.7;
    z-index: 0;
}



/* Content area (left side on desktop) */
.outdoor-box__content {
    position: static;
    z-index: 2;
    flex: 1;
}

/* Subtitle - hidden per user request */
.outdoor-box__subtitle {
    display: none;
}

/* Title - same font as other boxes, just add text-shadow for readability */
.outdoor-box__title {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 1), 0 0 30px rgba(0, 0, 0, 0.8) !important;
    line-height: 1.1 !important;
    color:#ffffff
}

/* Weather logo - anchored to BOTTOM-LEFT of the whole box container */
.outdoor-box__weather-logo {
    position: absolute;
    bottom: 10px;
    left: 15px;
    z-index: 3;
}

.outdoor-box__weather-logo img {
    width: 150px;
    height: auto;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.12));
    transform: none !important;
}

/* ============================================
   GLASSMORPHISM TIMELINE PANEL - Apple iOS style
   ============================================ */
.outdoor-box__timeline {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px) saturate(150%);
    -webkit-backdrop-filter: blur(28px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    padding: 12px 14px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    margin-top: 8px;
    align-self: flex-end;
    font-size: 12px;
    line-height: 1.4;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Timeline items - date inline with text */
.outdoor-box__timeline-item {
    padding: 6px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    color: #1a1a1a;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
}

.outdoor-box__timeline-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.outdoor-box__timeline-item:first-child {
    padding-top: 0;
}

.outdoor-box__date {
    color: #00973c;
    font-weight: 800;
}

.outdoor-box__event {
    color: #1a1a1a;
    font-weight: 700;
    text-transform: uppercase;
}

/* ============================================
   RESPONSIVE - Tablet & Desktop (768px+)
   ============================================ */
@media (min-width: 768px) {
    .hp-cross__spc--outdoor {
        flex-direction: row;
        align-items: stretch;
        padding: 25px !important;
        min-height: 300px !important;
    }

    .outdoor-box__content {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding-right: 10px;
    }

    .outdoor-box__timeline {
        width: 140px;
        flex-shrink: 0;
        margin-top: 0;
        margin-right: 5px;
        align-self: stretch;
    }

    .outdoor-box__weather-logo {
        bottom: 10px;
        left: 25px;
    }
}

/* ============================================
   RESPONSIVE - Large Desktop (1140px+)
   ============================================ */
@media (min-width: 1140px) {
    .hp-cross__spc--outdoor {
        padding: 65px 30px 30px 30px !important;
        min-height: 300px !important;
    }

    .outdoor-box__timeline {
        width: 140px;
        padding: 14px 16px;
        margin-right: 5px;
        font-size: 12px;
        margin-top: -35px;
    }

    .outdoor-box__weather-logo {
        bottom: 10px;
        left: 30px;
    }

    .outdoor-box__weather-logo img {
        width: 140px;
    }
}