/* Catalog Page Styles */

/* Catalog Title Styles */
.catalog-title {
    font-family: "Switzer Variable", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 128px;
    line-height: 144px;
    letter-spacing: -4%;
    color: #000000;
    margin-bottom: 60px;
}

/* Display Text Active Style - Accent color for highlighted text */
.catalog-title .display-text-active {
    color: #F2CB06;
}

/* Section Padding */
.section-padding {
    padding: 60px 0;
}

/* Container Fluid Custom Padding */
.pl-100 {
    padding-left: 100px;
}

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

/* Movie Grid Styles - Match home page */
.movies-grid-section {
    background-color: #ffffff;
}

.movie-card {
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.movie-card:hover {
    transform: translateY(-5px);
}

.movie-image-container {
    overflow: hidden;
}

.movie-image {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.movie-card:hover .movie-image {
    transform: scale(1.03);
}

.movie-info {
    padding: 15px 0;
    border-bottom: 1px solid #000000;
}

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

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

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

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

/* No Movies Message */
.no-movies-message {
    font-size: 20px;
    color: #555;
    margin: 50px 0;
}

/* Responsive Adjustments */
/* Ajustes para pantallas entre 1200px y 1600px */
@media (min-width: 1200px) and (max-width: 1600px) {
    /* Reducir 1px el tamaño de fuente */
    .movie-title {
        font-size: 19px;
    }
    
    .movie-director {
        font-size: 13px;
    }
    
    .movie-genre {
        font-size: 15px;
    }
    
    .movie-details {
        font-size: 15px;
    }
}

@media (max-width: 1200px) {
    .catalog-title {
        font-size: 100px;
        line-height: 116px;
    }
    
    .pl-100, .pr-100 {
        padding-left: 50px;
        padding-right: 50px;
    }
}

/* Ajustes para pantallas entre 800px y 1100px */
@media (min-width: 800px) and (max-width: 1100px) {
    /* Reducir 2px el tamaño de fuente */
    .movie-title {
        font-size: 18px;
    }
    
    .movie-director {
        font-size: 12px;
    }
    
    .movie-genre {
        font-size: 14px;
    }
    
    .movie-details {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .catalog-title {
        font-size: 72px;
        line-height: 88px;
    }
    
    .pl-100, .pr-100 {
        padding-left: 30px;
        padding-right: 30px;
    }
    
    /* Ajustar tamaño de fuente para elementos de películas en tablets */
    .movie-title {
        font-size: 18px;
        line-height: 22px;
    }
    
    .movie-director {
        font-size: 12px;
        line-height: 20px;
    }
    
    .movie-genre {
        font-size: 14px;
        line-height: 24px;
    }
    
    .movie-details {
        font-size: 14px;
        line-height: 24px;
    }
}

@media (max-width: 480px) {
    .catalog-title {
        font-size: 48px;
        line-height: 60px;
    }
    
    .pl-100, .pr-100 {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Ajustar tamaño de fuente para elementos de películas en móviles */
    .movie-title {
        font-size: 16px;
        line-height: 20px;
    }
    
    .movie-director {
        font-size: 11px;
        line-height: 18px;
    }
    
    .movie-genre {
        font-size: 12px;
        line-height: 20px;
    }
    
    .movie-details {
        font-size: 12px;
        line-height: 20px;
    }
}
