/*
Theme Name: Kishu Clean - Minimalista Orgánico
*/

/* ===== FUENTES ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,300;14..32,400;14..32,500;14..32,600;14..32,700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ===== VARIABLES ===== */
:root {
    --bg-body: #FCF9F5;        /* beige muy claro, natural */
    --verde-musgo: #5A7D3C;
    --marrón-cálido: #9C5A3A;
    --texto-oscuro: #2C2B28;
    --texto-suave: #5F5E5A;
    --blanco: #FFFFFF;
    --gris-borde: #E8E2D9;
    --sombra: 0 12px 28px -8px rgba(0, 0, 0, 0.05);
    --sombra-hover: 0 20px 30px -12px rgba(0, 0, 0, 0.1);
    --radius: 1.25rem;
    --radius-btn: 2rem;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-body);
    color: var(--texto-oscuro);
    line-height: 1.5;
    scroll-behavior: smooth;
}

h1, h2, h3, .logo, .btn, .nav-links a {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===== HEADER ===== */
.k-header {
    background: rgba(252, 249, 245, 0.95);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid var(--gris-borde);
    position: sticky;
    top: 0;
    z-index: 100;
}

/* Header con logo centrado */
.nav-bar {
    display: flex;
    justify-content: space-between; /* valor por defecto, lo cambiaremos */
    align-items: center;
    padding: 1rem 0;
}

.nav-centered {
    justify-content: center;  /* centra horizontalmente el logo */
}

.logo-img {
    height: 360px;   /* ajusta según tu preferencia */
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    font-weight: 600;
    color: var(--texto-oscuro);
    transition: color 0.2s;
    font-size: 0.9rem;
}

.nav-links a:hover {
    color: var(--verde-musgo);
}

/* ===== HERO (con overlay oscuro y texto blanco) ===== */
.hero {
    position: relative;
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    border-radius: var(--radius);
    margin: 2rem 0 4rem;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.5), rgba(0,0,0,0.3));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 3rem;
    text-align: center;
    width: 100%;
    color: white;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    max-width: 800px;
    margin: 0 auto 1rem;
    color: white;
}

.subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    color: rgba(255,255,240,0.95);
    margin-bottom: 0.5rem;
}

.tagline {
    font-size: 1rem;
    color: rgba(255,255,240,0.85);
    margin-bottom: 2rem;
    font-style: italic;
}

/* ===== BOTONES ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background-color: var(--verde-musgo);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: var(--radius-btn);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.25s ease;
    font-size: 0.95rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    border: none;
    cursor: pointer;
}

.btn i {
    font-size: 1rem;
}

.btn:hover {
    background-color: var(--marrón-cálido);
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

/* ===== TÍTULOS DE SECCIÓN ===== */
.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--verde-musgo);
    margin-bottom: 2.5rem;
    letter-spacing: -0.3px;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--marrón-cálido);
    margin: 0.75rem auto 0;
    border-radius: 2px;
}

/* ===== TARJETAS "PARA TI" ===== */
.para-quien-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0 4rem;
}

.quien-card {
    background: var(--blanco);
    padding: 1.8rem 1.5rem;
    border-radius: var(--radius);
    flex: 1;
    min-width: 200px;
    text-align: center;
    box-shadow: var(--sombra);
    transition: all 0.2s;
    border: 1px solid var(--gris-borde);
}

.quien-card i {
    font-size: 2.2rem;
    color: var(--verde-musgo);
    margin-bottom: 1rem;
}

.quien-card p {
    font-weight: 500;
    font-size: 1rem;
}

/* ===== GRID DE SERVICIOS ===== */
.servicios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin: 1.5rem 0;
}

.servicio-card {
    background: var(--blanco);
    padding: 2rem 1.5rem;
    border-radius: var(--radius);
    text-align: center;
    transition: transform 0.25s, box-shadow 0.3s;
    box-shadow: var(--sombra);
    border: 1px solid var(--gris-borde);
}

.servicio-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--sombra-hover);
}

.servicio-card i {
    font-size: 2.2rem;
    color: var(--verde-musgo);
    margin-bottom: 1rem;
}

.servicio-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--texto-oscuro);
}

.servicio-card p {
    color: var(--texto-suave);
    line-height: 1.5;
}

/* ===== SECCIONES CLASES Y SERVICIOS ===== */
.educacion-section,
.musica-section {
    background: var(--blanco);
    padding: 2.5rem 2rem;
    border-radius: var(--radius);
    margin: 3rem 0;
    box-shadow: var(--sombra);
}

.musica-section {
    background: #FDF9F4; /* ligeramente diferente */
}

/* ===== GALERÍA ===== */
.galeria-section {
    margin: 4rem 0;
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.galeria-item {
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--sombra);
    transition: transform 0.3s;
    aspect-ratio: 4 / 3;
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}

.galeria-item:hover {
    transform: translateY(-4px);
}

.galeria-item:hover img {
    transform: scale(1.03);
}

/* ===== CTA FINAL ===== */
.sobre-mi-section {
    background: var(--blanco);
    border-radius: var(--radius);
    padding: 3rem 2rem;
    text-align: center;
    margin: 4rem 0 5rem;
    border: 1px solid var(--gris-borde);
    box-shadow: var(--sombra);
}

.sobre-mi-section h2 {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--verde-musgo);
    margin-bottom: 0.75rem;
}

.sobre-mi-section p {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--marrón-cálido);
    margin-bottom: 2rem;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--texto-oscuro);
    color: #DCD9D2;
    padding: 2rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.social-links a {
    color: #CBC6BC;
    margin: 0 0.6rem;
    font-size: 1.2rem;
    transition: color 0.2s;
}

.social-links a:hover {
    color: var(--verde-musgo);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 800px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    .hero {
        min-height: 70vh;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .hero-content {
        padding: 2rem;
    }
}

@media (max-width: 600px) {
    .nav-bar {
        flex-direction: column;
        gap: 0.8rem;
    }
    .nav-links {
        justify-content: center;
        flex-wrap: wrap;
    }
    .galeria-grid {
        grid-template-columns: 1fr;
    }
    .btn {
        padding: 0.7rem 1.5rem;
    }
}
/* Logo como imagen */
.logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 240px;        /* Ajusta según el tamaño que quieras */
    width: auto;
    display: block;
    transition: opacity 0.2s ease;
}

.logo-img:hover {
    opacity: 0.85;
}