/*
Theme Name: Elite Barber
Theme URI: https://elitebarber.com.br
Author: Elite Barber
Author URI: https://elitebarber.com.br
Description: Tema personalizado para a barbearia Elite Barber
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: elite-barber
*/

/* Estilos Base */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #121212;
    color: #ffffff;
    margin: 0;
    padding: 0;
}

/* Estilos Personalizados */
.gold-gradient {
    background: linear-gradient(90deg, #9e7c1e 0%, #d4af37 50%, #f5d77f 100%);
}

.text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.gold-border {
    border: 1px solid #d4af37;
}

.gold-border-bottom {
    border-bottom: 2px solid #d4af37;
}

.hero-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='600' viewBox='0 0 800 600'%3E%3Crect width='800' height='600' fill='%23121212'/%3E%3Cpath d='M400 150 C 350 150, 300 200, 300 250 C 300 300, 350 350, 400 350 C 450 350, 500 300, 500 250 C 500 200, 450 150, 400 150 Z' fill='none' stroke='%23d4af37' stroke-width='8'/%3E%3Cpath d='M250 200 L 550 200 M250 300 L 550 300 M350 150 L 350 350 M450 150 L 450 350' stroke='%23d4af37' stroke-width='4' stroke-dasharray='10,10'/%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.tab-active {
    color: #d4af37;
    border-bottom: 2px solid #d4af37;
}

/* Animações */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-fadeIn {
    animation: fadeIn 0.5s ease-in-out;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-bg {
        height: 60vh !important;
    }
    
    h1 {
        font-size: 2rem !important;
    }
    
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* WordPress Específico */
.wp-block-image img {
    max-width: 100%;
    height: auto;
}

.wp-block-button__link {
    background-color: #d4af37;
    color: #121212;
    border-radius: 0;
    padding: 0.75rem 1.5rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.wp-block-button__link:hover {
    background-color: #9e7c1e;
}

.wp-block-quote {
    border-left: 4px solid #d4af37;
    padding-left: 1rem;
    font-style: italic;
}

/* Formulários WordPress */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea,
select {
    background-color: #1a1a1a;
    border: 1px solid rgba(212, 175, 55, 0.5);
    color: #ffffff;
    padding: 0.75rem;
    width: 100%;
    border-radius: 0.125rem;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #d4af37;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    background-color: #d4af37;
    color: #121212;
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
    background-color: #9e7c1e;
}

/* Widgets */
.widget {
    margin-bottom: 2rem;
}

.widget-title {
    color: #d4af37;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #d4af37;
}

.widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.widget ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.widget ul li a:hover {
    color: #d4af37;
}

/* Comentários */
.comment-list {
    list-style: none;
    padding: 0;
}

.comment-body {
    background-color: #1a1a1a;
    padding: 1rem;
    margin-bottom: 1rem;
    border-left: 3px solid #d4af37;
}

.comment-author .avatar {
    border-radius: 50%;
    margin-right: 0.5rem;
}

.comment-metadata {
    font-size: 0.875rem;
    color: #999;
    margin-bottom: 1rem;
}

.comment-reply-link {
    color: #d4af37;
    text-decoration: none;
    font-weight: bold;
}

.comment-form-comment label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

/* Paginação */
.pagination,
.navigation {
    margin: 2rem 0;
    text-align: center;
}

.page-numbers,
.nav-links a {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    border: 1px solid rgba(212, 175, 55, 0.5);
    transition: all 0.3s ease;
}

.page-numbers.current {
    background-color: #d4af37;
    color: #121212;
}

.page-numbers:hover,
.nav-links a:hover {
    background-color: rgba(212, 175, 55, 0.2);
}