/* Custom Variables */
:root {
    --primary-color: #9b8301;
    --secondary-color: #ffd700;
    --dark-bg: #0a0a0a;
    --darker-bg: #000000;
    --text-light: #ffffff;
    --text-muted: #dcdada;
}

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

body {
    font-family: 'Arial', sans-serif;
    background-color: var(--darker-bg);
    color: var(--text-light);
    line-height: 1.6;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Navigation */
.navbar {
    background-color: rgba(0, 0, 0, 0.95) !important;
    padding: 1rem 0;
    border-bottom: 2px solid var(--primary-color);
}

.navbar-brand img {
    filter: drop-shadow(0 0 10px var(--secondary-color));
}

.navbar-nav .nav-link {
    color: var(--text-light) !important;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.navbar-nav .nav-link:hover {
    color: var(--secondary-color) !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/hero-bg.jpg') center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
}

/* Fallback if hero-bg.jpg doesn't exist */
.hero-section {
    background-color: var(--darker-bg);
}

.hero-section {
    background: var(--darker-bg);
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/hero-bg.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    padding-left: 15px;
    padding-right: 15px;
}

.hero-logo {
    max-width: 100%;
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px var(--secondary-color));
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        filter: drop-shadow(0 0 10px var(--secondary-color));
    }
    to {
        filter: drop-shadow(0 0 30px var(--secondary-color));
    }
}

.hero-section h1 {
    font-size: 4rem;
    text-shadow: 0 0 20px var(--primary-color);
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

.hero-section .lead {
    font-size: 1.5rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-buttons .btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    transition: all 0.3s ease;
}

.hero-buttons .btn-primary {
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.hero-buttons .btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.hero-buttons .btn-outline-light:hover {
    background-color: var(--text-light);
    color: var(--darker-bg);
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 3rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

/* Tour Dates Table */
.tour-table {
    border: 2px solid #333;
}

.tour-table td {
    padding: 1.5rem 1rem;
    vertical-align: middle;
    font-size: 1.1rem;
    border-bottom: 1px solid #333;
}

.tour-table a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.tour-table a:hover {
    color: var(--secondary-color);
}

.tour-table .btn {
    border-radius: 0;
    padding: 8px 20px;
    font-weight: 600;
}

.tour-table .btn:hover {
    background-color: var(--text-light);
    color: var(--darker-bg);
}

/* Music Section */
.album-cover {
    max-width: 100%;
    width: 100%;
    height: auto;
    border: 3px solid var(--primary-color);
    box-shadow: 0 0 30px rgba(155, 131, 1, 0.5);
}

.music-player iframe {
    border-radius: 0;
}

.streaming-links h4 {
    margin-bottom: 1rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.streaming-links .btn {
    border-radius: 0;
    padding: 10px 20px;
}

/* Band Members */
.band-member-photo {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    transition: all 0.3s ease;
}

.band-member-photo:hover {
    transform: scale(1.05);
    border-color: var(--secondary-color);
}

/* News Cards */
.card {
    border-radius: 0;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color) !important;
}

.card-img-top {
    border-radius: 0;
    height: 250px;
    object-fit: cover;
}

.card-title {
    color: var(--secondary-color);
}

.card-text {
    color: var(--text-light);
}

/* Gallery */
.gallery-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #333;
}

.gallery-img:hover {
    transform: scale(1.05);
    border-color: var(--primary-color);
}

/* Contact Form */
.form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid #333;
    border-radius: 0;
    color: var(--text-light);
    padding: 15px;
    font-size: 1rem;
}

.form-control:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-color);
    color: var(--text-light);
    box-shadow: 0 0 10px rgba(139, 0, 0, 0.3);
}

.form-control::placeholder {
    color: var(--text-muted);
}

.text-muted {
    color: var(--text-light)!important;
}

/* Footer */
footer {
    background-color: var(--darker-bg);
    border-top: 2px solid var(--primary-color);
}

footer a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--secondary-color);
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 0;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-outline-light {
    border-radius: 0;
    border-width: 2px;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .tour-table td {
        font-size: 0.9rem;
        padding: 1rem 0.5rem;
    }
    
    .navbar-nav {
        text-align: center;
        padding: 1rem 0;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
}

/* Loading Animation */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--darker-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader-logo {
    width: 150px;
    animation: pulse 1.5s ease-in-out infinite;
}

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