@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

body {
    background-color: #000000;
    color: #525025; 
    font-family: 'Playfair Display', serif;
    margin: 0;
    overflow-x: hidden;
}

/* Navegación adaptable */
nav {
    background-color: #525025;
    padding: 15px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 10px;
}

nav a { 
    color: white; 
    text-decoration: none; 
    font-weight: bold;
    font-size: 0.9rem;
}

/* Cabeceras adaptables */
.hero, .hero-section {
    height: 60vh;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white; 
    padding: 20px;
}

.hero h1, .hero-section h1 {
    font-size: clamp(2rem, 10vw, 5rem);
    margin: 0;
    font-style: italic;
    text-transform: uppercase;
}

/* Grillas de productos adaptables */
.merch-grid, .productos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 40px 10px;
    background-color: #000;
}

.card, .item-card {
    background: #1a1a1a;
    border: 1px solid #525025;
    padding: 20px;
    width: 280px; /* Tamaño fijo en compu, se acomoda en celu */
    text-align: center;
    box-sizing: border-box;
}

.card img, .item-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

footer {
    background-color: #000000;
    color: #8C8C8C;
    text-align: center;
    padding: 20px;
    border-top: 1px solid #525025;
    margin-top: 40px;
    font-size: 0.9rem;
}
