/* Showreel Section */
.showreel {
    padding: 40px 0;
    background: #080909;
    text-align: center;
    color: #F2EFE8; /* --text-primary */
}

.showreel__header {
    margin-bottom: 24px;
}

.showreel__label {
    font-family: 'Inter', 'Manrope', 'Helvetica Neue', 'Geist', sans-serif;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #AAA69D; /* --text-secondary */
    margin: 0 0 8px 0;
}

.showreel__title {
    font-family: 'Canela', 'Editorial New', 'Cormorant', 'Instrument Serif', 'PP Editorial', serif;
    font-size: 2.25rem;
    line-height: 1.2;
    margin: 0;
}

.showreel__video {
    position: relative;
    display: inline-block;
}

.showreel__video-wrapper {
    position: relative;
    width: 480px; /* 16:9 ratio, height will be 270px */
    height: 0;
    padding-bottom: 56.25%; /* 16:9 */
    background: #000;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
}

.showreel__video-wrapper:hover .showreel__poster {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.showreel__play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 96px;
    height: 96px;
    background: rgba(184, 154, 106, 0.8); /* --accent with opacity */
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    z-index: 2;
}

.showreel__play-button:hover {
    background: rgba(184, 154, 106, 1);
}

.showreel__play-icon {
    width: 32px;
    height: 32px;
}

.showreel__poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: opacity 0.3s ease;
}

.showreel__duration {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0,0,0,0.6);
    color: #F2EFE8;
    font-size: 0.875rem;
    padding: 4px 8px;
    border-radius: 4px;
    font-family: 'Inter', 'Manrope', 'Helvetica Neue', 'Geist', sans-serif;
}

/* Modal */
.showreel-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.showreel-modal.showreel-modal--open {
    opacity: 1;
    visibility: visible;
}

.showreel-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.8);
}

.showreel-modal__content {
    position: relative;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
}

.showreel-modal__close {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 50%;
    color: #F2EFE8;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.showreel-modal__close:hover {
    background: rgba(255,255,255,0.2);
}

.showreel-modal__video-container {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 */
    background: #000;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.showreel-modal__video-container iframe,
.showreel-modal__video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive */
@media (max-width: 768px) {
    .showreel__title {
        font-size: 2rem;
    }
    .showreel__video-wrapper {
        width: 100%;
        max-width: 480px;
    }
}
