/* Theme Color Palette - Iron Maiden Inspired */
:root {
    /* Primary Colors - Inspired by Iron Maiden's iconic red and black */
    --primary-color: #C41E3A;
    --secondary-color: #8B0000;
    --accent-color: #FFD700;
    
    /* Background Colors */
    --bg-color: #F5F5F5;
    --section-alt-bg: #E8E8E8;
    --header-bg: rgba(255, 255, 255, 0.95);
    
    /* Text Colors */
    --text-color: #2C2C2C;
    --text-muted: #666666;
    
    /* Footer Colors */
    --footer-bg: #1A1A1A;
    --footer-text: #FFFFFF;
    
    /* Additional Colors */
    --border-color: #DDDDDD;
    --shadow-color: rgba(0, 0, 0, 0.1);
}

/* Background Pattern */
body {
    background-image: url('../img/pattern.svg');
    background-repeat: repeat;
    background-size: 100px 100px;
    background-attachment: fixed;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Selection Color */
::selection {
    background-color: var(--primary-color);
    color: white;
}

::-moz-selection {
    background-color: var(--primary-color);
    color: white;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-content {
    animation: fadeIn 1s ease-out;
}

.hero-image {
    animation: fadeIn 1.5s ease-out;
}

.section-title {
    animation: slideIn 0.8s ease-out;
}

/* Enhanced Card Styles */
.content-block {
    position: relative;
    overflow: hidden;
}

.content-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
}

/* Button Styles (if needed in future) */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(196, 30, 58, 0.4);
}

/* Accent Elements */
strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Enhanced Info Cards */
.info-card {
    position: relative;
    border-top: 4px solid var(--primary-color);
}

.info-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, transparent 50%, var(--accent-color) 50%);
    opacity: 0.1;
}

/* Enhanced Setlist Items */
.setlist li::before {
    content: '♪';
    margin-right: 0.5rem;
    color: var(--primary-color);
    font-weight: bold;
}

.setlist li:hover::before {
    color: white;
}

/* Link Underline Effect */
a:not(.nav-link):not(.btn) {
    position: relative;
}

a:not(.nav-link):not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
}

a:not(.nav-link):not(.btn):hover::after {
    width: 100%;
}

/* Dark Mode Support (Optional) */
@media (prefers-color-scheme: dark) {
    :root {
        --bg-color: #1A1A1A;
        --section-alt-bg: #2C2C2C;
        --text-color: #E8E8E8;
        --text-muted: #AAAAAA;
        --header-bg: rgba(26, 26, 26, 0.95);
    }
    
    .content-block,
    .info-card {
        background-color: #2C2C2C;
    }
    
    .section-alt .content-block {
        background-color: #1A1A1A;
    }
}
