/* Base Styles */
:root {
    --primary-color: #f03c56;
    --secondary-color: #00a3a0;
    --tertiary-color: #E3E000;
    --font-family: Arial, sans-serif;
    --text-color: #E6E3E3;
    --bg-color: #1a1a1a;
}

body {
    font-family: var(--font-family);
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
    color: var(--text-color);
    min-height: 100vh;
}


body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url('/static/assets/images/background.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: -1;
    filter: sepia(0.5) grayscale(0.7) brightness(0.5);
}


.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    /* border: 1px solid red; */
}

/* Band Header */
.band-header {
    text-align: center;
    margin-bottom: 40px;
    
}

.avatar-container {
    margin-bottom: 20px;
}

.avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--primary-color);
}

.band-name {
    font-family: 'Permanent Marker', cursive;
    font-size: 2.5rem;
    margin: 10px 0;
    color: var(--primary-color);
}

.text-logo {
    max-width: 80%;
    height: auto;
    display: block;
    margin: 0 auto 10px;
}

.band-description {
    font-size: 1.2rem;
    color: var(--text-color);
}

/* Links Sections */
section {
    margin-bottom: 30px;
}

section h2 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 1.5rem;
}

/* Link Styles */
.link {
    display: block;
    width: 60%;
    margin: 10px auto;
    padding: 15px;
    text-decoration: none;
    color: var(--text-color);
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    text-align: center;
    font-weight: bold;
}

.link:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.primary-link {
    border-color: var(--primary-color);
}
.primary-link:hover {
    background-color: var(--primary-color);
}

.secondary-link {
    border-color: var(--secondary-color);
}
.secondary-link:hover {
    background-color: var(--secondary-color);
}

.tertiary-link {
    border-color: var(--tertiary-color);
}
.tertiary-link:hover {
    background-color: var(--tertiary-color);
    color: #000;
}

/* Social Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 12px;
}

.social-icon {
    color: var(--text-color);
    font-size: 1.5rem;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}


/* Footer */
.site-footer {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    
    .band-name {
        font-size: 2rem;
    }
    
    .avatar {
        width: 120px;
        height: 120px;
    }
    
    .link {
        padding: 12px;
        font-size: 0.9rem;
        width: 80%;
    }
}