* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --accent-red: rgb(179, 165, 133);
    --accent-gold: rgb(179, 165, 133);
    --text-light: #f5f5f5;
    --text-muted: #888;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    min-height: 100vh;
}

.navbar {
    background: linear-gradient(180deg, #000 0%, var(--bg-secondary) 100%);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px solid var(--accent-red);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--accent-red);
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 0 0 10px rgba(179, 165, 133, 0.5);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    transition: color 0.3s, text-shadow 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-red);
    text-shadow: 0 0 10px rgba(179, 165, 133, 0.8);
}

.lang-switch {
    display: flex;
    gap: 0.5rem;
}

.lang-btn {
    background: transparent;
    border: 2px solid var(--accent-red);
    color: var(--text-light);
    padding: 0.4rem 0.8rem;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    font-weight: bold;
    transition: all 0.3s;
}

.lang-btn:hover,
.lang-btn.active {
    background: var(--accent-red);
    color: var(--text-light);
    box-shadow: 0 0 15px rgba(179, 165, 133, 0.6);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.hero {
    text-align: center;
    padding: 4rem 2rem;
    /* Background: show image from 50% to 80% (custom vertical band) */
    background: linear-gradient(rgba(10, 10, 10, 0.75), rgba(10, 10, 10, 0.85)),
                url('assets/gallery/band_photoshoot1.jpg') center 20.43% / auto 333.33% no-repeat;
    border-bottom: 1px solid #333;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero h1 {
    font-size: 3.5rem;
    text-transform: uppercase;
    letter-spacing: 8px;
    margin-bottom: 1rem;
    color: var(--accent-red);
    text-shadow: 0 0 20px rgba(179, 165, 133, 0.4);
}

.hero .tagline {
    font-size: 1.2rem;
    color: var(--accent-gold);
    letter-spacing: 4px;
    text-transform: uppercase;
}

h2 {
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 2rem;
    color: var(--accent-red);
    border-left: 4px solid var(--accent-red);
    padding-left: 1rem;
}

.bio-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.bio-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #ccc;
}

.bio-stats {
    background: var(--bg-secondary);
    padding: 2rem;
    border: 1px solid #333;
    border-top: 3px solid var(--accent-red);
}

.bio-stats h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #333;
}

.stat-item span:first-child {
    color: var(--text-muted);
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.gallery-item {
    position: relative;
    height: 280px;
    background: linear-gradient(135deg, #222 0%, #1a1a1a 100%);
    border: 1px solid #333;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(179, 165, 133, 0.3);
    border-color: var(--accent-red);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #444;
    font-size: 2rem;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay p {
    color: var(--text-light);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.member-card {
    position: relative;
    aspect-ratio: 3 / 4;
    background: var(--bg-secondary);
    border: 1px solid #333;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.member-card:hover,
.member-card.expanded {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(179, 165, 133, 0.3);
}

.member-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #333 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-size: 3rem;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Aleksa card: slow crossfade slideshow (2 or 3 images) */
.member-photo-slideshow {
    position: relative;
}

.member-photo-slideshow img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: member-slideshow 12s ease-in-out infinite;
}

.member-photo-slideshow img:nth-child(1) { animation-delay: 0s; }
.member-photo-slideshow img:nth-child(2) { animation-delay: 4s; }
.member-photo-slideshow img:nth-child(3) { animation-delay: 8s; }

@keyframes member-slideshow {
    0% { opacity: 0; }
    6% { opacity: 1; }
    27% { opacity: 1; }
    33% { opacity: 0; }
    100% { opacity: 0; }
}

.member-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 1.25rem 1.25rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
    transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease, top 0.35s ease;
}

.member-card:hover .member-info,
.member-card.expanded .member-info {
    top: 25%;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.97) 0%, rgba(0, 0, 0, 0.85) 30%, rgba(0, 0, 0, 0.4) 100%);
    padding: 1.75rem 1.25rem 1.5rem;
    box-shadow: 0 -4px 20px rgba(179, 165, 133, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.member-info h3 {
    color: var(--accent-red);
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.3rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    transition: text-shadow 0.35s ease, color 0.35s ease;
}

.member-card:hover .member-info h3,
.member-card.expanded .member-info h3 {
    text-shadow: 0 0 12px rgba(179, 165, 133, 0.5);
    color: rgb(199, 185, 153);
}

.member-role {
    color: var(--accent-gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.6rem;
    transition: color 0.35s ease, text-shadow 0.35s ease;
}

.member-card:hover .member-role,
.member-card.expanded .member-role {
    color: rgb(199, 185, 153);
    text-shadow: 0 0 8px rgba(179, 165, 133, 0.4);
}

.member-info p {
    color: rgba(245, 245, 245, 0.9);
    font-size: 0.9rem;
    line-height: 1.5;
    max-height: 3.6em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    transition: color 0.35s ease, max-height 0.4s ease, -webkit-line-clamp 0.4s ease;
}

.member-card:hover .member-info p,
.member-card.expanded .member-info p {
    color: var(--text-light);
    max-height: 20em;
    -webkit-line-clamp: unset;
    overflow: auto;
    display: block;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.member-card:hover .member-info p::-webkit-scrollbar,
.member-card.expanded .member-info p::-webkit-scrollbar {
    display: none;
}

.concerts-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.concert-item {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    align-items: center;
    background: var(--bg-secondary);
    padding: 1.5rem;
    border: 1px solid #333;
    border-left: 4px solid var(--accent-red);
    transition: background 0.3s;
}

.concert-item:hover {
    background: #222;
}

.concert-date {
    text-align: center;
    padding-right: 1.5rem;
    border-right: 1px solid #333;
}

.concert-date .month {
    display: block;
    color: var(--accent-red);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.concert-date .day {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-light);
}

.concert-date .year {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.concert-details h3 {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.3rem;
}

.concert-details p {
    color: var(--text-muted);
}

.concert-venue {
    color: var(--accent-gold) !important;
}

.ticket-btn {
    background: var(--accent-red);
    color: var(--text-light);
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    transition: background 0.3s, box-shadow 0.3s;
}

.ticket-btn:hover {
    background: rgb(199, 185, 153);
    box-shadow: 0 0 20px rgba(179, 165, 133, 0.5);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    background: var(--bg-secondary);
    padding: 2rem;
    border: 1px solid #333;
    border-top: 3px solid var(--accent-red);
}

.contact-info h3 {
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item span {
    color: var(--accent-red);
    font-size: 1.2rem;
}

.contact-form {
    background: var(--bg-secondary);
    padding: 2rem;
    border: 1px solid #333;
    border-top: 3px solid var(--accent-gold);
}

.contact-form h3 {
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background: var(--bg-dark);
    border: 1px solid #333;
    color: var(--text-light);
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-red);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    background: var(--accent-red);
    color: var(--text-light);
    padding: 1rem 2rem;
    border: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: background 0.3s, box-shadow 0.3s;
}

.submit-btn:hover {
    background: rgb(199, 185, 153);
    box-shadow: 0 0 20px rgba(179, 165, 133, 0.5);
}

footer {
    background: #000;
    padding: 2rem;
    text-align: center;
    border-top: 1px solid #333;
    margin-top: 3rem;
}

footer p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.social-links a {
    color: var(--text-muted);
    font-size: 1.2rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--accent-red);
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .bio-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .concert-item {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }

    .concert-date {
        border-right: none;
        border-bottom: 1px solid #333;
        padding-right: 0;
        padding-bottom: 1rem;
    }
}
