/* public/css/left-panel.css */
.left-panel {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: #000;
}

.left-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.4) brightness(0.6) contrast(1.1);
}

.left-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
}

.left-content {
    position: absolute;
    bottom: 10%;
    width: 100%;
    text-align: center;
    z-index: 5;
    padding: 0 40px;
}

.left-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    letter-spacing: 0.8em;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
}