/* Anne Band Website Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Special Elite', cursive;
    background-color: #0f0606;
    color: white;
    padding-top: 90px;
}

header {
    background-color: #0f0606;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    z-index: 1100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.social-icons {
    display: flex;
    gap: 20px;
    align-items: center;
    margin: 0 auto;
    z-index: 1;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.shows-info {
    margin-bottom: 24px;
    width: 100%;
}

.shows-date, .shows-location, .shows-title, .shows-festival, .shows-tag {
    margin: 6px 0;
    font-family: 'Special Elite', cursive;
}

.shows-title {
    font-size: 2rem;
    font-weight: bold;
    margin: 12px 0;
}

.shows-tag {
    display: inline-block;
    background: #1db954;
    color: #fff;
    border-radius: 12px;
    padding: 4px 12px;
    font-size: 0.9rem;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.get-tickets-button {
    display: inline-block;
    padding: 12px 28px;
    background-color: #1db954;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    font-size: 1rem;
    transition: background-color 0.3s, transform 0.3s;
    margin-top: 10px;
    font-family: 'Special Elite', cursive;
}

.get-tickets-button:hover {
    background-color: #1ed760;
    transform: translateY(-2px) scale(1.04);
}

/* Fade-in animation for sections */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section, .about-container, .album-promotion, .site-footer {
    opacity: 0;
    animation: fadeInUp 1.2s cubic-bezier(0.4,0,0.2,1) forwards;
    animation-delay: 0.2s;
}

section.visible, .about-container.visible, .album-promotion.visible, .site-footer.visible {
    opacity: 1;
    animation-play-state: running;
}

/* Animate hero title */
.hero-title-up, .hero-title-up span {
    opacity: 0;
    animation: fadeInUp 1.2s cubic-bezier(0.4,0,0.2,1) forwards;
    animation-delay: 0.3s;
}
.hero-title-up.visible, .hero-title-up.visible span {
    opacity: 1;
    animation-play-state: running;
}

/* Animate album cover */
.album-cover {
    opacity: 0;
    animation: fadeInUp 1.2s cubic-bezier(0.4,0,0.2,1) forwards;
    animation-delay: 0.5s;
}
.album-cover.visible {
    opacity: 1;
    animation-play-state: running;
}

.connect-banner {
    width: 100vw;
    background: #111;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 18px 0;
    margin: 0;
    z-index: 1000;
    position: relative;
    top: 0;
}

.connect-banner-content {
    display: flex;
    align-items: center;
    gap: 24px;
}
.connect-text {
    font-size: 1.2rem;
    font-family: 'Special Elite', cursive;
    letter-spacing: 1px;
}
.socials-button {
    background: #fff;
    color: #111;
    border: none;
    border-radius: 20px;
    padding: 10px 28px;
    font-size: 1rem;
    font-family: 'Special Elite', cursive;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s, color 0.3s, transform 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.socials-button:hover {
    background: #ff6b6b;
    color: #fff;
    transform: translateY(-2px) scale(1.04);
}

.hero-section {
    margin-top: 0;
}

@media (max-width: 600px) {
    .connect-banner-content {
        flex-direction: column;
        gap: 10px;
    }
    .connect-text {
        font-size: 1rem;
    }
    .socials-button {
        font-size: 0.95rem;
        padding: 8px 18px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 10px 15px;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .social-icons {
        gap: 15px;
    }
    
    .social-icons a {
        font-size: 20px;
    }
    
    .logo-container {
        margin: 0 20px;
    }
    
    .logo {
        height: 50px;
    }
    
    .nav-buttons {
        gap: 15px;
    }
    
    .nav-buttons a {
        padding: 8px 15px;
        font-size: 16px;
    }
    
    .shows-card {
        padding: 18px 8px;
        max-width: 95vw;
    }
    .shows-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    header {
        flex-direction: column;
        text-align: center;
    }
    
    .logo-container {
        order: -1;
        margin: 0 0 15px 0;
    }
    
    .social-icons,
    .nav-buttons {
        justify-content: center;
    }
}

main {
    padding: 40px 20px;
    text-align: center;
}

h1:not(.about-title) {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ff6b6b;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

p {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}
