/*
Theme Name: Astra Child - Ottmar Mohring
Template: astra
Description: Child theme for Ottmar Mohring portfolio
Version: 1.0
*/

@import url("../astra/style.css");

/* Custom styles for artwork display */
.kunstwerk-details {
    background: #f9f9f9;
    padding: 20px;
    margin: 20px 0;
    border-left: 4px solid #333;
}

.kunstwerk-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.meta-item {
    padding: 10px;
    background: white;
    border-radius: 5px;
}

.meta-label {
    font-weight: bold;
    color: #666;
    font-size: 14px;
}

.meta-value {
    font-size: 16px;
    margin-top: 5px;
}

.kunstwerk-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.kunstwerk-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.kunstwerk-card:hover {
    transform: translateY(-5px);
}

.kunstwerk-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.kunstwerk-info {
    padding: 20px;
}

.kunstwerk-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.kunstwerk-year {
    color: #666;
    font-size: 14px;
}

/* Homepage Styles */
.hero-section {
    text-align: center;
    padding: 60px 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    margin-bottom: 60px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.hero-content h2 {
    font-size: 24px;
    color: #666;
    font-weight: normal;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 18px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 30px;
    color: #555;
}

.hero-button, .button {
    display: inline-block;
    padding: 15px 30px;
    background: #333;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.hero-button:hover, .button:hover {
    background: #555;
    color: white;
}

.featured-section, .werkgruppen-section {
    margin: 60px 0;
}

.featured-section h2, .werkgruppen-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #333;
}

.view-all-link {
    text-align: center;
    margin-top: 40px;
}

.werkgruppen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.werkgruppe-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.werkgruppe-card:hover {
    transform: translateY(-5px);
}

.werkgruppe-card h3 {
    margin-bottom: 15px;
}

.werkgruppe-card h3 a {
    color: #333;
    text-decoration: none;
}

.werkgruppe-card h3 a:hover {
    color: #666;
}

.werkgruppe-count {
    color: #666;
    font-size: 14px;
    margin-top: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-content h2 {
        font-size: 20px;
    }
    
    .kunstwerk-gallery {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .werkgruppen-grid {
        grid-template-columns: 1fr;
    }
}