/**
 * Homepage - Simple Gallery Style
 * Clean, minimal design for service panels
 */

/* ============================================
   PAGE BACKGROUND
   ============================================ */

body.page-home {
    background: #f5f5f0;
}

#universe-container {
    display: none;
}

/* ============================================
   PAGE SHELL
   ============================================ */

.page-shell {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* ============================================
   PAGE HEADER
   ============================================ */

.page-header {
    text-align: center;
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 2rem;
    font-weight: 600;
    color: #2d5a27;
    margin-bottom: 8px;
}

.page-header p {
    font-size: 1rem;
    color: #666;
}

/* ============================================
   GALLERY GRID
   ============================================ */

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   SERVICE CARDS - GALLERY STYLE
   ============================================ */

.service-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    transition: box-shadow 0.2s ease;
}

.service-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.service-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a2e1a;
    margin-bottom: 8px;
}

.service-description {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 16px;
    flex-grow: 1;
}

.service-button {
    background: #548c26;
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: background 0.2s ease;
}

.service-card:hover .service-button {
    background: #2d5a27;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
    margin-top: 40px;
    text-align: center;
    padding: 20px;
    color: #888;
    font-size: 0.875rem;
}
