/* Base Styles & Reset */

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}
 
html {

    /* This creates the smooth scroll effect when clicking nav links */

    scroll-behavior: smooth;

}
 
body {

    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

    background-color:rgba(11, 8, 1, 0.9);

    color: #EFDFC8;

    line-height: 1.6;

}
 
.container {

    max-width: 1100px;

    margin: 0 auto;

    padding: 0 20px;

}
 
/* Navigation */

#navbar {

    display: flex;

    justify-content: space-between;

    align-items: center;

    background: rgba(37, 15, 7, 0.9);

    padding: 1rem 2rem;

    position: fixed;

    top: 0;

    width: 100%;

    z-index: 1000;

}
 
.nav-links {

    list-style: none;

    display: flex;

}
 
.nav-links li {

    margin-left: 20px;

}
 
.nav-links a {

    color: #fff;

    text-decoration: none;

    font-weight: bold;

    transition: color 0.3s;

}
 
.nav-links a:hover {

    color: #e57709; /* Band accent color (red) */

}
 
/* Hero Section */

.hero {

    height: 100vh;

    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('Tall Dan Title image.jpg') center/cover;

    display: flex;

    justify-content: center;

    align-items: center;

    text-align: center;

}
 
.hero h2 {

    font-size: 4rem;

    margin-bottom: 10px;

}
 
.btn {

    display: inline-block;

    padding: 10px 20px;

    background: #C68B39;

    color: #fff;

    text-decoration: none;

    border: none;

    border-radius: 5px;

    font-size: 1.1rem;

    cursor: pointer;

    margin-top: 20px;

    transition: background 0.3s;

}
 
.btn:hover {

    background: #C68B39;

}
 
/* Sections General */

.section {

    padding: 100px 20px 60px; /* Top padding clears the fixed navbar */

    text-align: center;

}
 
.bg-dark {
 background-color:rgba(11, 8, 1, 0.9);

}
 
.section h2 {

    font-size: 2.5rem;

    margin-bottom: 40px;

    color: #e57709;

}
 
/* Gallery Grid */

.gallery-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

    gap: 15px;

}
 
.img-placeholder {

    background: #333;

    height: 250px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #777;

    border-radius: 5px;

}
 .gallery-grid img {
    width: 100%;

    object-fit: cover; /* This crops the image to fill the space perfectly */
    border-radius: 5px;
    display: block;
}

/* Music & Media */

.music-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

 
.discography, .media-links {

    width: 100%;

}
 .discography h3 {
    margin-bottom: 20px;
    border-bottom: 2px solid #C68B39;
    display: inline-block;
}
.discography ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    padding: 0;
}
 
.discography li {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.2s ease;
}
.discography li:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}
 
.embed-placeholder {
    flex: 1;
    min-width: 320px; /* Ensures they stay readable on small screens */
}
.embed-wrapper {
    display: flex;
    gap: 20px;
    flex-wrap: wrap; /* Stacks on mobile */
}
 
/* Contact Form */

.contact-content {
    max-width: 600px;
    margin: 0 auto;
    background: #222;
    padding: 40px;
    border-radius: 10px;
    border: 1px solid #333;
}
.contact-content p {
    margin-bottom: 25px;
    font-size: 1.2rem;
}
.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    font-size: 1.1rem;
    text-decoration: none;
}
.contact-btn i {
    font-size: 1.3rem;
}


 
/* Footer */

footer {

    background: #000;

    text-align: center;

    padding: 30px 20px;

}
 
.social-links {

    margin-bottom: 20px;

}
 
.social-links a {

    color: #fff;

    font-size: 1.5rem;

    margin: 0 10px;

    transition: color 0.3s;

}
 
.social-links a:hover {

    color: #e57709;

}
 
/* Mobile Responsiveness */

@media (max-width: 768px) {

    .nav-links {

        display: none; /* In a full build, you'd add a hamburger menu here */

    }

    .hero h2 {

        font-size: 2.5rem;

    }

}
.event-list {
    max-width: 800px;
    margin: 0 auto;
}

.event-item {
    display: flex;
    align-items: center;
    background: #222;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    border-left: 5px solid #C68B39;
}
.event-date {
    text-align: center;
    min-width: 80px;
    margin-right: 30px;
}

.event-date .day {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1;
}

.event-date .month {
    font-size: 0.9rem;
    color: #C68B39;
}

.event-details {
    flex: 2;
    text-align: left;
}

.event-details h3 {
    margin: 0;
    font-size: 1.4rem;
}

.event-details p {
    margin: 0;
    color: #777;
}


@media (max-width: 600px) {
    .event-item {
        flex-direction: column;
        text-align: center;
    }
    .event-details {
        text-align: center;
        margin: 15px 0;
    }
}