/* Base styles */
body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    background-color: #181818;
    color: #eee;
    line-height: 1.6;
}

/* Header styles */
header {
    background-color: #181818;
    text-align: center;
    min-height: 100px;
    border-bottom: 2px solid #555;
    position: relative;
}

header h1 {
    font-family: 'Big Shoulders', sans-serif;
    font-size: 5rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin: 0;
    color: #E0E0E0;
}

header .social-links {
    margin-top: 0.5rem;
}

header .social-links a {
    margin: 0 0.5rem;
    color: #D5353C;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

header .social-links a:hover {
    color: #FF5A61;
}

/* Logo styles */
.logo {
    max-height: 8rem;
    position: absolute;
    top: 10px;
    right: 20px;
    animation: spin 10s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Main content styles */
main {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

section {
    margin-bottom: 3rem;
    padding: 1.5rem;
    background-color: #282828;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

section h2 {
    color: #D5353C;
    margin-bottom: 1rem;
    border-bottom: 1px solid #555;
    padding-bottom: 0.5rem;
}

/* Hero section */
#hero-image {
    text-align: center;
    margin-bottom: 2rem;
}

#hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

/* New Music Section */
#new-music {
    background: linear-gradient(135deg, #282828 0%, #1a1a1a 100%);
    border: 2px solid #D5353C;
    position: relative;
    overflow: hidden;
}

#new-music::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #D5353C, #FF5A61, #D5353C);
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.new-music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.song-card {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid #333;
    position: relative;
    overflow: hidden;
}

.song-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(213, 53, 60, 0.3);
    border-color: #D5353C;
}

/* Playing state styles */
.song-card.playing {
    border-color: #D5353C;
    box-shadow: 0 10px 25px rgba(213, 53, 60, 0.6);
    animation: pulse-playing 2s infinite;
}

@keyframes pulse-playing {
    0%, 100% { 
        box-shadow: 0 10px 25px rgba(213, 53, 60, 0.6);
    }
    50% { 
        box-shadow: 0 10px 25px rgba(213, 53, 60, 0.8);
    }
}

@keyframes highlight-song {
    0% {
        transform: scale(1);
        box-shadow: 0 10px 25px rgba(213, 53, 60, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 35px rgba(213, 53, 60, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 10px 25px rgba(213, 53, 60, 0.3);
    }
}

.song-card.playing .play-button {
    background: #D5353C !important;
    opacity: 1 !important;
}

.song-card.playing .play-button:hover {
    background: #FF5A61 !important;
    transform: translate(-50%, -50%) scale(1.1);
}

.song-card.playing .song-artwork::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(213, 53, 60, 0.2), rgba(255, 90, 97, 0.2));
    border-radius: 8px;
    pointer-events: none;
}

.song-artwork {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(45deg, #D5353C, #FF5A61);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
    position: relative;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.new-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #D5353C;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    animation: pulse 2s infinite;
}

/* Coming soon badge styling */
.coming-soon-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(4px);
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.8);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    font-size: 1.2rem;
}

.play-button:hover {
    background: #D5353C;
    transform: translate(-50%, -50%) scale(1.1);
}

.song-card:hover .play-button {
    opacity: 1;
}

.song-info h3 {
    color: #D5353C;
    margin: 0 0 0.5rem 0;
    font-size: 1.3rem;
}

.song-description {
    color: #ccc;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

.streaming-links {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1rem;
    justify-content: center;
    align-items: center;
}

.stream-btn {
    padding: 0.8rem;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    min-width: 50px;
}

.stream-btn.spotify {
    background: #1DB954;
    color: white;
}

.stream-btn.spotify:hover {
    background: #1ed760;
    transform: translateY(-2px);
}

.stream-btn.apple {
    background: #FA243C;
    color: white;
}

.stream-btn.apple:hover {
    background: #ff2d47;
    transform: translateY(-2px);
}

.stream-btn.youtube {
    background: #FF0000;
    color: white;
}

.stream-btn.youtube:hover {
    background: #ff1a1a;
    transform: translateY(-2px);
}

.social-share {
    text-align: center;
}

.share-btn {
    background: #333;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.share-btn:hover {
    background: #D5353C;
    transform: translateY(-2px);
}



/* Enhanced Spotify Section */
.spotify-container {
    position: relative;
}

.spotify-cta {
    text-align: center;
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(213, 53, 60, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(213, 53, 60, 0.3);
}

.spotify-cta p {
    margin-bottom: 1rem;
    color: #ccc;
}

.spotify-follow-btn {
    display: inline-block;
    background: #1DB954;
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.spotify-follow-btn:hover {
    background: #1ed760;
    transform: translateY(-2px);
}

/* Spotify section */
#spotify iframe {
    width: 100%;
    max-width: 800px;
    margin: 1rem auto;
    display: block;
    border-radius: 12px;
}

/* Bio section */
#bio p {
    font-size: 1.4rem;
}

/* Band members section */
#band-members {
    margin-bottom: 3rem;
}

.member-grid {
    display: flex;
    justify-content: space-between;
}

.member {
    width: 24.5%;
    margin-bottom: 1rem;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    padding: 0;
    position: relative;
}

.member img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease, filter 0.3s ease;
    display: block;
    transform-origin: 50% 10%;
}

