/* GLOBAL */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #111;
    color: white;
    line-height: 1.6;
}
/* HEADER */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
    background: black;
    flex-wrap: wrap;
}
img {
    max-width: 100%;
    height: auto;
}
.logo {
    height: 50px;
    width: auto;
}
nav {
    margin-top: 10px;
}

nav a {
    color: white;
    margin: 5px 10px;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    color: #C62828;
}

/* HERO */
.hero {
    background: url('../images/YorkRoad.jpg') center/cover no-repeat;
    padding: 140px 20px;
    text-align: center;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.75); /* slightly darker */
}
.hero h1,
.hero p {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 20px;
}

/* PAGE SECTIONS */
section {
    padding: 50px 20px;
    max-width: 1000px;
    margin: auto;
}

h1, h2 {
    color: #C62828;
    margin-bottom: 15px;
}

/* TABLES */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th, td {
    padding: 12px;
    border: 1px solid #333;
}

th {
    background: #C62828;
    color: white;
}

tr:nth-child(even) {
    background: #1a1a1a;
}

/* LINKS */
a {
    color: #C62828;
}

a:hover {
    text-decoration: underline;
}
@media (max-width: 768px) {
    .hero {
        padding: 100px 15px 60px;
    }

    .hero h1 {
        font-size: 24px;
        line-height: 1.3;
    }

    .hero p {
        font-size: 16px;
    }
}
/* VIDEO */
iframe {
    width: 100%;
    max-width: 800px;
    height: 450px;
    display: block;
    margin: 20px auto;
}

/* BUTTON (for Join, Donate etc.) */
.button {
    display: inline-block;
    background: #C62828;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

.button:hover {
    background: #a61e1e;
}

/* NEWSLETTER / MAILCHIMP */
.newsletter {
    text-align: center;
    padding: 40px 20px;
}

#mc_embed_signup {
    margin-bottom: 20px;
}

#mc_embed_signup label {
    display: block;
    color: #fff;
    font-weight: bold;
    margin-top: 10px;
}

#mc_embed_signup input {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 5px auto 15px;
    padding: 10px;
    border: 1px solid #ccc;
}

/* SOCIAL ICONS */
.social-icons {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.social-icons img {
    width: 40px;
    transition: 0.3s;
}

.social-icons img:hover {
    transform: scale(1.2);
}
.images {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.images img {
    width: 220px;        /* controls size */
    height: 140px;       /* keeps landscape shape */
    object-fit: cover;   /* prevents stretching */
    border-radius: 5px;
}
.button-group {
    text-align: center;
    margin-top: 20px;
}

.button-group .button {
    margin: 5px;
}
.page-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 10px; /* optional, looks nicer */
}
/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    background: #000;
    color: #fff;
}
.footer-logo {
    height: 50px;
    width: auto;
    display: block;
    margin: 0 auto 10px;
}
footer p {
    text-align: center;
    margin: 0;
}


