/* ==========================================
   ESTILOS ESPECÍFICOS PARA TALLERES RIZOMA
   ========================================== */

/* Hero Section */
.hero-section {
    position: relative;
    height: 60vh;
    background: linear-gradient(135deg, rgba(0, 79, 77, 0.8), rgba(0, 209, 210, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #FFFFFF;
    padding: 2rem;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Content Section */
.content-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.info-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 8px 24px rgba(0, 79, 77, 0.15);
    color: #1b2036;
    transition: transform 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card i {
    font-size: 2.5rem;
    color: var(--verde-musgo);
    margin-bottom: 1rem;
}

.info-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--verde-musgo);
    margin-bottom: 1rem;
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, var(--verde-musgo), var(--cian-profundo));
    color: white;
    padding: 2.5rem;
    border-radius: 12px;
    margin: 3rem 0;
    text-align: center;
}

.highlight-box h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 1.5rem;
    border-radius: 8px;
    backdrop-filter: blur(8px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--amarillo-miel);
}

/* CTA Container */
.cta-container {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(164deg, var(--verde-claro), var(--lila-claro));
    margin: 3rem 0;
    border-radius: 12px;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.contact-info a {
    color: var(--verde-musgo);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Gallery Grid (para taller-artes) */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 8px 24px rgba(104, 41, 208, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(104, 41, 208, 0.95), transparent);
    color: white;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* Info Block */
.info-block {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    margin: 2rem 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.info-block h3 {
    font-family: 'Playfair Display', serif;
    color: var(--purpura);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    border-left: 4px solid var(--amarillo-miel);
    padding-left: 1rem;
}

/* Activities List */
.activities-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.activities-list li {
    padding: 1rem 0;
    padding-left: 2.5rem;
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.activities-list li:before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--amarillo-miel);
}

/* Forum Topics (para foro-permanente) */
.forum-topics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.topic-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(45, 20, 112, 0.15);
    transition: transform 0.3s, box-shadow 0.3s;
}

.topic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(45, 20, 112, 0.25);
}

.topic-header {
    background: linear-gradient(135deg, var(--indigo), var(--morado-oscuro));
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.topic-header i {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--amarillo-miel);
}

.topic-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
}

.topic-body {
    padding: 1.5rem;
    color: #333;
}

.topic-body ul {
    list-style: none;
    padding: 0;
}

.topic-body li {
    padding: 0.7rem 0;
    padding-left: 1.8rem;
    position: relative;
    border-bottom: 1px solid #eee;
}

.topic-body li:before {
    content: '\f0da';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--indigo);
}

/* Dimensions Grid */
.dimensions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.dimension-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 1.5rem;
    border-radius: 8px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.dimension-item i {
    font-size: 2rem;
    color: var(--amarillo-miel);
    margin-bottom: 0.8rem;
}

.dimension-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

/* Manifesto Box */
.manifesto-box {
    background: white;
    border-left: 6px solid var(--rojo-ladrillo);
    padding: 2.5rem;
    margin: 3rem 0;
    border-radius: 0 12px 12px 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.manifesto-box h3 {
    font-family: 'Playfair Display', serif;
    color: var(--rojo-ladrillo);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.manifesto-box p {
    color: #444;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline-item {
    display: flex;
    margin-bottom: 2rem;
    padding-left: 3rem;
    position: relative;
}

.timeline-item:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--purpura);
    border: 3px solid var(--amarillo-miel);
}

.timeline-item:after {
    content: '';
    position: absolute;
    left: 7px;
    top: 2.5rem;
    width: 2px;
    height: calc(100% + 1rem);
    background: var(--purpura);
}

.timeline-item:last-child:after {
    display: none;
}

.timeline-content {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    flex: 1;
}

.timeline-content h4 {
    color: var(--indigo);
    margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .content-section {
        padding: 2rem 1rem;
    }
    
    .info-grid,
    .gallery-grid,
    .forum-topics {
        grid-template-columns: 1fr;
    }
    
    .stats-grid,
    .dimensions-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 1rem;
    }
}