/* First Sunday Band Page - Additional Styles */

/* Animated Mesh Gradient Hero */
.first-sunday-page .hero-bg-band {
    background: #0D1117;
    overflow: hidden;
}

.mesh-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.mesh-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.65;
    will-change: transform;
}

.mesh-blob-1 {
    width: 80%;
    height: 80%;
    top: -20%;
    left: -10%;
    background: radial-gradient(circle, rgba(212, 168, 83, 0.35) 0%, transparent 70%);
    animation: meshFloat1 12s ease-in-out infinite;
}

.mesh-blob-2 {
    width: 60%;
    height: 60%;
    top: 20%;
    right: -15%;
    background: radial-gradient(circle, rgba(26, 31, 61, 0.9) 0%, transparent 70%);
    animation: meshFloat2 14s ease-in-out infinite;
}

.mesh-blob-3 {
    width: 50%;
    height: 50%;
    bottom: -10%;
    left: 10%;
    background: radial-gradient(circle, rgba(45, 53, 97, 0.8) 0%, transparent 70%);
    animation: meshFloat3 10s ease-in-out infinite;
}

.mesh-blob-4 {
    width: 40%;
    height: 40%;
    top: 40%;
    left: 30%;
    background: radial-gradient(circle, rgba(212, 168, 83, 0.25) 0%, transparent 70%);
    animation: meshFloat4 11s ease-in-out infinite;
}

.mesh-blob-5 {
    width: 70%;
    height: 70%;
    bottom: -25%;
    right: -20%;
    background: radial-gradient(circle, rgba(26, 31, 61, 0.7) 0%, transparent 70%);
    animation: meshFloat5 13s ease-in-out infinite;
}

@keyframes meshFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(15%, -12%) scale(1.15); }
    50% { transform: translate(-10%, 15%) scale(0.9); }
    75% { transform: translate(-15%, -8%) scale(1.08); }
}

@keyframes meshFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-18%, 10%) scale(1.12); }
    66% { transform: translate(12%, -15%) scale(0.88); }
}

@keyframes meshFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(12%, 18%) scale(1.1); }
    50% { transform: translate(-15%, -10%) scale(0.92); }
    75% { transform: translate(8%, -18%) scale(1.05); }
}

@keyframes meshFloat4 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-20%, 12%) scale(1.2); }
}

@keyframes meshFloat5 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(-12%, -20%) scale(0.9); }
    50% { transform: translate(18%, 8%) scale(1.15); }
    75% { transform: translate(10%, 15%) scale(0.95); }
}

/* Hero Logo */
.hero-logo {
    max-width: 400px;
    width: 80%;
    height: auto;
    margin: 0 auto 18px;
    filter: drop-shadow(0 10px 30px rgba(212, 168, 83, 0.3));
    animation: fadeInUp 1s ease-out;
}

.first-sunday-page .hero-subtitle {
    margin-top: -10px;
    margin-bottom: 36px;
}

.first-sunday-page .hero-socials {
    margin-top: -16px;
}

@media (max-width: 768px) {
    .hero-logo {
        max-width: 280px;
    }
}

.hero-label {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--color-text-secondary);
    margin-bottom: 20px;
}

/* Active nav link */
.nav-links a.active {
    color: var(--color-primary);
}

.nav-links a.active::after {
    width: 100%;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--color-text-secondary);
    font-size: 17px;
}

.feature-list li i {
    color: var(--color-primary);
    font-size: 16px;
}

/* Band Photo */
.band-photo {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    border: 2px solid var(--color-primary);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

/* Band Gallery */
.band-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.band-gallery img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    border: 2px solid var(--color-secondary);
    transition: transform var(--transition-normal), border-color var(--transition-normal);
}

.band-gallery img:hover {
    transform: translateY(-4px);
    border-color: var(--color-primary);
}

@media (max-width: 768px) {
    .band-gallery {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .band-gallery img {
        height: 240px;
    }
    
    .band-photo {
        height: 350px;
    }
}

/* Band Photo Placeholder (legacy) */
.band-photo-placeholder {
    width: 100%;
    height: 500px;
    background: var(--color-bg-light);
    border-radius: var(--radius-lg);
    border: 2px dashed var(--color-secondary-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
}

.band-photo-placeholder i {
    font-size: 64px;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.band-photo-placeholder p {
    font-size: 20px;
    font-weight: 500;
}

/* Band Members Grid */
.members-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.member-card {
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    padding: 40px 20px;
    text-align: center;
    border: 1px solid var(--color-secondary);
    transition: transform var(--transition-normal), border-color var(--transition-normal);
}

.member-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
}

.member-photo {
    width: 100px;
    height: 100px;
    background: var(--color-bg-light);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--color-primary);
}

.member-photo i {
    font-size: 36px;
    color: var(--color-primary);
}

.member-photo-avatar {
    overflow: hidden;
    padding: 0;
}

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

.member-name {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 5px;
}

.member-role {
    font-size: 14px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Footer Navigation */
.footer-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.footer-nav a {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text-secondary);
    transition: color var(--transition-normal);
}

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

.footer-nav span {
    color: var(--color-secondary-light);
}

.footer-domain {
    font-size: 12px;
    color: var(--color-text-muted);
    margin-top: 10px;
    letter-spacing: 2px;
}

/* Responsive */
@media (max-width: 1024px) {
    .members-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .members-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .member-card {
        padding: 30px 15px;
    }
    
    .member-photo {
        width: 80px;
        height: 80px;
    }
    
    .member-photo i {
        font-size: 28px;
    }
    
    .band-photo-placeholder {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .members-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .member-name {
        font-size: 16px;
    }
    
    .member-role {
        font-size: 12px;
    }
}
