/*
Theme Name: ART MIL Produções
Theme URI: https://artmil.com
Description: Tema customizado para produtora audiovisual ART MIL
Version: 1.0
Author: ART MIL
Text Domain: artmil
*/

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #000000;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background-color: #000000;
    padding: 20px 0;
    position: relative;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo h1 {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo a {
    text-decoration: none;
    color: inherit;
}

/* Navigation */
.main-navigation {
    display: flex;
    align-items: center;
}

.primary-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.primary-menu li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.primary-menu li a:hover,
.primary-menu li.current-menu-item a {
    color: #ffffff;
    background-color: #ffffff;
    color: #000000;
    padding: 8px 16px;
    border-radius: 4px;
}

/* Mobile Navigation */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Main Content */
.site-content {
    min-height: calc(100vh - 140px);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 60px;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.trailer-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.9);
    color: #000000;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.trailer-button:hover {
    background-color: #ffffff;
    transform: translateY(-2px);
}

.play-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Projects Section */
.projetos-section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.projetos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.projeto-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.projeto-card:hover {
    transform: translateY(-5px);
}

.projeto-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.projeto-card:hover .projeto-image {
    transform: scale(1.05);
}

.projeto-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 30px 20px 20px;
    color: #ffffff;
}

.projeto-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.projeto-meta {
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
    font-weight: 300;
}

/* About Section */
.quem-somos-section {
    padding: 80px 0;
    background-color: #000000;
}

.quem-somos-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.quem-somos-texto {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 60px;
    color: #ffffff;
}

.equipe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.membro-card {
    text-align: center;
}

.membro-foto {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    display: block;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.membro-foto:hover {
    filter: grayscale(0%);
}

.membro-nome {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.membro-funcao {
    color: #cccccc;
    font-size: 0.9rem;
}

/* Project Detail Page */
.projeto-detail {
    padding: 40px 0;
}

.projeto-header {
    text-align: center;
    margin-bottom: 60px;
}

.projeto-detail-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.projeto-detail-meta {
    font-size: 1.1rem;
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.projeto-detail-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.projeto-poster {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.projeto-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.projeto-info p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.projeto-credits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.credit-item {
    text-align: center;
    padding: 20px;
    background-color: #111111;
    border-radius: 8px;
}

.credit-label {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    color: #cccccc;
}

.credit-value {
    font-size: 1.1rem;
}

/* Awards and Festivals */
.awards-section {
    margin-bottom: 60px;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.awards-column h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    padding: 15px;
    background-color: #ffffff;
    color: #000000;
    border-radius: 8px;
}

.awards-column ol {
    list-style: none;
    counter-reset: item;
}

.awards-column li {
    counter-increment: item;
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.awards-column li:before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 0;
    background-color: #ffffff;
    color: #000000;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Footer */
.site-footer {
    background-color: #000000;
    padding: 60px 0 30px;
    border-top: 1px solid #333333;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p {
    color: #cccccc;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #333333;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: #ffffff;
    color: #000000;
}

.contact-form {
    display: grid;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid #333333;
    border-radius: 4px;
    background-color: #111111;
    color: #ffffff;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffffff;
}

.form-submit {
    background-color: #ffffff;
    color: #000000;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background-color: #cccccc;
    transform: translateY(-2px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333333;
    color: #cccccc;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .primary-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #000000;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }
    
    .primary-menu.active {
        display: flex;
    }
    
    .primary-menu li {
        margin: 10px 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .projetos-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .projeto-detail-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .projeto-detail-title {
        font-size: 2rem;
    }
    
    .projeto-credits {
        grid-template-columns: 1fr;
    }
    
    .awards-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .projeto-detail-title {
        font-size: 1.5rem;
    }
    
    .projetos-grid {
        grid-template-columns: 1fr;
    }
    
    .projeto-card {
        margin-bottom: 20px;
    }
}