/* Productions Page Styles */

/* Hero Section */
.productions-hero {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    color: #fff;
    padding: 120px 4rem 80px;
    text-align: center;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.productions-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="white" opacity="0.1"/><circle cx="80" cy="80" r="2" fill="white" opacity="0.1"/></svg>');
    opacity: 0.5;
}

.productions-hero-content {
    position: relative;
    z-index: 2;
}

.productions-hero h1 {
    font-family: 'TMA-RoadRadio', 'Archivo Black', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    animation: fadeInDown 0.8s ease-out;
}

.productions-hero p {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Introduction Section */
.productions-intro {
    background: #fff;
    padding: 80px 4rem;
}

.intro-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.intro-content p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    color: #666;
}

.intro-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    border-color: #000;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.stat-item h3 {
    font-family: 'TMA-RoadRadio', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #000;
}

.stat-item p {
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
}

/* Products Gallery */
.products-gallery {
    background: #f9f9f9;
    padding: 100px 4rem;
}

.gallery-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.products-gallery h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.gallery-subtitle {
    text-align: center;
    font-size: 1rem;
    font-weight: 300;
    color: #666;
    margin-bottom: 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.view-btn {
    background: #fff;
    color: #000;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.view-btn:hover {
    background: #000;
    color: #fff;
    transform: scale(1.1);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from { 
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0;
    }
    to { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 40px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 2001;
}

.lightbox-close:hover {
    color: #ccc;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: #fff;
    cursor: pointer;
    padding: 20px;
    user-select: none;
    transition: all 0.3s ease;
    z-index: 2001;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    color: #ccc;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

/* Product Categories */
.product-categories {
    background: #fff;
    padding: 100px 4rem;
}

.categories-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.product-categories h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 4rem;
    text-transform: uppercase;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.category-card {
    background: #f9f9f9;
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    text-align: center;
}

.category-card:hover {
    border-color: #000;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    transform: translateY(-8px);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #000;
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.2);
    color: #333;
}

.category-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-card p {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.6;
    color: #666;
    margin-bottom: 2rem;
}

.category-features {
    list-style: none;
    text-align: left;
}

.category-features li {
    font-size: 0.9rem;
    font-weight: 300;
    padding: 0.6rem 0;
    color: #666;
    display: flex;
    align-items: center;
}

.category-features i {
    color: #000;
    margin-right: 0.8rem;
    font-size: 0.8rem;
}

/* Quality Experience Section */
.quality-experience {
    background: #fff;
    padding: 100px 4rem;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.quality-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.quality-experience h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
}

.quality-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.quality-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    color: #666;
    text-align: justify;
}

.quality-categories {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    padding-top: 3rem;
    border-top: 1px solid #f0f0f0;
}

.quality-category-item {
    text-align: center;
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 1rem;
}

.category-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.quality-category-item:hover .category-img {
    transform: scale(1.05);
}

.quality-category-item:hover {
    background: #f0f0f0;
    transform: translateY(-4px);
}

.quality-category-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #000;
    text-transform: uppercase;
}

/* Responsive */
@media (max-width: 1024px) {
    .productions-hero {
        padding: 80px 2rem 60px;
    }

    .productions-hero h1 {
        font-size: 3rem;
    }

    .intro-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .productions-hero {
        padding: 60px 1.5rem 40px;
        margin-top: 70px;
    }

    .productions-hero h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .productions-hero p {
        font-size: 1rem;
    }

    .productions-intro,
    .products-gallery,
    .product-categories,
    .quality-experience {
        padding: 60px 1.5rem;
    }

    .intro-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 0.8rem;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .quality-categories {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .productions-hero {
        padding: 40px 1rem 30px;
        margin-top: 70px;
    }

    .productions-hero h1 {
        font-size: 1.5rem;
    }

    .productions-hero p {
        font-size: 0.9rem;
    }

    .productions-intro,
    .products-gallery,
    .product-categories,
    .quality-experience {
        padding: 40px 1rem;
    }

    .intro-wrapper {
        gap: 2rem;
    }

    .intro-content h2,
    .products-gallery h2,
    .product-categories h2,
    .quality-experience h2 {
        font-size: 1.5rem;
    }

    .intro-content p,
    .products-gallery p,
    .quality-content p {
        font-size: 0.9rem;
    }

    .stat-item {
        padding: 1.5rem;
    }

    .stat-item h3 {
        font-size: 2rem;
    }

    .stat-item p {
        font-size: 0.8rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 0.5rem;
    }

    .gallery-item {
        aspect-ratio: 3/4;
    }

    .quality-categories {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .category-img {
        height: 150px;
    }

    .category-card {
        padding: 1.5rem 1rem;
    }

    .category-card h3 {
        font-size: 1rem;
    }

    .category-card p {
        font-size: 0.85rem;
    }

    .category-features li {
        font-size: 0.8rem;
    };
        gap: 1rem;
    }

    .intro-content h2,
    .products-gallery h2,
    .product-categories h2,
    .quality-experience h2 {
        font-size: 1.8rem;
    }

    .lightbox-prev,
    .lightbox-next {
        padding: 15px;
        font-size: 20px;
    }

    .lightbox-close {
        top: 15px;
        right: 15px;
        font-size: 30px;
    }
}
