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

:root {
    --primary-color: #e74c3c;
    --secondary-color: #2c3e50;
    --accent-color: #f39c12;
    --text-light: #ecf0f1;
    --text-dark: #2c3e50;
    --bg-dark: #1a1a1a;
    --bg-light: #f8f9fa;
}

body {
    font-family: 'Roboto Slab', serif;
    line-height: 1.7;
    color: var(--text-dark);
    overflow-x: hidden;
    font-weight: 400;
}

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

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

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

.logo {
    height: 60px;
    width: auto;
}

.nav-text {
    display: none;
}

.nav-title {
    font-family: 'Monoton', cursive;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-light);
    letter-spacing: 3px;
    margin: 0;
    line-height: 1.2;
}

.nav-subtitle {
    font-size: 0.75rem;
    color: var(--text-light);
    margin: 0;
    font-style: italic;
    opacity: 0.9;
}

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

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

.nav-links a:hover {
    color: var(--primary-color);
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    margin: 5px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('images/main_image.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.4), rgba(44, 62, 80, 0.5));
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--text-light);
    animation: fadeInUp 1s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    padding-bottom: 4rem;
}

.hero-box {
    display: flex;
    align-items: center;
    gap: 3rem;
    background: rgba(0, 0, 0, 0.4);
    padding: 3rem 4rem;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    margin-bottom: 2rem;
}

.hero-logo {
    height: 180px;
    width: 180px;
    object-fit: cover;
    border-radius: 50%;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.5));
}

.hero-text {
    text-align: left;
}

.hero-title {
    /* Band name font - Monoton (neon jukebox style) */
    font-family: 'Monoton', cursive;
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 8px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 0;
    font-weight: 300;
    font-style: italic;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(231, 76, 60, 0.4);
}

.cta-button:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(231, 76, 60, 0.6);
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--bg-light);
}

.section-title {
    /* Same font as band name (hero-title) */
    font-family: 'Monoton', cursive;
    font-weight: 400;
    word-spacing: 10px;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--secondary-color);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--primary-color);
}

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

.about-image {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

/* Video Section */
.video-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.video-section .section-title {
    color: var(--text-light);
}

.video-wrapper {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.video-player {
    width: 100%;
    display: block;
}

/* Repertoire Section */
.repertoire {
    padding: 100px 0;
    background: var(--bg-dark);
}

.repertoire .section-title {
    color: var(--text-light);
}

.repertoire-list {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 3rem;
}

.repertoire-list li {
    font-size: 1.15rem;
    padding: 0.8rem 1.2rem;
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.repertoire-list li i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* Members Section */
.members {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.member-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.member-avatar {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--primary-color);
}

.member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.member-bio {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--secondary-color);
    text-align: center;
}

.contact .section-title {
    color: var(--text-light);
}

.contact-text {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.contact-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.contact-button:hover {
    background: #c0392b;
    transform: scale(1.05);
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.contact-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.contact-link i {
    font-size: 24px;
}

/* Brand color styling */
.contact-button-phone i {
    margin-right: 0.5rem;
}

.contact-email {
    background: linear-gradient(135deg, #EA4335, #D33426);
    border-color: #EA4335;
}

.contact-email:hover {
    background: linear-gradient(135deg, #D33426, #C5221F);
    box-shadow: 0 5px 20px rgba(234, 67, 53, 0.4);
}

.contact-facebook {
    background: linear-gradient(135deg, #1877F2, #0D65D9);
    border-color: #1877F2;
}

.contact-facebook:hover {
    background: linear-gradient(135deg, #0D65D9, #0A58CA);
    box-shadow: 0 5px 20px rgba(24, 119, 242, 0.5);
}

.contact-instagram {
    background: linear-gradient(135deg, #E4405F, #C13584, #833AB4);
    border-color: #E4405F;
}

.contact-instagram:hover {
    background: linear-gradient(135deg, #C13584, #833AB4, #5851DB);
    box-shadow: 0 5px 20px rgba(228, 64, 95, 0.5);
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--text-light);
    text-align: center;
    padding: 2rem 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .nav-text {
        display: block;
    }
    
    .hero-box {
        display: none;
    }
    
    .hero-content {
        justify-content: flex-end;
        padding-bottom: 9rem;
    }
    
    .nav-links {
        position: fixed;
        right: 0;
        height: 100vh;
        top: 0;
        background: var(--bg-dark);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 50%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .burger {
        display: block;
        z-index: 2000;
    }

    .hero-box {
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
    }

    .hero-logo {
        height: 120px;
        width: 120px;
    }

    .hero-text {
        text-align: center;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .members-grid {
        grid-template-columns: 1fr;
    }

    .repertoire-list {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }
    
    .about,
    .video-section,
    .repertoire,
    .members,
    .contact {
        padding: 50px 0;
    }
}
