#home {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    width: 100%;
}

.homik {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 12px;
    padding: 6rem 2rem;
    text-align: center;
    color: white;
    background: linear-gradient(150deg, var(--glowny) 0%, #373C58 100%);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.homik h1 {
    font-family: 'Kaushan Script';
    color: #E0A000;
    font-size: 4rem;
    margin-block: 0 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
    text-transform: uppercase;
}

.homik p {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: #E2E2E2;
    max-width: 800px;
}

.homik .oferta {
    border: 1px solid #339633;
    background-color: #3BB03B;
    color: white;
    padding: 10px 25px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.homik .oferta:hover {
    background-color: #1f5a1f;
    border: 1px solid #339633;
    color: white;
    box-shadow: 0 4px 10px rgba(59, 176, 59, 0.3);
}

.klateczki {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
}

.klateczka {
    background-color: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    transition: .2s ease-in-out;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.klateczka:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.klateczka img {
    width: 60px;
    height: 60px;
}

.klateczka h3 {
    color: var(--glowny);
    text-transform: uppercase;
    font-size: 1.4rem;
    margin-block: 1rem;
}

.klateczka p {
    color: #555555;
    line-height: 1.6;
    margin: 0;
}