/*
Theme Name: Tiendazam
Author: Kevyn
Version: 1.0
Description: Tema WooCommerce minimalista para Tiendazam
*/

body, h1, h2, h3, h4, h5, h6, p, ul, li, a {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    color: #333;
}

body {
    background-color: #f8f8f8;
    line-height: 1.6;
}

/* Header */
header {
    background: #00bfff; /* color celeste logo */
    color: #fff;
    padding: 20px 10%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

header img {
    max-height: 70px;
}

header nav a {
    color: #fff;
    margin-left: 20px;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

header nav a:hover {
    color: #ff6600; /* hover naranja */
}

/* Hero */
.hero {
    background: url('images/hero-bg.jpg') no-repeat center center;
    background-size: cover;
    color: #fff;
    text-align: center;
    padding: 150px 10%;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 22px;
    margin-bottom: 30px;
}

.hero a {
    display: inline-block;
    background: #00bfff;
    color: #fff;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero a:hover {
    background: #ff6600;
}

/* Footer */
footer {
    background: #333;
    color: #fff;
    padding: 40px 10%;
    text-align: center;
}

footer a {
    color: #00bfff;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s;
}

footer a:hover {
    color: #ff6600;
}

/* Botones generales */
button, .btn {
    background: #00bfff;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

button:hover, .btn:hover {
    background: #ff6600;
}

/* Responsive */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero {
        padding: 100px 5%;
    }
}

