:root {
    --primary-color: #8B0000;
    --secondary-color: #000000;
    --accent-color: #ffd700;
    --text-color: #ffffff;
    --background-color: #1a1a1a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

header {
    background-color: var(--secondary-color);
    padding: 1rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

main {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0;
}

.logo img {
    height: 70px;
    max-width: 220px;
    transition: height 0.3s, max-width 0.3s;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.hero, .about-hero, .gallery-hero, .dates-hero, .repertoire-hero, .contact-hero {
    height: 40vh;
    background: linear-gradient(rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.82)), url('../images/background.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
}

.hero {
    min-height: 52vh;
    padding-top: 120px;
}

.hero h1,
.about-hero h1,
.gallery-hero h1,
.dates-hero h1,
.repertoire-hero h1,
.contact-hero h1 {
    text-align: center;
    width: 100%;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: var(--accent-color);
    color: var(--secondary-color);
}

.about-preview, .highlights {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-preview h2, .highlights h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.highlight-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background-color: var(--secondary-color);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

footer {
    background-color: var(--secondary-color);
    padding: 2rem;
    text-align: center;
}

.social-links {
    margin-bottom: 1rem;
}

.social-links a {
    color: var(--text-color);
    font-size: 1.5rem;
    margin: 0 1rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--primary-color);
}

/* Mobile Navigation */
.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px;
    transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
    .logo img {
        height: 60px;
        max-width: 180px;
    }
    nav {
        flex-direction: column;
        align-items: stretch;
    }
    .nav-links {
        width: 100%;
    }
    header {
        padding: 0.5rem;
    }
    .nav-links {
        position: absolute;
        right: 0;
        height: 92vh;
        top: 8vh;
        background-color: var(--secondary-color);
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 50%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
    }

    .nav-links li {
        margin: 2rem 0;
    }

    .burger {
        display: block;
    }

    .nav-active {
        transform: translateX(0%);
    }

    .hero, .about-hero, .gallery-hero, .dates-hero, .repertoire-hero, .contact-hero {
        height: 30vh;
        padding-top: 60px;
    }
    
    .hero {
        min-height: 38vh;
        padding-top: 90px;
    }
    
    .hero h1,
    .about-hero h1,
    .gallery-hero h1,
    .dates-hero h1,
    .repertoire-hero h1,
    .contact-hero h1 {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 480px) {
    .logo img {
        height: 48px;
        max-width: 140px;
    }
    .hero, .about-hero, .gallery-hero, .dates-hero, .repertoire-hero, .contact-hero {
        height: 20vh;
        padding-top: 40px;
    }
    .hero {
        min-height: 28vh;
        padding-top: 70px;
    }
    .hero h1,
    .about-hero h1,
    .gallery-hero h1,
    .dates-hero h1,
    .repertoire-hero h1,
    .contact-hero h1 {
        font-size: 2rem;
    }
    .cta-button {
        padding: 0.7rem 1.2rem;
        font-size: 1rem;
    }
    .highlight-cards, .members-grid, .gallery-grid, .dates-grid, .artist-list, .video-grid, .contact-grid {
        grid-template-columns: 1fr !important;
    }
    .container {
        padding: 0 0.5rem;
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.hero-logo-container {
    margin-top: 60px;
    margin-bottom: 2.5rem;
}

.hero-logo.animated-logo {
    max-width: 380px;
    width: 90%;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 0 30px rgba(139,0,0,0.5));
    animation: logo-pop 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes logo-pop {
    0% { transform: scale(0.7) rotate(-10deg); opacity: 0; }
    60% { transform: scale(1.1) rotate(3deg); opacity: 1; }
    100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

.hero h1 {
    display: none;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #fff;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

@media screen and (max-width: 768px) {
    .hero-logo.animated-logo {
        max-width: 220px;
    }
    .hero-logo-container {
        margin-top: 40px;
    }
}

@media screen and (max-width: 480px) {
    .hero-logo.animated-logo {
        max-width: 140px;
    }
    .hero-logo-container {
        margin-top: 20px;
    }
}

.repertoire-slider {
    position: relative;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}
.repertoire-slider .slide {
    position: absolute;
    left: 0; right: 0; top: 0; bottom: 0;
    opacity: 0;
    transform: scale(0.96) translateY(20px);
    transition: opacity 0.7s, transform 0.7s;
    pointer-events: none;
    text-align: center;
    z-index: 1;
}
.repertoire-slider .slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}
.repertoire-slider .slide.fade-in {
    transform: scale(1) translateY(0);
}
.repertoire-slider h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}
.song-title {
    font-size: 2.2rem;
    font-weight: bold;
    color: var(--accent-color);
    text-shadow: 0 2px 16px #000, 0 0 8px var(--primary-color);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}
.slider-dots .dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #333;
    border: 2px solid var(--primary-color);
    transition: background 0.3s, border-color 0.3s;
    cursor: pointer;
}
.slider-dots .dot.active {
    background: var(--primary-color);
    border-color: var(--accent-color);
}

@media screen and (max-width: 768px) {
    .repertoire-slider {
        min-height: 140px;
    }
    .repertoire-slider h2 {
        font-size: 1.2rem;
    }
    .song-title {
        font-size: 1.3rem;
    }
}

.coming-soon-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 320px;
    background: rgba(0,0,0,0.7);
    border-radius: 18px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.3);
    margin: 3rem auto 2rem auto;
    padding: 2.5rem 1.5rem;
    text-align: center;
    animation: fadeInPop 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}
.coming-soon-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    animation: cameraFlash 2.5s infinite linear;
}
.coming-soon-box h2 {
    color: var(--accent-color);
    font-size: 2.2rem;
    margin-bottom: 0.7rem;
    letter-spacing: 2px;
    text-shadow: 0 2px 16px #000, 0 0 8px var(--primary-color);
}
.coming-soon-box p {
    color: #fff;
    font-size: 1.1rem;
    opacity: 0.85;
}
@keyframes fadeInPop {
    0% { opacity: 0; transform: scale(0.8) translateY(40px); }
    80% { opacity: 1; transform: scale(1.05) translateY(-5px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes cameraFlash {
    0%, 97%, 100% { filter: brightness(1); }
    98% { filter: brightness(2.5); }
    99% { filter: brightness(0.7); }
}
@media screen and (max-width: 768px) {
    .coming-soon-box {
        min-height: 180px;
        padding: 1.2rem 0.5rem;
    }
    .coming-soon-box h2 {
        font-size: 1.2rem;
    }
    .coming-soon-icon {
        font-size: 2rem;
    }
}

.contact-hero {
    height: 40vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.contact-content {
    padding: 4rem 0;
    background-color: var(--background-color);
}

.contact-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.contact-intro h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 2rem;
}

.contact-table {
    margin-bottom: 2rem;
}

.contact-row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-row:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.contact-icon:hover {
    transform: scale(1.1);
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--text-color);
}

.contact-detail h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-detail p {
    margin: 0;
    line-height: 1.6;
    font-size: 1.1rem;
}

.contact-form {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 2rem;
}

.contact-form h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    color: var(--text-color);
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.15);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-links a {
    color: var(--text-color);
    font-size: 1.5rem;
    transition: color 0.3s, transform 0.3s;
}

.social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

@media screen and (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-hero {
        height: 30vh;
    }
    
    .contact-content {
        padding: 2rem 0;
    }
    
    .contact-row {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .contact-icon {
        margin-bottom: 1rem;
    }
}

.about-content {
    padding: 4rem 0;
    background-color: var(--background-color);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.about-section {
    text-align: center;
}

.about-section h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.about-card {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
}

.about-card p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.band-members {
    text-align: center;
    padding: 4rem 0;
    background-color: var(--secondary-color);
}

.band-members h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 2rem;
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.member-card {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s;
}

.member-card:hover {
    transform: translateY(-5px);
}

.member-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.member-card:hover .member-image img {
    transform: scale(1.05);
}

.member-card h3 {
    color: var(--primary-color);
    padding: 1.5rem 1rem 0.5rem;
    margin: 0;
    font-size: 1.3rem;
}

.member-card p {
    padding: 0 1rem 1.5rem;
    margin: 0;
    color: var(--text-color);
    font-size: 1.1rem;
}

.style-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.style-tags span {
    background-color: var(--primary-color);
    color: var(--text-color);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 1rem;
    transition: transform 0.3s;
}

.style-tags span:hover {
    transform: translateY(-3px);
}

@media screen and (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-section h2,
    .band-members h2 {
        font-size: 1.8rem;
    }
    
    .members-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media screen and (max-width: 480px) {
    .about-section h2,
    .band-members h2 {
        font-size: 1.5rem;
    }
    
    .about-card,
    .member-card {
        padding: 1.5rem;
    }
    
    .style-tags span {
        padding: 0.4rem 1.2rem;
        font-size: 0.9rem;
    }
}

.about-preview-inner {
    margin-top: 3.5rem;
    margin-bottom: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    background: rgba(0,0,0,0.45);
    border-radius: 18px;
    padding: 2.5rem 2rem 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 4px 32px rgba(0,0,0,0.18);
    animation: fadeInPop 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.about-preview-inner h2 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-shadow: 1px 1px 6px #000;
}

.about-subtitle {
    color: var(--accent-color);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
    letter-spacing: 1px;
    text-shadow: 1px 1px 4px #000;
}

.about-preview-inner .cta-button {
    margin-bottom: 2rem;
    margin-top: 0.5rem;
    font-size: 1.1rem;
    padding: 0.9rem 2.2rem;
    box-shadow: 0 2px 12px rgba(139,0,0,0.18);
}

.about-description {
    color: #fff;
    font-size: 1.1rem;
    opacity: 0.92;
    margin-bottom: 0;
    margin-top: 0.5rem;
    text-shadow: 1px 1px 4px #000;
}

@media screen and (max-width: 768px) {
    .about-preview-inner {
        margin-top: 2rem;
        margin-bottom: 0.7rem;
    }
    .about-preview-inner h2 {
        font-size: 1.4rem;
    }
    .about-subtitle {
        font-size: 1rem;
    }
    .about-description {
        font-size: 1rem;
    }
}

.dates-table-section {
    margin: 2.5rem 0 1.5rem 0;
    text-align: center;
}
.dates-table {
    margin: 0 auto;
    border-collapse: collapse;
    width: 100%;
    max-width: 650px;
    background: rgba(0,0,0,0.45);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 18px rgba(0,0,0,0.13);
}
.dates-table th, .dates-table td {
    padding: 1rem 1.2rem;
    text-align: left;
    color: #fff;
}
.dates-table th {
    background: var(--primary-color);
    color: var(--accent-color);
    font-size: 1.1rem;
    letter-spacing: 1px;
    border-bottom: 2px solid #222;
}
.dates-table tr:nth-child(even) {
    background: rgba(0,0,0,0.18);
}
.dates-table tr:nth-child(odd) {
    background: rgba(0,0,0,0.28);
}
.dates-table td {
    font-size: 1.05rem;
}
@media screen and (max-width: 600px) {
    .dates-table th, .dates-table td {
        padding: 0.6rem 0.5rem;
        font-size: 0.95rem;
    }
    .dates-table {
        max-width: 99vw;
    }
} 