/* =========================
   Global / Base Styles
   ========================= */
html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background: #0a0a0a;
    color: #fff;
    font-family: 'Poppins', Arial, sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: url('/assets/img/wsbackground.png') no-repeat center center / cover;
    filter: blur(5px) brightness(0.5);
    z-index: 1;
}

body > * {
    position: relative;
    z-index: 1;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

hr {
    border: none;
    border-top: 3px solid #e25555;
    margin: 8px 0;
    border-radius: 50px;
}

/* =========================
   Container
   ========================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding-left: 24px;
    padding-right: 24px;
    box-sizing: border-box;
}

/* =========================
   Header & Navigation
   ========================= */
header {
    width: 100%;
    position: relative;
    z-index: 20;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 0 0 0;
}

.header-container .logo img {
    height: auto;
    width: 100px;
    display: block;
}

nav {
    display: flex;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    color: #ccc;
    text-decoration: none;
    font-weight: 600;
    border-bottom: solid 2px transparent;
    letter-spacing: 1px;
    font-size: 1.05rem;
    transition: all 0.2s;
}

.nav-links li a:hover {
    color: #fff;
    border-bottom: solid 2px #e25555;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    margin: 0 auto;
    margin-top: 12px;
    font-size: 2rem;
    color: #fff;
    transition: color 0.2s;
}

.hamburger:active,
.hamburger:focus {
    color: #e25555;
}

.hamburger i {
    pointer-events: none;
    transition: color 0.2s;
}

/* Mobile Navigation */
.mobile-nav-accordion {
    display: none;
    text-align: center;
    width: 100%;
    background: #222;
    box-shadow: 0 2px 12px rgba(0,0,0,0.4);
    border-radius: 0 0 12px 12px;
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 99;
}

.nav-links-mobile {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.nav-links-mobile li {
    border-bottom: 1px solid #333;
}

.nav-links-mobile li:last-child {
    border-bottom: none;
}

.nav-links-mobile li a {
    display: block;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 1.1rem;
    padding: 18px 24px;
    transition: background 0.2s, color 0.2s;
}

.nav-links-mobile li a:hover {
    background: #111;
    color: #e25555;
}

/* =========================
   Main Content
   ========================= */
main {
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-container {
    width: 100%;
    padding-top: 64px;
    padding-bottom: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-top: 40px;
    margin-bottom: 32px;
    text-align: center;
}

h2 {
    font-size: 1,75rem
    margin: 5px 0;
}

h3 {
    font-size: 1.35rem;
    margin-bottom: 5px;
}

.textarea {
    padding: 0 40px 20px ;
    display: flex;
    flex-direction: column;
    background-color: rgba(50, 50, 50, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.link {
    color: #e25555;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.link:hover {
    color: #ff7171;
}

/* =========================
   Footer
   ========================= */
footer {
    color: #fff;
    width: 100%;
    z-index: 10;
    font-size: 1rem;
}

.footer-container {
    width: 100%;
    padding: 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    padding: 12px 0 0 0;
    width: 100%;
}

.footer-section {
    text-align: center;
    flex: 1;
}

.footer-section h2 {
    font-size: 2rem;
    margin-bottom: 4px;
    letter-spacing: 5px;
}

.footer-section a {
    display: block;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 1.1rem;
    padding: 8px 0;
    transition: color 0.2s;
    margin: -10px 0;
}

.footer-section a:hover {
    color: #e25555;
}

.footer-logo-row {
    display: block;
    text-align: center;
}

.footer-logo-img {
    height: 140px !important;
    max-width: 100%;
    width: auto;
    margin: 0 auto;
    display: block;
    object-fit: contain;
}

.footer-logo-text {
    font-size: 1.7rem;
    letter-spacing: 2px;
    font-weight: 400;
    margin-top: 8px;
}

.copyright {
    margin-top: 12px;
    text-align: center;
    padding: 6px 0 12px 0;
    font-size: 0.9rem;
}

.copyright a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: color 0.2s;
}

.copyright a:hover {
    color: #e25555;
}

/* =========================
   Slider
   ========================= */
.band-slider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 100%;
    background-color: rgba(50, 50, 50, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.slider-images {
    position: relative;
    width: 100%;
    height: 600px;
    max-width: 1200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    max-width: 1200px;
    object-fit: cover;
    border-radius: 18px 18px 0 0;
    background: #181818;
    opacity: 0;
    filter: blur(12px);
    transition: opacity 0.6s cubic-bezier(.4,0,.2,1), filter 0.6s cubic-bezier(.4,0,.2,1);
    z-index: 1;
}

.slider-caption {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 1.2rem;
    text-align: center;
    z-index: 3;
}

.slider-img.active {
    opacity: 1;
    filter: blur(0);
    z-index: 2;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    width: 100%;
    margin: 18px;
}

.slider-btn {
    background: #fff;
    border: none;
    color: #e25555;
    font-size: 2rem;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
}

.slider-btn:hover {
    background: #e25555;
    color: #fff;
}

.slider-btn:active {
    background: #fff;
    color: #e25555;
}

.slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin: 18px 0 24px 0;
}

.slider-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #333;
    border: 2px solid #e25555;
    cursor: pointer;
    transition: background 0.2s, border 0.2s;
}

.slider-dot.active {
    background: #e25555;
    border: 2px solid #fff;
}

/* =========================
   Band Members
   ========================= */
.band-members {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 32px 0 24px 0;
}

.band-member-card {
    position: relative;
    width: 250px;
    height: 450px;
    border-radius: 18px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 4px 24px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin-bottom: 18px;
}

.band-member-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.band-member-info {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 20%;
    min-height: 200px;
    background: linear-gradient(to top, #e25555 0%, rgba(226,85,85,0.0) 80%);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 12px 16px 8px 16px;
    box-sizing: border-box;
}

.band-member-name {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.band-member-role {
    color: #fff;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

/* =========================
   Responsive Styles
   ========================= */
@media (max-width: 1200px) {
    .container { max-width: 100vw; padding-left: 12px; padding-right: 12px; }
    .header-container { flex-direction: column; align-items: center; padding: 18px 0 0 0; }
    .logo { margin-bottom: 0; width: 100%; display: flex; justify-content: center; }
    nav { width: 100%; justify-content: center; flex-direction: column; align-items: center; }
    .nav-links { display: none !important; }
    .hamburger { display: flex; margin-bottom: 0; }
    .mobile-nav-accordion { display: none; }
    .mobile-nav-accordion.active { display: block; }
    .main-container { padding-top: 70px; padding-bottom: 18px; }
    .footer-content { flex-direction: column; align-items: center; gap: 2px; padding: 6px 0 0 0; }
    .footer-section { min-width: 60px; font-size: 0.95rem; }
    .footer-section h2 { font-size: 1.2rem; margin-bottom: 2px; letter-spacing: 2px; }
    .footer-section hr { margin-bottom: 12px; }
    .footer-logo-row { gap: 0; }
    .footer-logo-img { display: none !important; }
    .footer-logo-text { font-size: 1rem; margin-top: 4px; }
    .copyright { font-size: 0.85rem; padding: 4px 0 8px 0; }
    .mbj { font-size: 0.95rem; padding: 8px 0; }
    .band-slider { max-width: 100vw; }
    .slider-images { max-width: 100vw; height: 350px; }
    .slider-img { height: 350px; max-width: 100vw; }
    .slider-controls { gap: 12px; margin-top: 10px; }
    .band-member-card { width: 150px; height: 260px; }
    .band-member-info { min-height: 150px; padding: 6px 8px 4px 8px; }
    .band-member-name { font-size: 1rem; }
    .band-member-role { font-size: 0.85rem; margin-bottom: 8px; }
    .footer-section.social-links-row { justify-content: center; gap: 14px; margin-top: 8px; }
    .footer-section.social a { font-size: 1rem; padding: 6px 0; }
}
