@import url('https://fonts.googleapis.com/css2?family=Gruppo&family=Yanone+Kaffeesatz:wght@400;600&display=swap');

* { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
}

body {
    background: #ffffff;
    color: #1a1a1a;
    font-family: 'Gruppo', sans-serif;
    padding: 40px 20px;
}

h1 {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-size: 3rem;
    text-transform: uppercase;
    margin-bottom: 40px;
}

/* Návratový odkaz – jemný hover */
.zpet-link {
    color: #888;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 20px;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.zpet-link:hover {
    color: #000000;
}

/* --- MŘÍŽKA S PROJEKTY --- */
.projekty-grid {
    display: grid;
    gap: 20px;
    max-width: 1000px;
}

@media (min-width: 0px) { .projekty-grid { grid-template-columns: 1fr; } }
@media (min-width: 600px) { .projekty-grid { grid-template-columns: repeat(2, 1fr); } }

/* --- KARTIČKA PROJEKTU --- */
.projekt-karta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 25px;
    background-color: transparent;
    border: 1px solid #eeeeee;
    text-decoration: none;
    color: inherit;
    border-radius: 8px;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), 
                border-color 0.4s ease, 
                box-shadow 0.4s ease;
}

.projekt-info h3 {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-size: 2rem;
    text-transform: uppercase;
    transition: color 0.3s ease;
    margin-bottom: 10px;
}

.projekt-info p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.5;
}

/* --- KOSMICKÝ HOVER EFEKT --- */
.projekt-karta:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(255, 230, 0, 0.4);
    box-shadow: 0 10px 25px rgba(255, 230, 0, 0.05);
}

.projekt-karta:hover .projekt-info h3 {
    color: #ffe600;
    text-shadow: 0 0 8px rgba(255, 230, 0, 0.4);
}