/* ==========================================
   KREAMEDIA BOOK - Estilos esenciales
   ========================================== */

/* Hide sidebar */
body.post-type-archive-proyecto #secondary,
body.single-proyecto #secondary,
body.tax-tipo-proyecto #secondary {
    display: none !important;
}

body.post-type-archive-proyecto #primary,
body.single-proyecto #primary,
body.tax-tipo-proyecto #primary {
    width: 100% !important;
}

/* Filters */
.kreamedia-filters {
    margin-bottom: 40px;
}

.filter-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    background: #fff;
    border: 2px solid #e0e0e0;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-btn:hover {
    border-color: #1a1a1a;
    background: #fff;
    color: #1a1a1a;
}

.filter-btn.active {
    background: #1a1a1a;
    border-color: #1a1a1a;
    color: #fff;
}

.filter-btn.active:hover {
    background: #333;
    border-color: #333;
    color: #fff;
}

/* Projects Grid */
.proyectos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

/* Limitar ancho máximo de tarjetas cuando hay pocas */
@media (min-width: 922px) {
    .proyectos-grid .proyecto-card {
        max-width: 100%;
        width: 100%;
    }
}

.proyecto-card {
    background: #fff;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.proyecto-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.proyecto-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.proyecto-thumbnail {
    position: relative;
    overflow: hidden;
    padding-bottom: 75%;
    background: #f5f5f5;
}

.proyecto-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.proyecto-card:hover .proyecto-thumbnail img {
    transform: scale(1.05);
}

.proyecto-info {
    padding: 25px;
}

.proyecto-info .proyecto-title {
    font-weight: 500;
    margin: 0 0 15px 0;
    color: #1a1a1a;
}

.proyecto-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    color: #666;
}

.meta-ubicacion:before {
    content: "📍 ";
}

.meta-ano:before {
    content: "📅 ";
}

.proyecto-tipos {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tipo-badge {
    display: inline-block;
    padding: 5px 12px;
    background: #f5f5f5;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 3px;
}

/* Pagination */
.navigation.pagination {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.navigation.pagination .nav-links {
    display: flex;
    gap: 10px;
}

.navigation.pagination a,
.navigation.pagination span {
    display: block;
    padding: 10px 15px;
    background: #fff;
    border: 2px solid #e0e0e0;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.navigation.pagination a:hover {
    border-color: #1a1a1a;
    color: #1a1a1a;
}

.navigation.pagination .current {
    background: #1a1a1a;
    border-color: #1a1a1a;
    color: #fff;
}

/* Single Proyecto */
.proyecto-header {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.proyecto-header-content .proyecto-title {
    font-weight: 300;
    margin: 0 0 30px 0;
    color: #1a1a1a;
}

.proyecto-meta-info {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 30px;
    align-items: start;
}

.proyecto-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.detail-item {
    display: flex;
    gap: 10px;
}

.detail-label {
    font-weight: 600;
    color: #1a1a1a;
    min-width: 100px;
}

.detail-value {
    color: #666;
}

.proyecto-description {
    margin-bottom: 60px;
    line-height: 1.8;
    color: #444;
}

/* Gallery */
.proyecto-gallery-wrapper {
    margin-bottom: 60px;
}

.gallery-title {
    font-weight: 300;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.justified-gallery {
    margin: 0 !important;
}

.justified-gallery > a {
    position: relative;
    overflow: hidden;
}

.justified-gallery > a img {
    transition: transform 0.3s ease;
}

.justified-gallery > a:hover img {
    transform: scale(1.05);
}

/* Project Navigation */
.proyecto-navigation {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
}

.proyecto-navigation .nav-links {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
}

.proyecto-navigation a {
    text-decoration: none;
    color: inherit;
    padding: 20px;
    background: #f9f9f9;
    transition: background 0.3s ease;
    display: block;
}

.proyecto-navigation a:hover {
    background: #f0f0f0;
}

.nav-subtitle {
    display: block;
    color: #999;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-title {
    display: block;
    font-weight: 500;
    color: #1a1a1a;
}

.nav-next {
    text-align: right;
}

.nav-back {
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .proyectos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .proyecto-header-content .proyecto-title {
    }
    
    .proyecto-meta-info {
        grid-template-columns: 1fr;
    }
    
    .proyecto-navigation .nav-links {
        grid-template-columns: 1fr;
    }
    
    .nav-next,
    .nav-back {
        text-align: left;
    }
    
    .filter-buttons {
        flex-direction: column;
    }
    
    .filter-btn {
        width: 100%;
    }
}

/* No projects message */
.no-projects {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

/* Galería debe ocupar 100% del ancho */
.gallery-grid {
    width: 100% !important;
    max-width: 100% !important;
}

.proyecto-gallery-wrapper {
    width: 100%;
    max-width: 100%;
}

/* Lightgallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.gallery-grid a {
    display: block;
    overflow: hidden;
    position: relative;
}

.gallery-grid a img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-grid a:hover img {
    transform: scale(1.05);
}

/* Meta info inline - categorías y ubicación en la misma línea */
.proyecto-meta-info {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.proyecto-tipos {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 0;
}

.proyecto-details {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin: 0;
}

.detail-item {
    display: flex;
    gap: 5px;
    align-items: center;
}

/* Container más ancho para single proyecto */
.single-proyecto #primary,
.single-proyecto .site-main {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Fix excerpt layout en cards */
.proyecto-card .proyecto-info {
    width: 100%;
}

.proyecto-card .proyecto-info * {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.proyecto-card .entry-content,
.proyecto-card .ast-excerpt-container {
    width: 100%;
}

/* Quitar bordes de las cards */
.proyecto-card {
    border: none !important;
    box-shadow: none !important;
    background: transparent;
}

.proyecto-card:hover {
    box-shadow: none !important;
}

/* Símbolos elegantes en vez de emojis */
.meta-ubicacion:before {
    content: "● ";
    color: #999;
}

.meta-ano:before {
    content: "";
}

/* Separador entre ubicación y año */
.proyecto-meta {
    display: flex;
    gap: 8px;
    align-items: center;
}

.meta-ano:before {
    content: "|";
    margin: 0 4px;
    color: #ddd;
}

/* Sin símbolos - minimalista */
.meta-ubicacion:before,
.meta-ano:before {
    content: none !important;
}

/* Separador simple entre ubicación y año */
.meta-ubicacion:after {
    content: "|";
    margin: 0 8px;
    color: #ddd;
}

/* Quitar padding de la info de la card */
.proyecto-info {
    padding: 0 !important;
    margin-top: 15px;
}

/* Forzar padding lateral en móvil igual que otras páginas */
@media (max-width: 921px) {
    .post-type-archive-proyecto .ast-container,
    .tax-tipo-proyecto .ast-container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

/* Campo destacado - estilo elegante */

.detail-destacado {
    padding: 5px 16px;
    background: #f9f9f9;
    border-left: 3px solid #d20d22;
}






.detail-destacado-text {
    font-weight: 500;
    color: #1a1a1a;
}

/* Destacado en el listado - sutil y elegante */
.proyecto-destacado {
    display: inline-block;
    padding: 4px 10px;
    background: #f9f9f9;
    border-left: 2px solid #d20d22;
    color: #666;
    margin-top: 8px;
    font-weight: 500;
}
