body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #1e293b;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

/* NAV */
.navbar {
    background: #0f172a;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 60px;
    width: auto;
}

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

/* HERO */

.hero {
    background: 
        linear-gradient(rgba(15,23,42,0.7), rgba(15,23,42,0.7)),
        url("Images/wholeband.jpg");
    
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 120px 20px;
}

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

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


/* GRID */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

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

.card {
    background: #f8f5ef;
    padding: 25px;
    text-align: center;
}

/* SECTIONS */
section {
    padding: 60px 0;
}

.about img, .join img {
    max-width: 220px;
    width: 100%;
    display: block;
    margin: auto;
    opacity: 0.9;
}

/* BUTTON */
.btn {
    background: #c89b3c;
    color: white;
    padding: 10px 18px;
    text-decoration: none;
    display: inline-block;
}

/* FOOTER */
footer {
    background: #0f172a;
    color: white;
    text-align: center;
    padding: 20px;
}

footer a {
    color: #c89b3c;
}

/* MOBILE */
@media (max-width: 768px) {
    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }
}
/* EVENTS */
.events h2 {
    margin-bottom: 30px;
}

.event-card {
    background: #f8f5ef;
    padding: 20px;
    border-radius: 6px;
    text-align: left;
}

.event-card h3 {
    margin-top: 0;
}

/* smaller hero */
.small-hero {
    padding: 60px 20px;
}


.featured-event img {
    max-width: 400px;
    width: 100%;
    height: auto;
    display: block;
    margin: auto;
    border-radius: 6px;
}


.video {
    padding: 60px 0;
    background: #f8f5ef;
    text-align: center;
}

.video-wrapper {
    max-width: 800px;
    margin: auto;
}
.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.gallery-grid img {
    width: calc(25% - 15px);
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .gallery-grid img {
        width: calc(50% - 10px);
    }
}

/* LIGHTBOX */
#lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
}

#lightbox img {
    max-width: 90%;
    max-height: 90%;
}