/* Start custom CSS */.hero-button {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.9rem 1.75rem;
    background-color: #ffffff;
    color: #7AB51D;
    border: 2px solid #7AB51D;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0.75rem;
    transition: 0.25s ease;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    text-align: center;
}

.hero {
    text-align: center;
}



.hero-button:hover {
    background-color: #7AB51D;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}

.pillars {
    /*background-color: #f4f5fb;*/
    padding: 4rem 1.5rem;
    color: #0f172a;
}

.pillars-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.pillars-title {
    font-size: clamp(2rem, 3vw, 2.4rem);
    font-weight: 700;
    color: #4f46e5; /* fialová */
}

.pillars-underline {
    width: 120px;
    height: 4px;
    border-radius: 999px;
    background-color: #7AB51D; /* zelená jako tlačítko */
    margin: 0.75rem auto 1.25rem;
}

.pillars-subtitle {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 2.5rem;
}

.pillars-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.pillar-card {
    background-color: #ffffff;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.04);
    padding: 1.75rem 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    text-align: left;
    
}

.pillar-card:hover {
    border: 1px solid #4f46e5; /* fialový silnější rámeček */
    box-shadow: 0 16px 28px rgba(79, 70, 229, 0.15); /* optional */
}


.pillar-icon {
    width: 56px;
    height: 56px;
    border-radius: 999px;
    background: #f1e9ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #4f46e5;
    flex-shrink: 0;
}

.pillar-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
    font-weight: 700;
    color: #111827;
}

.pillar-content p {
    font-size: 0.95rem;
    color: #4b5563;
    margin: 0;
}

@media (min-width: 900px) {
    .pillars {
        padding: 5rem 2rem;
    }

    .pillars-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.75rem;
    }
}

.pricing {
    padding: 5rem 1.5rem 4rem;
    background: #ffffff;
}

.pricing-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.pricing-title {
    font-size: clamp(2rem, 3vw, 2.4rem);
    font-weight: 700;
    color: #4f46e5;
}

.pricing-underline {
    width: 120px;
    height: 4px;
    border-radius: 999px;
    background-color: #7AB51D;
    margin: 0.75rem auto 3rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75rem;
}

.pricing-card {
    background-color: #ffffff;
    border-radius: 1.25rem;
    border: 1px solid #e5e7eb;
    padding: 2.2rem 2rem 2.3rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.04);
}

.pricing-card--center {
    border: 2px solid #4f46e5;
    box-shadow: 0 22px 50px rgba(79, 70, 229, 0.18);
    position: relative;
}

.pricing-card--center:hover {
    border: 3px solid #4f46e5; /* fialový silnější rámeček */
    box-shadow: 0 16px 28px rgba(79, 70, 229, 0.15); /* optional */
}

.pricing-card--left:hover {
    border: 1px solid #4f46e5; /* fialový silnější rámeček */
}

.pricing-card--right {
    border-color: #cce8aa;
}

.pricing-card--right:hover {
    border: 1px solid #4f46e5; /* fialový silnější rámeček */
    box-shadow: 0 16px 28px rgba(79, 70, 229, 0.15); /* optional */
}


.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.35rem 1.1rem;
    border-radius: 999px;
    background-color: #4f46e5;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
}

.pricing-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #4f46e5;
    margin-bottom: 0.75rem;
}

.pricing-card--right .pricing-name {
    color: #7AB51D;
}

.pricing-price {
    font-size: 1.9rem;
    font-weight: 700;
    color: #111827;
}

.pricing-period {
    font-size: 0.95rem;
    color: #9ca3af;
    margin-bottom: 1.1rem;
}

.pricing-tagline {
    font-size: 0.95rem;
    font-style: italic;
    color: #6b7280;
    margin-bottom: 1.4rem;
}

.pricing-list {
    list-style: none;
    margin: 0 0 2rem;
    padding: 0;
    font-size: 0.95rem;
    color: #4b5563;
}

