/*
Theme Name: PinArtStatue
Theme URI: https://pinartstatue.com/
Author: PinArtStatue
Author URI: https://pinartstatue.com/
Description: A custom theme for PinArtStatue
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: pinartstatue
Tags: art, sculpture, gallery, custom-product, responsive
*/

/* 主题基本样式，其他样式从PinArtStatue静态目录加载 */

/* This file will contain basic styles. Most styles will be enqueued from the assets/css directory */ 

/* Application Archive Styles */
.applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.application-item {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.application-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.application-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.application-content {
    padding: 20px;
}

.application-content .entry-title {
    margin: 0 0 15px;
    font-size: 1.5em;
}

.application-content .entry-summary {
    margin-bottom: 20px;
}

.application-features ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.application-features li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.application-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #666;
}

.read-more {
    display: inline-block;
    padding: 8px 20px;
    background: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.read-more:hover {
    background: #555;
}

/* Application Single Post Styles */
.application-gallery {
    margin: 30px 0;
}

.gallery-main {
    margin-bottom: 20px;
}

.gallery-main img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
}

.gallery-thumbs img {
    width: 100%;
    height: auto;
    cursor: pointer;
    border-radius: 4px;
    transition: opacity 0.3s ease;
}

.gallery-thumbs img:hover {
    opacity: 0.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.feature-item {
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
}

.feature-item h3 {
    margin: 0 0 15px;
    color: #333;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.specs-table th,
.specs-table td {
    padding: 12px;
    border-bottom: 1px solid #eee;
    text-align: left;
}

.specs-table th {
    width: 30%;
    background: #f9f9f9;
}

.related-applications {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.related-item {
    text-align: center;
}

.related-thumbnail {
    display: block;
    margin-bottom: 15px;
}

.related-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.related-item h3 {
    margin: 0;
    font-size: 1.2em;
}

.related-item h3 a {
    color: #333;
    text-decoration: none;
}

.related-item h3 a:hover {
    color: #555;
}

/* Application Filter Styles */
.application-filters {
    margin: 30px 0;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
}

.filter-categories h3 {
    margin: 0 0 15px;
}

.filter-categories ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-categories a {
    display: inline-block;
    padding: 8px 15px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.filter-categories a:hover,
.filter-categories a.active {
    background: #333;
    color: #fff;
    border-color: #333;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .applications-grid {
        grid-template-columns: 1fr;
    }

    .features-grid,
    .related-grid {
        grid-template-columns: 1fr;
    }

    .specs-table th {
        width: 40%;
    }
} 