/* Shared styles for Nelson Psychic Fair pages */

/* Decorative flowers - hidden on mobile by default */
.desktop-flowers {
    display: none; /* Hidden by default, shown on desktop */
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
    width: 250px;
    overflow: hidden;
    margin-top: 150px; /* Adjust based on header height */
}

.left-flowers {
    left: 0;
}

.right-flowers {
    right: 0;
}

.flower-image {
    height: 100%;
    width: auto;
    max-width: 250px;
    object-fit: contain;
}

.left-flowers .flower-image {
    object-position: left top;
}

.right-flowers .flower-image {
    object-position: right top;
    transform: scaleX(-1);
}

/* Show on desktop only */
@media (min-width: 992px) {
    .desktop-flowers {
        display: block;
    }
}

/* Main content container - ensure proper z-index */
.main-content-container {
    position: relative;
    z-index: 2;
}

/* Center-aligned bullet lists with proper alignment */
.presentation-description ul {
    padding-left: 20px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    list-style-type: disc;
    display: table;
}

.presentation-description li {
    margin-bottom: 2px;
    padding-left: 0;
}

/* Vertical alignment for presentation cards */
.presentation {
    display: flex;
    align-items: flex-start;
    min-height: 300px;
}

.presentation-time {
    flex-shrink: 0;
    width: 120px;
    margin-right: 20px;
}

.presentation-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .presentation {
        flex-direction: column;
        min-height: auto;
    }
    
    .presentation-time {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
        text-align: center;
        background-color: #62A780;
        color: white;
        padding: 10px;
        border-radius: 8px 8px 0 0;
    }
    
    .presentation-details {
        width: 100%;
        padding: 15px;
    }
    
    .presentation-title {
        font-size: 1.2em;
        margin-bottom: 10px;
    }
    
    .presentation-description {
        font-size: 0.9em;
        line-height: 1.4;
    }
}
