/**
Theme Name: I-match Childthema
Author: I-match webconcepts
Author URI: https://i-match.nl/
Description: I-match ChildTheme
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: i-match-childthema
Template: astra
*/


/* =========================================================
   IJsselmeer Donatie Widget – originele styling
   ========================================================= */

.ijsselmeer-donation-widget * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.ijsselmeer-donation-widget {
    max-width: 720px;
    margin: 30px auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow:
        0 25px 60px rgba(54, 130, 142, 0.25),
        0 10px 30px rgba(54, 130, 142, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 50px 45px;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
}

/* Header */

.ijsselmeer-donation-widget h2 {
    font-weight: 800;
    color: #2c5f66;
    margin-bottom: 50px;
    text-align: center;
}

.ijsselmeer-donation-widget p {
    text-align: center;
    color: #5a7b82;
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.6;
}

/* Amount buttons */

.amount-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.amount-option {
    border: 2px solid #d1e7ea;
    border-radius: 20px;
    padding: 22px 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.35s ease;
    background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
    font-size: 20px;
    font-weight: 700;
    color: #36828e;
    box-shadow: 0 4px 12px rgba(54, 130, 142, 0.1);
}

.amount-option:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 15px 40px rgba(54, 130, 142, 0.3);
}

.amount-option.selected {
    background: linear-gradient(135deg, #36828e 0%, #4da6b3 50%, #5dc4d1 100%);
    color: #ffffff;
    border-color: #36828e;
    transform: scale(1.08);
    box-shadow:
        0 20px 50px rgba(54, 130, 142, 0.5),
        0 0 0 6px rgba(54, 130, 142, 0.15);
    animation: selectedBounce 2.5s ease-in-out infinite;
}

/* Custom amount */

#custom-amount {
    width: 100%;
    padding: 22px 22px;
    font-size: 22px;
    font-weight: 700;
    border-radius: 20px;
    border: 2px solid #d1e7ea;
    margin-bottom: 30px;
    outline: none;
    background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
    box-shadow:
        inset 0 2px 6px rgba(0, 0, 0, 0.06),
        0 6px 20px rgba(54, 130, 142, 0.12);
    transition: all 0.3s ease;
}

#custom-amount::placeholder {
    color: #9bb9bf;
    font-weight: 500;
}

#custom-amount:focus {
    border-color: #36828e;
    box-shadow:
        inset 0 2px 6px rgba(0, 0, 0, 0.06),
        0 0 0 4px rgba(54, 130, 142, 0.15),
        0 10px 30px rgba(54, 130, 142, 0.25);
}


/* Donate button */

.donate-button {
    width: 100%;
    background: linear-gradient(135deg, #36828e 0%, #4da6b3 50%, #5dc4d1 100%);
    color: white;
    border: none;
    border-radius: 20px;
    padding: 24px 20px;
    font-size: 19px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.4s ease;
    margin-top: 10px;
    box-shadow: 0 12px 35px rgba(54, 130, 142, 0.4);
}

.donate-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 60px rgba(54, 130, 142, 0.55);
}

/* Animations */

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes selectedBounce {
    0%, 100% {
        transform: scale(1.08);
    }
    50% {
        transform: scale(1.12);
    }
}

/* Mobile */

@media (max-width: 600px) {
    .amount-grid {
        grid-template-columns: 1fr;
    }

    .ijsselmeer-donation-widget {
        padding: 35px 25px;
    }
}

.donation-section {
    margin-bottom: 30px;
}

.section-label {
    font-size: 16px;
    font-weight: 600;
    color: #2c5f66;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-label::before {
    content: '';
    width: 4px;
    height: 16px;
    background: #36828e;
    border-radius: 2px;
}









.ijsselmeer-thankyou {
    max-width: 600px;
    margin: 60px auto;
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    font-family: inherit;
}

.ijsselmeer-thankyou.success {
    background: #e6f5f6;
    border: 2px solid #36828e;
}

.ijsselmeer-thankyou.pending {
    background: #fff6e5;
    border: 2px solid #e6a700;
}

.ijsselmeer-thankyou.canceled,
.ijsselmeer-thankyou.failed {
    background: #fdeaea;
    border: 2px solid #cc3a3a;
}

.ijsselmeer-thankyou h2 {
    margin-bottom: 16px;
}