.pricing-list li {
    position: relative;
    padding-left: 1.6rem;
    margin-bottom: 0.6rem;
}

.pricing-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0.05rem;
    font-size: 0.9rem;
    color: #7AB51D;
}

/* JEDNOTNÝ BUTTON PRO VŠECHNY KARTY */
.pricing-button {
    background-color: #ffffff;
    color: #7AB51D;
    border: 2px solid #7AB51D;
    padding: 0.8rem 1.7rem;
    border-radius: 0.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: 0.25s ease;
    display: inline-block;
    margin-top: auto;
}

.pricing-button:hover {
    background-color: #7AB51D;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}

@media (min-width: 960px) {
    .pricing-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        align-items: stretch;
    }

    .pricing-card--center {
        transform: translateY(-10px);
    }
}


.supporters {
    /*background-color: #f4f5fb;*/
    padding: 4rem 1.5rem;
}

.supporters-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.supporters-title {
    font-size: clamp(2rem, 3vw, 2.4rem);
    font-weight: 700;
    color: #4f46e5;
}

.supporters-underline {
    width: 120px;
    height: 4px;
    border-radius: 999px;
    background-color: #7AB51D;
    margin: 0.75rem auto 3rem;
}

.supporters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    justify-items: center;
}

.supporter-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1.3rem 1.7rem;
    min-width: 180px;
    text-align: center;
    box-shadow: 0 12px 22px rgba(0,0,0,0.04);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 110px;
    
    transition: border 0.25s ease, box-shadow 0.25s ease;
}

.supporter-card:hover {
    border: 1px solid #4f46e5; /* fialový silnější rámeček */
    box-shadow: 0 16px 28px rgba(79, 70, 229, 0.15); /* optional */
}

.supporter-card-vy {
    background: #fff;
    border: 3px dashed  #7AB51D;
    border-radius: 0.75rem;
    padding: 1.3rem 1.7rem;
    min-width: 180px;
    text-align: center;
    box-shadow: 0 12px 22px rgba(0,0,0,0.04);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 110px;
    color: #7AB51D; /* zelený text */
}

/* animace textu */
.supporter-card-vy strong {
    transition: transform 0.25s ease;
    display: inline-block;
}

/* hover efekt – zvětšení textu */
.supporter-card-vy:hover strong {
    transform: scale(1.45);
}


.logo-card img {
    max-height: 50px;
    width: auto;
    object-fit: contain;
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.logo-card:hover


.contact-section {
    background: #4f46e5;
    padding: 5rem 1.5rem;
    color: #ffffff;
    border: 3px solid #7AB51D;  
    border-radius: 1.5rem;
    margin: 2rem;       
}

.contact-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.contact-title {
    font-size: clamp(2rem, 3vw, 2.4rem);
    font-weight: 700;
}

.contact-underline {
    width: 120px;
    height: 4px;
    background-color: #7AB51D;
    margin: 0.75rem auto 3rem;
    border-radius: 999px;
}

.contact-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(4px);
    border-radius: 1rem;
    padding: 2.2rem 2.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
     border: 3px solid #7AB51D;  
    border-radius: 1.5rem;
    margin: 2rem;       
}

.contact-left {
    text-align: left;
}

.contact-left h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.contact-role {
    font-size: 0.95rem;
    opacity: 0.85;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.contact-line {
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.6rem;
}

.contact-right {
    text-align: left;
    font-size: 1rem;
    line-height: 1.5;
}

.contact-button {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.85rem 2rem;
    background-color: #7AB51D;
    color: #ffffff;
    font-weight: 600;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: 0.25s ease;
}

.contact-button:hover {
    /*background-color: #679a18;*/
    color:#ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.28);
}

@media (min-width: 900px) {
    .contact-card {
        grid-template-columns: 1fr 1fr;
        padding: 2.8rem 3.2rem;
    }
}/* End custom CSS */