:root {
    --nc-blue: #0B1CA2;
    --nc-orange: #FA820B;
    --dark-bg: #000000;
    --light-text: #F5F5F5;
}
	
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
	


body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #f4f4f4;
    background: #111;
}

header {
    background:
        linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0)),
        url('band-hero.jpg') center/cover;
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}




.hero {
    min-height: 20vh;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
    
	
	background-image: url("images/narrow_crossing_logo 2.svg");
	

    background-size: contain;
	background-repeat: no-repeat;
	
  
}
h1,h2 {
    color: var(--nc-blue);
    font-size: 4rem;
    text-transform: uppercase;
    letter-spacing: 8px;
	text-align: center;
}

.logo {
    max-width: 700px;
    width: 90%;
    margin-bottom: 2rem;
}
.tagline {
    color: var(--nc-orange);
    font-size: 1.4rem;
    margin-top: 1rem;
}


.btn {
    background: var(--nc-orange);
    color: white;
    padding: 14px 28px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: .3s;
}

.btn:hover {
    background: var(--nc-blue);
}
.centre-image {
  display: block;
  margin-left: auto;
  margin-right: auto;
  
  
	
}

section {
    padding: 70px 10%;
}

.section-title {
    color: var(--nc-blue);
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.section-title::after {
    content: "";
    display: block;
    width: 120px;
    height: 4px;
    background: var(--nc-orange);
    margin: 10px auto;
}
.about {
    text-align: center;
    max-width: 900px;
    margin: auto;
}

.members {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

.member-card {
    background: #1c1c1c;
    padding: 25px;
    border-radius: 8px;
    width: 280px;
    text-align: center;
}

.member-card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}

.member-card h3 {
    color: var(--nc-orange);
}

.shows table {
    width: 100%;
    border-collapse: collapse;
}

.shows th,
.shows td {
    padding: 15px;
    border-bottom: 1px solid #333;
    text-align: left;
}

.shows th {
    color: var(--nc-orange);
}

.media-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.media-box {
    background: #1c1c1c;
    padding: 20px;
    border-radius: 8px;
    width: 450px;
    text-align: center;
}

.contact {
    text-align: center;
}

footer {
    background: #000;
    text-align: center;
    padding: 20px;
    color: #888;
}

.social-links a {
    color: #d4af37;
    text-decoration: none;
    margin: 0 10px;
}
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .members {
        flex-direction: column;
        align-items: center;
    }

    .media-box {
        width: 100%;
    }
}
