/*
Theme Name: The Mods Zone
Author: Alfonso
Description: Tema a medida para WooCommerce.
Version: 1.0
*/

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body {
    font-family: 'Times New Roman', Times, serif;
    background-color: #f4f4f4;
    color: #000;
}

header {
    padding: 20px 0;
    text-align: center;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

nav a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
    font-size: 1.1rem;
}

.site-logo {
    height: 70px; /* Ajusta este valor según lo grande que quieras el logo */
    width: auto;  /* Esto mantiene la proporción para que no se deforme */
    display: block;
}

.hero-section {
    width: 100%;
    display: block;
}

.hero-section img {
    width: 100%;
    height: auto;
    display: block;
}

.title-section {
    text-align: center;
    margin: 40px 20px;
}

.title-section h1 {
    font-size: 1.5rem;
    font-weight: normal;
}

.woo-commerce-area {
    max-width: 600px;
    margin: 0 auto 60px auto;
    padding: 20px;
    text-align: center;
}