/* Custom styles for the ICE assistance website */

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
}

.hero.is-primary {
    background: linear-gradient(135deg, #B31B1B 0%, #8B1C1C 100%);
}

.hero .title {
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.section {
    padding: 3rem 1.5rem;
}

.content h2.title {
    color: #363636;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #B31B1B;
    padding-bottom: 0.5rem;
}

.custom-list {
    margin: 1.5rem 0;
}

.custom-list li {
    padding: 0.75rem 0.5rem;
    border-radius: 4px;
}

.donation-steps {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #dbdbdb;
    margin: 1.5rem 0;
}

.donation-steps li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.donation-steps li:last-child {
    margin-bottom: 0;
}

.box {
    background: linear-gradient(145deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid #dee2e6;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.image img {
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    margin-top: 1rem;
}

a {
    color: #B31B1B;
    text-decoration: none;
    font-weight: 500;
}

a:hover {
    color: #8B1C1C;
    text-decoration: underline;
}

.footer {
    background-color: #363636;
    color: #fff;
    margin-top: 3rem;
}

.footer p {
    color: #b5b5b5;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .hero .title {
        font-size: 1.75rem;
    }

    .section {
        padding: 2rem 1rem;
    }

    .column.is-8.is-offset-2 {
        margin: 0;
        padding: 0 1rem;
    }

    .donation-steps {
        padding: 1rem;
    }

    .donation-steps li {
        font-size: 1rem;
    }
}

/* Print styles */
@media print {
    .hero, .footer {
        display: none;
    }

    .section {
        padding: 1rem 0;
    }

    a {
        color: #000;
        text-decoration: underline;
    }

    .box {
        background: #fff;
        border: 1px solid #000;
    }
}