/* ====================== STYLEINDEX.CSS ====================== */
/* Только уникальные стили для главной страницы index.html */

.slogan {
    font-size: 28px;
    color: var(--accent-blue);
    font-weight: bold;
    margin-top: 20px;
    animation: pulse 4s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ====================== DONATE BUTTONS ON INDEX ====================== */

/* Большая золотая кнопка "Donate" */
.donate-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 32px;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 1px;
    color: var(--primary);
    text-decoration: none;
    border-radius: 30px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light), var(--gold), var(--gold-dark));
    background-size: 300%;
    box-shadow: 0 0 10px rgba(255,215,0,0.5), 0 0 20px rgba(255,215,0,0.4);
    animation: goldButton 4s linear infinite;
    transition: all 0.3s ease;
}

.donate-btn:hover {
    transform: scale(1.07);
    box-shadow: 0 0 20px rgba(255,215,0,0.8), 0 0 40px rgba(255,215,0,0.6);
}

@keyframes goldButton {
    0% { background-position: 0%; }
    100% { background-position: 300%; }
}

/* Кнопки сумм пожертвований (10$, 25$, 50$ и т.д.) — ЗОЛОТЫЕ на главной */
.donate-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin: 25px 0;
}

.donate-buttons button {
    padding: 14px 28px;
    font-size: 17px;
    font-weight: bold;
    color: var(--primary);
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light), var(--gold), var(--gold-dark));
    background-size: 300%;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
    box-shadow: 0 0 10px rgba(255,215,0,0.4);
    animation: goldButton 4s linear infinite;
}

.donate-buttons button:hover {
    transform: scale(1.07);
    box-shadow: 0 0 20px rgba(255,215,0,0.6);
}

/* Выпадающее меню оплаты (PayPal, Crypto и т.д.) */
#donation-options {
    margin-top: 30px;
    display: none;
    background: var(--card-bg);
    padding: 25px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Кнопки методов оплаты внутри выпадающего меню — синие */
.pay-btn {
    display: block;
    margin: 12px 0;
    padding: 14px 18px;
    background: linear-gradient(45deg, var(--primary), var(--accent-blue));
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
}

.pay-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

/* Дополнительные элементы */
.donate-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 120px;
}

.impact-hint {
    font-size: 12px;
    margin-top: 5px;
    color: var(--muted);
    text-align: center;
}

.highlight {
    transform: scale(1.15);
    box-shadow: 0 0 20px rgba(255,215,0,0.9), 0 0 40px rgba(255,215,0,0.7);
    border: 2px solid var(--gold);
}

.tax-block {
    background: #f4f8ff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    margin: 40px 0;
}

/* Stories и Gallery */
.stories {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 20px;
}

.story {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 15px;
    margin: 10px;
    max-width: 250px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.story:hover {
    transform: scale(1.05);
}

.story img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 10px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.gallery img {
    width: 100%;
    border-radius: 10px;
    transition: 0.3s;
}

.gallery img:hover {
    transform: scale(1.05);
}

/* Trust bar */
.trust-bar {
    font-size: 16px;
    color: var(--accent-blue);
    margin: 15px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}

.trust-logo {
    height: 20px;
    vertical-align: middle;
    margin: 0 3px;
}

/* Floating button */
.floating {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--primary);
    color: white;
    padding: 15px 25px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 1000;
}

/* Мобильная адаптация */
@media (max-width: 600px) {
    .donate-buttons button {
        width: 80%;
        margin: 10px auto;
        display: block;
    }
}

/* ====================== 2% BUTTON ====================== */
.learn-more-btn {
    display: inline-block;
    margin: 20px 0 30px 0;
    padding: 14px 32px;
    font-size: 17px;
    font-weight: bold;
    letter-spacing: 0.5px;
    color: var(--primary);
    background: linear-gradient(90deg, #b8962e, #ffd700, #fff4b0, #ffd700, #b8962e);
    background-size: 300%;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 0 15px rgba(255,215,0,0.5);
    animation: goldButton 4s linear infinite;
    transition: all 0.3s ease;
    border: 2px solid #d4af37;
}

.learn-more-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 0 25px rgba(255,215,0,0.7);
}

/* ====================== 2% BUTTON / AFLĂ MAI MULTE  
.learn-more-btn {
    display: inline-block;
    margin-top: 15px;
    margin-bottom: 20px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
    color: var(--primary);
    text-decoration: none;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
    border: 2px solid var(--gold);
}

.learn-more-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold-dark));
}

/* Если есть блок с текстом про 2% */
/*.tax-info, .two-percent-block {*/
/*    background: #f4f8ff;*/
/*    padding: 20px;*/
/*    border-radius: 12px;*/
/*    margin: 30px auto;*/
/*    max-width: 700px;*/
/*    border-left: 5px solid var(--gold);*/
/*    text-align: left;*/
/*}*/

/*.tax-info p, .two-percent-block p {*/
/*    margin-bottom: 15px;*/
/*    color: #333;*/
/*    font-size: 15px;*/
/*}  ====================== */
/* Кнопка "Află mai multe" / "Get more info" / "Подробнее" про 2% */
