/* styles.css - The Defibrillators Band Website */

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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #000000;
    background: linear-gradient(135deg, #F5F1E8 0%, #E8DEC9 50%, #D9C9B0 100%);
    background-attachment: fixed;
}

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

/* Header & Navigation */
header {
    background: linear-gradient(135deg, rgba(232, 222, 201, 0.95) 0%, rgba(217, 201, 176, 0.95) 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(156, 130, 96, 0.2);
    backdrop-filter: blur(10px);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    background: linear-gradient(135deg, #A68A64 0%, #8B7355 50%, #6B5744 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { filter: drop-shadow(0 0 8px rgba(166, 138, 100, 0.4)); }
    50% { filter: drop-shadow(0 0 12px rgba(139, 115, 85, 0.5)); }
}

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

.nav-menu a {
    color: #4A3F2F;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #A68A64, #8B7355);
    transition: width 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: #8B7355;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #D4C4A8 0%, #C9B899 50%, #B8A486 100%);
    color: #000000;
    padding: 140px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(166, 138, 100, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 115, 85, 0.15) 0%, transparent 50%);
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #8B7355 0%, #A68A64 50%, #C4A574 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse 2s infinite, shimmer 3s linear infinite;
    background-size: 200% 200%;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.9; transform: scale(1.02); }
}

@keyframes shimmer {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-style: italic;
    text-shadow: 2px 2px 4px rgba(62, 50, 38, 0.15);
}

.subtitle {
    font-size: 1.2rem;
    color: #4A3F2F;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
}

/* About Section */
.about-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #E8DEC9 0%, #DDD2BC 50%, #D9C9B0 100%);
}

.about-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    background: linear-gradient(135deg, #8B7355 0%, #A68A64 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.band-bio p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #000;
}

/* Musicians Section */
.musicians-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #F5F1E8 0%, #E8DEC9 50%, #DDD2BC 100%);
}

.musicians-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    background: linear-gradient(135deg, #9C8260 0%, #8B7355 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.musicians-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.musician-card {
    background: linear-gradient(135deg, rgba(217, 201, 176, 0.4) 0%, rgba(201, 184, 153, 0.4) 100%);
    border: 2px solid rgba(166, 138, 100, 0.3);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
}

.musician-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 10px 40px rgba(139, 115, 85, 0.3);
    border-color: #A68A64;
    background: linear-gradient(135deg, rgba(217, 201, 176, 0.6) 0%, rgba(201, 184, 153, 0.6) 100%);
}

.musician-photo {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid transparent;
    background: linear-gradient(135deg, #C4A574, #A68A64, #8B7355) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    position: relative;
}

.musician-photo::before {
    content: '';
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E8DEC9 0%, #DDD2BC 100%);
}

.photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9C8260;
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
}

.musician-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #8B7355 0%, #A68A64 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.instrument {
    font-size: 1rem;
    color: #9C8260;
    margin-bottom: 1rem;
    font-style: italic;
    font-weight: 600;
}

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

/* Songs Section */
.songs-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #E8DEC9 0%, #DDD2BC 50%, #D9C9B0 100%);
}

.songs-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    background: linear-gradient(135deg, #8B7355 0%, #9C8260 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.songs-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #6B5744;
}

.songs-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto 2rem;
}

.song-column h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #9C8260 0%, #A68A64 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(90deg, #9C8260, #A68A64) 1;
    padding-bottom: 0.5rem;
}

.song-column ul {
    list-style: none;
}

.song-column li {
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(156, 130, 96, 0.2);
    font-size: 1rem;
    transition: all 0.3s;
    padding-left: 10px;
}

.song-column li:hover {
    padding-left: 20px;
    color: #8B7355;
    border-bottom-color: #8B7355;
}

.songs-note {
    text-align: center;
    font-style: italic;
    color: #9C8260;
    margin-top: 2rem;
}

/* Contact Section */
.contact-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #C9B899 0%, #B8A486 100%);
    color: #000000;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(166, 138, 100, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.contact-section .container {
    position: relative;
    z-index: 1;
}

.contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(255, 255, 255, 0.3);
}

.contact-section p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.contact-section a {
    color: #6B5744;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.contact-section a:hover {
    color: #8B7355;
    text-shadow: 0 0 10px rgba(139, 115, 85, 0.3);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #D9C9B0 0%, #DDD2BC 100%);
    color: #6B5744;
    text-align: center;
    padding: 2rem;
    border-top: 3px solid transparent;
    border-image: linear-gradient(90deg, #C4A574, #A68A64, #8B7355) 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .musicians-grid {
        grid-template-columns: 1fr;
    }
    
    .songs-columns {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.4rem;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .about-section h2,
    .musicians-section h2,
    .songs-section h2,
    .contact-section h2 {
        font-size: 2rem;
    }
}
