/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    background-color: #0a0a0a;
    background-image: url('../assets/background.png');
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Ensure content appears above textures */
nav, main, footer {
    position: relative;
    z-index: 2;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== NAVIGATION ===== */
.navbar {
    background-color: #000;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #333;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo img {
    height: 40px;
    width: auto;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #e0e0e0;
    margin: 3px 0;
    transition: 0.3s;
}

.nav-menu {
    display: none;
    list-style: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #000;
    flex-direction: column;
    padding: 20px;
}

.nav-menu.active {
    display: flex;
}

.nav-menu li {
    margin: 10px 0;
}

.nav-menu a {
    color: #e0e0e0;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px;
    display: block;
    transition: color 0.3s, font-weight 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #E8E8E8;
    font-weight: bold;
}

/* Desktop Navigation */
@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }

    .nav-menu {
        display: flex;
        position: static;
        flex-direction: row;
        width: auto;
        padding: 0;
        background: none;
    }

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

/* ===== HERO HEADER SECTION ===== */
.hero-header {
    padding: 10px 20px 10px;
    text-align: center;
    background-color: #000;
}

.hero-header .hero-title {
    font-size: 3rem;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.hero-header .hero-tagline {
    font-size: 1.3rem;
    color: #ccc;
    font-style: italic;
}

@media (min-width: 768px) {
    .hero-header .hero-title {
        font-size: 3rem;
    }
    
    .hero-header .hero-tagline {
        font-size: 1.5rem;
    }
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 10px;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 3px 3px 10px rgba(0,0,0,0.8);
    margin-bottom: 20px;
}

.hero-tagline {
    font-size: 1.2rem;
    color: #ccc;
    font-style: italic;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.8);
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-tagline {
        font-size: 1.5rem;
    }
}

/* ===== INTRO SECTION ===== */
.intro {
    padding: 10px 10px;
    text-align: center;
    background-color: #111;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== CTA BUTTON ===== */
.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: #E8E8E8;
    color: #000;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-button:hover {
    background-color: #FFFFFF;
    transform: scale(1.05);
}

/* ===== PAGE HEADER ===== */
.page-header {
    padding: 60px 20px 40px;
    text-align: center;
    border-bottom: 2px solid #333;
    position: relative;
}

.page-header h1 {
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 1.1rem;
    color: #aaa;
}

/* ===== ABOUT PAGE ===== */
.about-content {
    padding: 60px 20px;
    position: relative;
}

.band-intro {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 60px;
}

.band-photo {
    width: 100%;
    border: 3px solid #333;
}

.band-text {
    flex: 1;
}

.logo-inline {
    max-width: 300px;
    margin: 0 auto 20px;
}

@media (min-width: 768px) {
    .band-intro {
        flex-direction: row;
        align-items: center;
    }

    .band-photo {
        width: 50%;
    }
}

.influences-section,
.members-section,
.live-section {
    margin-bottom: 60px;
}

.influences-section h2,
.members-section h2,
.live-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.album-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 40px 0;
}

