* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0b1a 50%, #0f0f0f 100%);
    background-attachment: fixed;
    color: #e0e0e0;
    overflow-x: hidden;
}

/* Add atmospheric background overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(139, 69, 139, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(75, 0, 130, 0.1) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="0.5" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    pointer-events: none;
    z-index: -1;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.5);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.nav-logo {
    font-family: 'Cinzel', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.8rem;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(139, 69, 139, 0.5);
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #c0c0c0;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.9rem 1.5rem;
    border-radius: 4px;
    font-size: 1.3rem;  
}

.nav-link:hover {
    color: #ffffff;
    background: rgba(139, 69, 139, 0.2);
    text-shadow: 0 0 5px rgba(139, 69, 139, 0.7);
}



@media (max-width: 700px) {
  .navbar {
    padding: 0.5rem 0;
    min-height: 48px;
  }
  .nav-logo {
    font-size: 1.1rem;
    max-width: 120px;
    height: auto;
  }
  .nav-menu {
    flex-direction: column;
    gap: 0.5rem;
  }
  .nav-link {
    font-size: 1rem;
    padding: 0.7rem 1rem;
  }
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: url('imgs/back_70.jpg') center 0 / cover no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.0);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;       /* Remove padding so logo can fill space */
}


.hero-logo {
  width: 90vw;           /* 80% of viewport width */
  max-width: 1000px;      /* Increase max size for large screens */
  min-width: 180px;      /* Minimum size for small screens */
  height: auto;
  margin-bottom: 2rem;
  filter: drop-shadow(0 0 40px #000a);
  transition: transform 0.3s;
  display: block;
  margin-left: -5%; /* Adjust the value as needed */
}

.hero-logo:hover {
  transform: scale(1.04);
}

.hero-official {
  font-family: 'Cinzel', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 2rem;
  color: #fff;
  letter-spacing: 0.15em;
  text-shadow: 0 2px 16px #000, 0 0 8px #a58fff;
  font-weight: 600;
  background: rgba(0,0,0,0.3);
  display: inline-block;
  padding: 0.4em 1.2em;
  border-radius: 8px;
  margin-top: 0.5em;
}

@media (max-width: 600px) {
  .hero-logo {
    width: 90vw;
    max-width: 90vw;
    min-width: 120px;
    margin-bottom: 1.2rem;
  }
  .hero-official {
    font-size: 1.1rem;
    padding: 0.25em 0.6em;
  }
}


.album-info {
    background: rgba(0, 0, 0, 0.4);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(139, 69, 139, 0.3);
}

.album-info h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 5px rgba(139, 69, 139, 0.5);
}

.album-info p {
    color: #a0a0a0;
    font-size: 1rem;
}

/* Sections */
/* .section {
    padding: 5rem 0;
    min-height: 50vh;
}*/

.section {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

/* Or target specific sections */
.hero, .news-section, .band-bio, .live-photos-section, .social-links, .contact-section {
  margin-bottom: 1.5rem; /* or less */
  padding-bottom: 1rem;   /* or less */
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-family: 'Cinzel', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(139, 69, 139, 0.5);
    letter-spacing: 1px;
}

/* Transparent boxes for content */
.transparent-box {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 69, 139, 0.2);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.transparent-box:hover {
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(139, 69, 139, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.news-card {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 69, 139, 0.2);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.news-card:hover {
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(139, 69, 139, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.news-date {
    color: #8b458b;
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-card h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    text-shadow: 0 0 5px rgba(139, 69, 139, 0.3);
}

.news-card p {
    color: #c0c0c0;
    line-height: 1.6;
}

.news-link {
  color: #c9a96e; /* gold accent */
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.news-link:hover,
.news-link:focus {
  color: #a58fff; /* purple accent on hover */
  text-decoration: none;
}

/* Bio Section */
/* Bio Section Background and Overlay */
#bio {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;  
  background-image: url('imgs/back2_70.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
  padding: 0;
}

.bio-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.0); /* Adjust for more/less darkness */
  z-index: 1;
  pointer-events: none;
}

/* Container sits above overlay */
#bio .container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem 2rem;
}

/* Content box with transparency and blur */
.bio-content {
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(6px);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    color: #fff;
    box-shadow: 0 0 24px rgba(0,0,0,0.7);
    border: 1px solid rgba(139, 69, 139, 0.18);
    max-width: 700px;
    width: 100%;
    margin-top: 1.5rem;
}



.parallax-band {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('imgs/band.jpg'); /* Replace with your band section background */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed; /* Enables parallax effect */
  overflow: hidden;
  padding: 0;
}

.band-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3); /* Adjust for darkness */
  z-index: 1;
  pointer-events: none;
}

.video-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 2rem;
}

.video-content {
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(6px);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  color: #fff;
  box-shadow: 0 0 24px rgba(0,0,0,0.7);
  border: 1px solid rgba(139, 69, 139, 0.18);
  max-width: 1200px;
  width: 100%;
  margin-top: 1.5rem;
}

.video-container-side {
  display: flex;
  gap: 2rem; /* Space between videos */
  justify-content: center;
  flex-wrap: wrap;
}

.responsive-video {
  flex: 1 1 0;
  min-width: 320px;
  max-width: 48%;
  aspect-ratio: 16 / 9;
  position: relative;
  display: flex;
}

.responsive-video iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px; /* Optional: rounded corners */
  box-shadow: 0 4px 24px rgba(0,0,0,0.4); /* Optional: shadow */
}



