/* Movie Detail Page Styles */

/* Back Button */
.back-link {
    margin-bottom: 15px;
}

.btn-back {
    font-family: "Switzer Variable", sans-serif;
    font-weight: 600;
    font-style: normal; /* Semibold */
    font-size: 18px;
    line-height: 100%;
    letter-spacing: -4%;
    color: #376AAD;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.btn-back:hover {
    opacity: 0.8;
    color: #376AAD;
}

/* General Layout */
.movie-detail-container {
    padding: 80px 0;
    min-height: 100vh;
}

.pl-100 {
    padding-left: 100px;
}

.pr-100 {
    padding-right: 100px;
}

/* Poster Styles */
.movie-poster {
    position: relative;
}

.movie-poster img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Awards Container */
.awards-container {
    margin-top: 20px;
}

.awards-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
}

.award-logo {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.award-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Movie Info Styles */
.movie-info-container {
    padding: 0 20px;
}

.movie-header {
    margin-bottom: 20px;
    border-bottom: 1px solid #376AAD;
}

.movie-title {
    font-family: "Switzer Variable", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 38px;
    line-height: 56px;
    letter-spacing: -4%;
    margin-bottom: 5px;
    color: #376AAD;
}

.movie-director {
    font-family: "Switzer Variable", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: -2%;
    text-transform: uppercase;
    color: #376AAD;
    margin-bottom: 20px;
}

.movie-meta {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
}

.movie-category {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
}

.movie-genre {
    font-family: "Switzer Variable", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 3%;
    text-align: right;
    text-transform: uppercase;
    color: rgba(2, 40, 89, 0.6);
    margin: 0px;
}

.movie-details {
    font-family: "Switzer Variable", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: -4%;
    text-align: right;
    color: rgba(2, 40, 89, 0.6);
    margin: 0px;
    margin-bottom: 15px;
}

/* Content Sections */
.movie-section {
    margin-bottom: 30px;
}

.section-title {
    font-family: "Switzer Variable", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -2%;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #022859;
    opacity: 0.3;
}

.synopsis {
    font-family: "Switzer Variable", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    line-height: 32px;
    letter-spacing: -4%;
    color: #000;
}

.technical-sheet {
    font-family: "Switzer Variable", sans-serif;
    font-weight: 300;
    font-style: Light;
    font-size: 20px;
    line-height: 35px;
    letter-spacing: -4%;
    color: #000;
}

.technical-sheet strong {
    font-family: "Switzer Variable", sans-serif;
    font-weight: 500;
    font-style: Medium;
    font-size: 20px;
    line-height: 35px;
    letter-spacing: -4%;
    color: #000;
}

.festivals-list {
    font-family: "Switzer Variable", sans-serif;
    font-weight: 400;
    font-style: normal; /* Light */
    font-size: 20px;
    line-height: 35px;
    letter-spacing: -4%;
    color: #000;
}

.festivals-list ul {
    list-style-type: none;
    padding-left: 0;
}

.festivals-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.festivals-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #000;
}

/* Trailer Button */
.btn-watch-trailer {
    display: inline-flex;
    align-items: center;
    font-family: "Switzer Variable", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: -4%;
    color: #F3B707;
    text-decoration: none;
    transition: color 0.3s ease;
}

.btn-watch-trailer:hover {
    color: #e5aa00;
}

.btn-watch-trailer i {
    margin-right: 10px;
}

/* CTA Button */
.cta-section {
    margin-top: 40px;
}

.btn-reserve {
    display: inline-block;
    font-family: "Switzer Variable", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: -4%;
    color: #F3B707;
    padding: 12px 25px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.btn-reserve:hover {
    color: #e5aa00;
}

/* Trailer Modal */
#trailerModal .modal-content {
    background-color: #000;
    border: none;
}

#trailerModal .modal-header {
    border-bottom: 1px solid #333;
    padding: 15px 20px;
}

#trailerModal .modal-title {
    color: #fff;
    font-weight: 500;
}

#trailerModal .btn-close {
    color: #fff;
    filter: invert(1) grayscale(100%) brightness(200%);
}

#trailerModal .modal-body {
    padding: 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .movie-title {
        font-size: 36px;
        line-height: 42px;
    }
}

@media (max-width: 768px) {
    .pl-100, .pr-100 {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .movie-info-container {
        padding: 0;
        margin-top: 20px;
    }
    
    .movie-title {
        font-size: 30px;
        line-height: 36px;
    }
    
    /* Aumentar tamaño de títulos de sección en 2px */
    .section-title {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .movie-detail-container {
        padding: 40px 0;
    }
    
    /* Mantener el aumento de tamaño en móviles más pequeños */
    .section-title {
        font-size: 16px;
    }
}
