:root {
    --bg-color: #fdfcf8; /* Blanco roto, textura papel */
    --primary-orange: #e07a3b;
    --light-orange: #f5a623;
    --text-dark: #4a3b33;
    --font-hand: 'Dancing Script', cursive;
    --font-main: 'Montserrat', sans-serif;
}

body {
    margin: 0;
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-dark);
    line-height: 1.6;
}

header {
    padding: 2rem;
    background: transparent;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.9rem;
}

/* Hero Section con efecto acuarela */
.hero {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.watercolor-blob {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245,166,35,0.6) 0%, rgba(224,122,59,0.4) 40%, rgba(253,252,248,0) 70%);
    filter: blur(30px);
    z-index: -1;
    animation: float 10s infinite alternate;
}

@keyframes float {
    from { transform: translate(-10%, -10%); }
    to { transform: translate(10%, 10%); }
}

.tagline-top, .tagline-bottom {
    font-family: var(--font-hand);
    font-size: 2rem;
    color: var(--primary-orange);
}

.hero h1 {
    font-size: 3rem;
    margin: 1rem 0;
    font-weight: 300;
}

.btn-amazon {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    background-color: var(--primary-orange);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    transition: transform 0.3s ease;
}

.btn-amazon:hover {
    transform: scale(1.05);
}

/* Galería */
.gallery {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.card {
    background: white;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-10px);
}

.img-placeholder {
    width: 100%;
    height: 350px;
    background-color: #eee; /* Aquí irán las fotos de los cuadros */
    margin-bottom: 1rem;
}

footer {
    padding: 4rem 2rem;
    text-align: center;
    background-color: #f9f7f2;
    border-top: 1px solid #eee;
}

footer a {
    color: var(--primary-orange);
    text-decoration: none;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about {
    padding: 6rem 0;
    text-align: center;
    background-color: #fffaf4; /* Un tono crema muy suave */
}

.about h2 {
    font-family: var(--font-hand);
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 2rem;
}

.about p {
    font-size: 1.2rem;
    color: var(--text-dark);
    max-width: 700px;
    margin: 0 auto;
}

.section-intro {
    text-align: center;
    margin-bottom: 3rem;
    color: #888;
}