/* Section title styling */
.section-title {
    color: #fff;
    font-size: 2.2rem;
    letter-spacing: 2px;
    margin-bottom: 1.2rem;
    text-shadow: 0 2px 12px #000;
    background: linear-gradient(135deg, #c9a96e 0%, #6b3aa0 100%);
    -webkit-background-clip: text;
    /* -webkit-text-fill-color: transparent; */
    background-clip: text;
}

/* Responsive adjustments */
@media (max-width: 700px) {
    #bio .container {
        padding: 1.2rem 0.3rem;
    }
    .bio-content {
        padding: 1rem 0.5rem;
        max-width: 98vw;
    }
}

/*
.bio-content {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 69, 139, 0.2);
    border-radius: 10px;
    padding: 3rem;
    text-align: center;
}

.bio-content h3 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 5px rgba(139, 69, 139, 0.5);
}

.bio-content p {
    color: #c0c0c0;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.lineup {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.member {
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: 6px;
    border: 1px solid rgba(139, 69, 139, 0.2);
    text-align: center;
}

.member-name {
    color: #ffffff;
    font-weight: bold;
    margin-bottom: 0.3rem;
}

.member-role {
    color: #8b458b;
    font-size: 0.9rem;
}*/

/* Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 69, 139, 0.2);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 1;
}

.gallery-item:hover::before {
    background: rgba(139, 69, 139, 0.2);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-image {
    max-width: 100%;
    max-height: 100%;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(139, 69, 139, 0.3);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #ffffff;
    font-size: 2rem;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(139, 69, 139, 0.5);
    transform: scale(1.1);
}



/* Contact stuff */
.connect-columns {
    display: flex;
    gap: 3rem;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.contact-info {
    flex: 1 1 250px;
    color: #fff;
    font-size: 1.1rem;
    max-width: 350px;
}

.contact-info h3 {
    margin: 1.2rem 0 0.3rem 0;
    font-size: 1.15em;
    color: #c9a96e;
}

.contact-email {
    display: block;
    color: #a58fff;
    text-decoration: underline;
    margin-bottom: 0.6rem;
    word-break: break-all;
}

.contact-note {
    margin-top: 1.2rem;
    font-size: 0.98em;
    color: #b0b0b0;
}
/*
.social-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 60px);
    grid-template-rows: repeat(2, 60px);
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex: 1 1 250px;
    max-width: 220px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(139, 69, 139, 0.3);
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(139, 69, 139, 0.3);
    border-color: rgba(139, 69, 139, 0.5);
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 5px 15px rgba(139, 69, 139, 0.2);
}

*/

.social-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 60px);
  grid-template-rows: repeat(2, 60px);
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}

.social-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  
  background: rgba(0,0,0,0.3);

  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.social-icon:hover {
  transform: scale(1.08);
  box-shadow: 0 5px 15px rgba(139, 69, 139, 0.2);  
}

/* Responsive: stack columns on mobile */
@media (max-width: 700px) {
    .connect-columns {
        flex-direction: column;
        align-items: stretch;
        gap: 2rem;
    }
    .social-links-grid {
        margin: 0 auto;
        grid-template-columns: repeat(3, 50px);
        grid-template-rows: repeat(2, 50px);
        max-width: 160px;
    }
    .social-link {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}


/* Footer */

.site-footer {
    background: rgba(10, 10, 10, 0.93);
    color: #b0b0b0;
    padding: 1.5rem 0 1.5rem 0;
    margin-top: 4rem;
    text-align: center;
    font-size: 1.05rem;
    letter-spacing: 1px;
    box-shadow: 0 -2px 16px rgba(139, 69, 139, 0.08);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.7rem;
}

.footer-separator {
    color: #6b3aa0;
    font-weight: bold;
    font-size: 1.2rem;
}

.site-footer a {
    color: #c9a96e;
    text-decoration: underline;
    transition: color 0.2s;
}

.site-footer a:hover {
    color: #fff;
}

/* Responsive: stack on small screens */
@media (max-width: 600px) {
    .footer-content {
        flex-direction: column;
        gap: 0.2rem;
    }
    .footer-separator {
        display: none;
    }
}



/* Social Links */
/* .social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(139, 69, 139, 0.3);
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(139, 69, 139, 0.3);
    border-color: rgba(139, 69, 139, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(139, 69, 139, 0.2);
}*/

/* Contact Form */
.contact-form {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 69, 139, 0.2);
    border-radius: 10px;
    padding: 3rem;
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid rgba(139, 69, 139, 0.3);
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.3);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(139, 69, 139, 0.6);
    box-shadow: 0 0 10px rgba(139, 69, 139, 0.2);
    background: rgba(0, 0, 0, 0.4);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888;
}

.btn-submit {
    background: linear-gradient(45deg, #8b458b, #4b0082);
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-submit:hover {
    background: linear-gradient(45deg, #9955aa, #5511aa);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 69, 139, 0.3);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-content {
        padding: 2rem;
        margin: 1rem;
    }

    .nav-menu {
        gap: 1rem;
    }

    .nav-link {
        padding: 0.3rem 0.8rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .gallery {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }

    .social-links {
        gap: 1rem;
    }

    .contact-form {
        margin: 0 1rem;
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .container {
        padding: 0 1rem;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .nav-logo {
        font-size: 1.4rem;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
    }
}