@media (min-width: 768px) {
    .album-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.album-grid img {
    width: 100%;
    border: 2px solid #333;
}

.member-bio {
    margin-bottom: 30px;
}

.member-bio h3 {
    font-size: 1.5rem;
    color: #E8E8E8;
    margin-bottom: 10px;
    font-weight: bold;
}

.map-image {
    max-width: 600px;
    margin: 40px auto;
}

.silhouette-image {
    max-width: 400px;
    margin: 40px auto;
    display: block;
}

.closing-statement {
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    margin-top: 40px;
}


.map-container {
    max-width: 800px;
    margin: 40px auto;
    border: 3px solid #333;
}

.map-container iframe {
    width: 100%;
    display: block;
}

@media (max-width: 600px) {
    .map-container iframe {
        height: 300px;
    }
}

/* ===== MUSIC PAGE ===== */
.music-content {
    padding: 60px 20px;
    position: relative;
}

.music-logo {
    max-width: 400px;
    margin: 0 auto 40px;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    margin-bottom: 40px;
    border: 3px solid #333;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.music-info {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.music-info h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

/* ===== NEWS PAGE ===== */
.news-content {
    padding: 60px 20px;
    position: relative;
}

.news-item {
    margin-bottom: 60px;
}

.news-item.featured {
    border: 3px solid #E8E8E8;
    padding: 20px;
    background-color: #111;
}

.news-image {
    width: 100%;
    margin-bottom: 20px;
    border: 2px solid #333;
}

.news-logo {
    max-width: 300px;
    margin: 0 auto 20px;
}

.news-details h2,
.news-details h3 {
    font-size: 1.8rem;
    margin-top: 24px;
    margin-bottom: 24px;
}

.news-date {
    color: #aaa;
    font-style: italic;
    margin-bottom: 15px;
}

.news-excerpt {
    margin-bottom: 20px;
    line-height: 2em;

}

p {
  margin-bottom: 1.2em; /* adds a space after each paragraph */
}

blockquote {
  margin: 1.2em 0; /* vertical spacing before and after quotes */
  padding-left: 2em; /* indentation for the quote */
  padding-right: 2em; /* indentation for the quote */
  font-style: italic; /* italicize the quote text */
}

.news-link {
    color: #E8E8E8;
    font-weight: bold;
    text-decoration: underline;
}

.news-link:hover {
    color: #FFFFFF;
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 768px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== GALLERY PAGES ===== */
.gallery-content {
    padding: 60px 20px;
    position: relative;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 600px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border: 2px solid #333;
    transition: transform 0.3s, border-color 0.3s;
}

.gallery-item img:hover {
    transform: scale(1.05);
    border-color: #E8E8E8;
}

/* ===== GIG GUIDE PAGE ===== */
.gig-content {
    padding: 60px 20px;
    position: relative;
}

.gig-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
    padding: 30px;
    background-color: #111;
    border: 2px solid #333;
}

@media (min-width: 768px) {
    .gig-item {
        flex-direction: row;
        align-items: center;
    }
}

.gig-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #E8E8E8;
    color: #000;
    padding: 20px;
    min-width: 120px;
    text-align: center;
    font-weight: bold;
}

.date-day {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1;
}

.date-month {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.date-year {
    font-size: 1rem;
    margin-top: 5px;
}

.gig-details {
    flex: 1;
}

.gig-venue {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #E8E8E8;
    font-weight: bold;
}

.gig-location {
    font-size: 1.2rem;
    color: #aaa;
    margin-bottom: 10px;
}

.gig-time {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 15px;
}

.gig-description {
    margin-bottom: 20px;
    line-height: 1.8;
}

.gig-ticket-link {
    display: inline-block;
    padding: 12px 30px;
    background-color: #E8E8E8;
    color: #000;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s;
}

.gig-ticket-link:hover {
    background-color: #FFFFFF;
}

.no-gigs-message {
    text-align: center;
    padding: 60px 20px;
}

.no-gigs-message p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* ===== CONTACT PAGE ===== */
.contact-content {
    padding: 60px 20px;
    position: relative;
}

.social-links {
    max-width: 800px;
    margin: 0 auto;
}

.social-item {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
    padding: 30px;
    background-color: #111;
    border: 2px solid #333;
    transition: border-color 0.3s;
}

.social-item:hover {
    border-color: #E8E8E8;
}

.social-icon {
    min-width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.social-icon.youtube {
    color: #E8E8E8;
}

.social-icon.facebook {
    color: #1877f2;
}

.social-icon.website {
    color: #666;
}

.social-icon.email {
    color: #ea4335;
}

.social-text {
    flex: 1;
}

.social-text h2 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.social-text p {
    color: #aaa;
    margin-bottom: 10px;
}

.social-link {
    color: #E8E8E8;
    font-weight: bold;
    text-decoration: underline;
}

.social-link:hover {
    color: #FFFFFF;
}

.follow-section {
    text-align: center;
    margin-top: 80px;
    padding: 40px 20px;
    background-color: #111;
}

.follow-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.follow-icons {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.follow-hearts,
.follow-likes {
    display: flex;
    gap: 15px;
    font-size: 2rem;
}

.follow-text {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== FOOTER ===== */
footer {
    background-color: #000;
    padding: 30px 20px;
    text-align: center;
    border-top: 2px solid #333;
}

footer p {
    color: #666;
    font-size: 0.9rem;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 600px) {
    .social-item {
        flex-direction: column;
        text-align: center;
    }
    
    .social-icon {
        margin: 0 auto 20px;
    }
}