/**
 * Barebones Layout Styles
 * Split-screen event display with image and details
 */

 body {
    background: #000;
 }

/* Loading overlay */
.loader-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    color: #fff;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.loader-overlay.visible {
    opacity: 1;
    pointer-events: auto;
}

.loader {
    font-size: 1.2rem;
    color: #e5e7eb;
    letter-spacing: 0.08em;
}

/* Main container for barebones layout */
.container {
    display: flex;
    height: 100vh;
    width: 100vw;
}

/* Override base item-container for barebones layout */
.item-container.container {
    /* ShowcaseRotator will toggle between display:none and display:flex */
}

/* Left side - Image section */
.image-section {
    background-color: #000;
    position: relative;
    width: 58%;
    height: 100%;
}

.event-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.7s ease-in-out;
    position: relative;
    z-index: 1;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
}

/* Blurred background effect */
.image-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    filter: blur(100px);
    z-index: -1;
    transform: scale(1.1); /* Slightly scale to avoid blur edges */
}

.image-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.80);
    z-index: 0;
}

/* Right side - Event Details */
.details-section {
    width: 42%;
    background: #000;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    position: relative;
    overflow: hidden;
}

/* Background decorative pattern */
.background-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.05;
}

.pattern-circle {
    position: absolute;
    width: 24rem;
    height: 24rem;
    background: white;
    border-radius: 50%;
    filter: blur(3rem);
}

.pattern-circle-1 {
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
}

.pattern-circle-2 {
    bottom: 0;
    right: 0;
    transform: translate(50%, 50%);
}

/* Content wrapper */
.content {
    position: relative;
    z-index: 10;
}

/* Logo styling */
.logo-container {
    margin-bottom: 3rem;
}

.logo {
    height: 15rem;
    width: auto;
}

/* Event details styling */
.event-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.event-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    background: linear-gradient(to right, white, #d1d5db);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}

.event-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.info-line {
    width: 0.25rem;
    height: 5rem;
    background: linear-gradient(to bottom, white, #9ca3af);
    border-radius: 9999px;
    flex-shrink: 0;
}

.info-line-tall {
    height: 7rem;
}

.info-content {
    flex: 1;
}

.info-label {
    color: #9ca3af;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.info-value {
    font-size: 2.2rem;
    font-weight: 300;
}

.description {
    font-size: 2rem;
    line-height: 2.4rem;
    color: #e5e7eb;
}

/* Responsive design for mobile/tablet */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .image-section,
    .details-section {
        width: 100%;
        height: 50%;
    }

    .details-section {
        padding: 2rem;
    }

    .event-title {
        font-size: 2.5rem;
    }
    
    .info-value {
        font-size: 1.8rem;
    }
    
    .description {
        font-size: 1.5rem;
        line-height: 1.8rem;
    }
    
    .logo {
        height: 10rem;
    }
}
