/* --- Základní a písmo --- */
:root {
    --font-family-base: 'Balsamiq Sans', cursive;
}

body {
    font-family: var(--font-family-base);
    min-height: 100vh;
}
.onlytext.text-blue-600.hover\:text-blue-800.text-sm {
  color: #901c5d;
}
/* Oprava pro centrování tlačítek */
.flex.flex-col.md\:flex-row.gap-6 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.text-sm a {
    text-decoration: underline;
}

.material-icons {
    font-size: 80px;
}

/* Styly pro textové odkazy */
.onlytext {
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: underline;
    transition: color 0.2s ease;
    padding: 0.5rem 1rem;
}

.onlytext:hover {
    text-decoration: none;
}

/* Styly pro rozcestník (Chooser) */
#site-chooser {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(135deg, #FF6B8B 0%, #4D96FF 100%);
    z-index: 2000;
}

.chooser-card {
    background: white;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
    border-radius: 1rem;
    margin: 20px;
    max-width: 800px;
    width: 90%;
}

.chooser-btn-novybor { 
    background-color: #901c5d; 
}

.chooser-btn-ceskalipa { 
    background-color: orange; 
}

.chooser-btn {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    transition: transform 0.2s, opacity 0.2s, background-color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 250px;
}

.chooser-btn:hover {
    transform: translateY(-4px);
    opacity: 0.9;
}

/* Speciální hover efekty pro lepší dojem */
.chooser-btn-novybor:hover {
    background-color: #a82d6d;
}

.chooser-btn-ceskalipa:hover {
    background-color: #ffb800;
}

.font-semibold {
    font-size: 32px;
}

/* Benefity sekce */
.benefits-section {
    background: #f8f9fa;
    padding: 4rem 0;
}

.benefit-item {
    text-align: center;
    padding: 2rem 1rem;
    margin-bottom: 2rem;
}

.benefit-icon {
    font-size: 3rem;
    color: #901c5d;
    margin-bottom: 1rem;
}

.benefit-item h4 {
    color: #333;
    font-weight: bold;
    margin-bottom: 1rem;
    font-size: 32px;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

/* Styly pro kontejner textových odkazů pod tlačítky */
.links-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
.mb-6.text-sm.text-gray-500 {
  display: none;
}
.mt-8.text-lg.font-semibold.text-green-600 {
  display: none;
}
}