/*
Theme Name: Netflix Job Reviewer
Description: Tema baseado no site Netflix Job Reviewer com design escuro e vermelho
Author: Seu Nome
Version: 1.0
*/

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #141414;
    color: #ffffff;
    line-height: 1.6;
}

/* Container Principal */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background-color: #000000;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.site-title {
    font-size: 2rem;
    font-weight: bold;
    color: #e50914;
    text-decoration: none;
}

/* Seções Principais */
.content-section {
    padding: 2rem 0;
    text-align: center;
}

.content-section img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    margin: 1rem 0;
}

/* Botões estilo Netflix */
.netflix-button {
    background-color: #e50914;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s;
}

.netflix-button:hover {
    background-color: #f40612;
    color: white;
    text-decoration: none;
}

/* Texto */
h1, h2, h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: #cccccc;
}

/* Footer */
.site-footer {
    background-color: #000000;
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid #333;
}

.site-footer p {
    color: #666;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .content-section {
        padding: 1rem 0;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .site-title {
        font-size: 1.5rem;
    }
}