/*
Theme Name: Moonshine Zen
Author: Moonshine sp. z o.o.
Description: Minimalistyczny motyw premium inspirowany japońskim designem.
Version: 1.2
*/

:root {
    --bg-color: #f5f3ed;
    --text-color: #2c2c2c;
    --accent-color: #d4af37;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Header & Menu */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    max-width: 1300px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-decoration: none;
    color: var(--text-color);
}

.main-navigation ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation a {
    text-decoration: none;
    color: var(--text-color);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.main-navigation a:hover {
    color: var(--accent-color);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 3rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-weight: 300;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.hero p {
    color: #555;
}

/* Kafelki (Bento Grid) - GŁÓWNY UKŁAD 4 OBOK SIEBIE */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Zmusza do 4 kolumn obok siebie */
    gap: 1.5rem;
    padding: 2rem 5%;
    max-width: 1300px;
    margin: 0 auto 5rem auto;
    align-items: stretch; /* Sprawia, że kafelki mają równą wysokość */
}

.service-card {
    background: #f2efe9;
    padding: 3rem 1.5rem;
    text-align: center;
    border-radius: 2px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    transition: transform 0.4s ease, background 0.4s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    background: #e8e4db;
}

.icon-wrapper {
    height: 70px;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-wrapper svg {
    width: 65px;
    height: 65px;
    stroke: var(--text-color);
    stroke-width: 0.8;
    fill: none;
}

.service-card h2 {
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Stopka */
.site-footer {
    text-align: center;
    padding: 2rem;
    font-size: 0.8rem;
    color: #888;
}

/* Responsywność dla mniejszych ekranów */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .site-header { flex-direction: column; gap: 1.5rem; }
    .services-grid { grid-template-columns: 1fr; }
}