/* GENERAL STYLES */
body {
    margin: 0;
    font-family: "Roboto", sans-serif;
    line-height: 1.6;
    background: #f9f9f9;
    color: #333;
}

a {
    text-decoration: none;
    color: #333;
}

main a {
    border-bottom: 1px dashed;
}
a:hover {
    color: #a02323;
}

tr:nth-child(even) {
    background-color: #eee;
}

td {
    border: 1px solid #ddd;
    padding: 5px;
}

iframe.width100 {
    width: 100%;
    display: block; /* Ensures block-level behavior */
    border: none; /* Optional: removes default border */
}

.row:after {
    content: "";
    display: table;
    clear: both;
}

.column {
    width: 50%;
    float: left;
}

.content-header img {
    width: 100%;
    max-height: 250px;
    object-fit: cover;
    object-position: center;
}

/* Override: 100% width for screens smaller than 768px (typical phone size) */
@media (max-width: 640px) {
    .column {
        width: 100%;
    }
}

/* HEADER */
header {
    background: #fff;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    text-align: center;
}

header h1 {
    margin-top: 0;
}

.logo {
    width: 100%;
    max-width: 360px;
}

.subtitle {
    font-size: 0.7em;
    color: #666;
}

/* NAVIGATION */
nav {
    background: #e55e48;
}

.nav-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-container li {
    margin: 0 15px;
}

.nav-container li a {
    color: #fff;
    font-weight: bold;
    padding: 10px 0;
    display: inline-block;
}

.nav-container li a:hover {
    text-decoration: underline;
}

section {
    max-width: 800px;
    margin: 40px auto;
}
.content {
    padding: 0 10px;
}

/* NOTICE */
.notice {
    text-align: center;
    padding: 20px;
    background: #fffae6;
    border: 1px solid #ffe58f;
    margin: 20px auto;
    max-width: 800px;
    font-weight: bold;
}

/* SLIDER */
.slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto 40px;
}

.slides .slide {
    display: none;
    position: relative;
}
.slides img {
    width: 100%;
    height: 300px;
    min-height: 300px;
    border-radius: 8px;
    object-fit: cover;
}
.caption {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 10px;
    border-radius: 4px;
}

.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 24px;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    border-radius: 50%;
}

.prev {
    left: 10px;
}
.next {
    right: 10px;
}

/* FOOTER */
footer {
    background: #333;
    color: #fff;
    padding: 20px 0 10px;
    text-align: center;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1000px;
    margin: 0 auto;
}

.footer-container div {
    margin: 10px;
}

.donate-btn {
    display: inline-block;
    background: #e55e48;
    color: #fff;
    padding: 8px 15px;
    border-radius: 5px;
    margin-top: 5px;
}

.donate-btn:hover {
    background: #a02323;
    color: #fff;
}

.button {
    display: inline-block;
    background: #e55e48;
    color: #fff;
    padding: 8px 15px;
    border-radius: 5px;
    margin-top: 5px;
    border-bottom: 0;
}

.button.green {
    background: rgb(60, 132, 97);
}

.button.blue {
    background: #2259b2;
}

.button:hover {
    background: #a02323;
    color: #fff;
}

.text-center {
    text-align: center;
}

footer a {
    color: #fff;
}
footer a:hover {
    color: #a02323;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
    }
    .footer-container {
        flex-direction: column;
        align-items: center;
    }
}
