/* ===== RESET & ALAPBEÁLLÍTÁSOK ===== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background-color: #ffffff;
    color: #1a1a1a;
    line-height: 1.7;
    font-size: 16px;
}

/* ===== FULL-WIDTH KÉP ===== */
.hero-image {
	width: 100%;
    height: auto;
    display: block;
    /* object-fit: cover;  ← Ezt töröld vagy kommentezd ki */
}

.hero-image.placeholder {
    background-image: none;
    color: #999;
    font-size: 18px;
    font-weight: 500;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 700px;
    margin: 0 auto;
    padding: 50px 30px;
}

/* ===== SZÖVEG STÍLUSOK ===== */
.content-text {
    margin-bottom: 40px;
}

.content-text p {
    margin-bottom: 20px;
    color: #333;
}

.content-text ul {
    margin: 20px 0;
    padding-left: 20px;
}

.content-text ul li {
    margin-bottom: 10px;
    color: #333;
}

.content-text strong {
    color: #1a1a1a;
    font-weight: 600;
}

.signature {
    margin-top: 30px;
    font-weight: 600;
    color: #1a1a1a;
}

/* ===== FIZETÉSI SZEKCIÓ ===== */
.payment-section {
    background: #f9f9f9;
    border-radius: 16px;
    padding: 40px 30px;
    margin-top: 40px;
    border: 1px solid #eaeaea;
}

.payment-section h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a1a;
    text-align: center;
}

.payment-section .subtitle {
    color: #666;
    font-size: 15px;
    text-align: center;
    margin-bottom: 30px;
}

/* ===== ÖSSZEG GOMBOK ===== */
.amount-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.amount-btn {
    padding: 16px 20px;
    font-size: 17px;
    font-weight: 600;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    background: #ffffff;
    color: #333;
    cursor: pointer;
    transition: all 0.2s ease;
}

.amount-btn:hover {
    border-color: #6772e5;
    transform: translateY(-2px);
}

.amount-btn.active {
    background: #6772e5;
    border-color: #6772e5;
    color: white;
    box-shadow: 0 4px 12px rgba(103, 114, 229, 0.3);
}

/* ===== EGYEDI ÖSSZEG ===== */
.custom-amount {
    margin: 25px 0;
    padding-top: 20px;
    border-top: 1px dashed #e0e0e0;
}

.custom-amount p {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
    text-align: center;
}

.custom-amount input {
    width: 100%;
    max-width: 250px;
    padding: 14px;
    font-size: 18px;
    text-align: center;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    transition: border-color 0.2s;
    display: block;
    margin: 0 auto;
}

.custom-amount input:focus {
    outline: none;
    border-color: #6772e5;
}

.custom-amount input::placeholder {
    color: #aaa;
}

/* ===== TÁMOGATÁS GOMB ===== */
.support-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 10px;
    box-shadow: 0 4px 14px rgba(40, 167, 69, 0.3);
}

.support-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

.support-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* ===== HIBA ÜZENET ===== */
.error-message {
    color: #dc3545;
    font-size: 14px;
    margin-top: 12px;
    display: none;
    padding: 10px;
    background: #fff5f5;
    border-radius: 8px;
    border: 1px solid #fed7d7;
    text-align: center;
}

.error-message.show {
    display: block;
}

/* ===== BIZALOM ÉSZREVÉTEL ===== */
.trust-badge {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #eaeaea;
    text-align: center;
}

.trust-badge img {
    margin-bottom: 10px;
    border-radius: 4px;
}

.trust-badge p {
    color: #666;
    font-size: 13px;
    margin: 4px 0;
}

.trust-badge small {
    color: #999;
    display: block;
    margin-top: 6px;
}

/* ===== MOBIL OPTIMALIZÁLÁS ===== */
@media (max-width: 768px) {
    .hero-image {
        width: 100%;
        height: auto;  /* Ugyanaz, mint desktopon - teljes szélesség */
    }
    
    .container {
        padding: 30px 20px;
    }
    
    .content-text p {
        font-size: 15px;
    }
    
    .payment-section {
        padding: 30px 20px;
    }
    
    .amount-group {
        grid-template-columns: 1fr;
    }
    
    .amount-btn {
        padding: 14px;
        font-size: 16px;
    }
    
    .support-btn {
        padding: 16px;
        font-size: 17px;
    }
}

/* ===== ANIMÁCIÓK ===== */
@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(15px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.container {
    animation: fadeIn 0.5s ease-out;
}

.amount-btn {
    animation: fadeIn 0.5s ease-out;
    animation-fill-mode: both;
}

.amount-btn:nth-child(1) { animation-delay: 0.1s; }
.amount-btn:nth-child(2) { animation-delay: 0.2s; }