.member img:hover {
    transform: scale(1.1);
    filter: brightness(0.7);
}

.member-name {
    position: absolute;
    font-family: 'Big Shoulders', sans-serif;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    font-weight: bold;
    text-shadow: 1px 1px 2px black;
}

.member:hover .member-name {
    transform: translateY(0);
}

/* Review section */
#review {
    margin-bottom: 3rem;
    background-color: #282828;
    border: 2px solid #D5353C;
    padding: 2rem;
    border-radius: 8px;
}

#review h2 {
    color: #D5353C;
    margin-bottom: 1rem;
    text-align: center;
}

.review-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.review-author {
    font-style: italic;
    text-align: right;
    margin-top: 1rem;
}

/* Footer styles */
footer {
    background-color: #181818;
    text-align: center;
    padding: 1rem 0;
    border-top: 2px solid #555;
}

footer a {
    color: #D5353C;
    text-decoration: none;
}

.social-links {
    margin-bottom: 1rem;
}

.social-links a {
    margin: 0 0.5rem;
    color: #D5353C;
    text-decoration: none;
}

/* Responsive styles */
@media (max-width: 768px) {
    header h1 {
        font-size: 4rem;
        padding-left: 0;
        text-align: left;
    }

    main {
        padding: 1rem;
    }

    .logo {
        max-height: 6rem;
        right: 10px;
    }
    
    .header-content {
        align-items: flex-start;
        padding-left: 20px;
    }
}

@media (max-width: 512px) {
    header h1 {
        font-size: 4rem;
    }

    main {
        padding: 1rem;
    }

    .logo {
        max-height: 4.5rem;
        right: 5px;
    }
}

@media (max-width: 422px) {
    header h1 {
        font-size: 2.8rem;
    }
    
    .logo {
        max-height: 3rem;
    }
}

/* Tour dates section */
#tour-dates {
    margin-bottom: 3rem;
}

.tour-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tour-date {
    display: flex;
    flex-grow: 1;
    padding: 0.8rem 1.2rem;
    background-color: #222;
    border-radius: 8px;
    border-left: 4px solid #D5353C;
    transition: transform 0.2s ease;
    position: relative;
}

.tour-date:hover {
    transform: translateX(5px);
}

/* Past event styling */
.tour-date.past-event {
    opacity: 0.6;
    background-color: #1a1a1a;
    border-left-color: #666;
    filter: grayscale(0.3);
}

.tour-date.past-event:hover {
    opacity: 0.8;
    transform: translateX(5px);
}

.past-indicator {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #D5353C;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.date-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.date {
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
}

.time {
    font-size: 1rem;
    color: #aaa;
    font-style: italic;
    font-weight: bold;
    display: inline;
    padding-left: 1rem;
}

.venue {
    font-size: 1.2rem;
    color: #D5353C;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.2s ease;
}

.venue:hover {
    color: #FF5A61;
    transform: translateX(5px);
}

.venue::after {
    margin-left: 8px;
    font-size: 0.9rem;
}

.city {
    font-size: 1rem;
    padding-left: 1rem;
    color: #aaa;
    font-style: italic;
}

/* Responsive design */
@media (max-width: 768px) {
    header h1 {
        font-size: 3rem;
        letter-spacing: 4px;
    }
    
    main {
        padding: 1rem;
    }
    
    .logo {
        max-height: 5rem;
        right: 10px;
        top: 5px;
    }
    
    .header-content {
        padding: 1rem;
    }
    
    /* New Music Section Mobile Styles */
    .new-music-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .song-card {
        padding: 1rem;
    }
    
    .song-artwork {
        font-size: 2rem;
    }
    
    .streaming-links {
        gap: 0.6rem;
    }
    
    .stream-btn {
        width: 60px;
        height: 40px;
        font-size: 1rem;
        border-radius: 8px;
    }
    
    .stream-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .play-button {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
}

@media (max-width: 512px) {
    header h1 {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    main {
        padding: 0.5rem;
    }
    
    .logo {
        max-height: 4rem;
        right: 5px;
        top: 5px;
    }
    
    /* New Music Section Small Mobile Styles */
    .song-card {
        padding: 0.8rem;
    }
    
    .song-artwork {
        font-size: 1.5rem;
    }
    
    .song-info h3 {
        font-size: 1.1rem;
    }
    
    .song-description {
        font-size: 0.8rem;
    }
    
    .new-badge {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
    
    .play-button {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .stream-btn {
        width: 55px;
        height: 35px;
        font-size: 0.9rem;
        border-radius: 6px;
    }
    
    .stream-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .share-btn {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 422px) {
    header h1 {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .logo {
        max-height: 3rem;
        right: 5px;
        top: 5px;
    }
    
    /* New Music Section Extra Small Mobile Styles */
    .song-card {
        padding: 0.6rem;
    }
    
    .song-artwork {
        font-size: 1.2rem;
    }
    
    .streaming-links {
        gap: 0.3rem;
    }
    
    .stream-btn {
        width: 50px;
        height: 30px;
        font-size: 0.8rem;
        border-radius: 4px;
    }
    
    .stream-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .play-button {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
}
