:root {
    --primary-color: #ff3e3e;
    --secondary-color: #1a1a1a;
    --accent-color: #ffffff; /* Shifted to white for cleaner look */
    --bg-dark: #050505;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --text-light: #ffffff;
    --text-muted: #ffffff;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-speed: 0.4s;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-body);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Navigation */
.navbar {
    background-color: transparent;
    backdrop-filter: none;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px 0;
    border-bottom: 1px solid transparent;
}

.navbar-scrolled {
    background-color: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(15px);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.navbar-brand {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color) !important;
    letter-spacing: -1px;
}

.navbar-brand img {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 0 10px rgba(255, 62, 62, 0.4));
    height: 120px; /* Base size */
}

.navbar-scrolled .navbar-brand img {
    height: 80px !important;
}

.navbar-brand span {
    color: var(--text-light);
}

.nav-link {
    color: #ffffff !important;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 15px;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    position: relative;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.nav-link:hover {
    opacity: 1;
    color: var(--primary-color) !important;
    text-shadow: 0 0 10px rgba(255, 62, 62, 0.5);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition-speed);
}

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

.btn-book {
    background: linear-gradient(45deg, var(--primary-color), #b22222);
    color: white;
    border: none;
    padding: 12px 28px;
    font-weight: 700;
    border-radius: 0;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 62, 62, 0.3);
}

.btn-book:hover {
    background: linear-gradient(45deg, #ff5e5e, var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 62, 62, 0.5);
    color: white;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.9)), url('../images/hero_rock_band.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
}

.hero-content h1 {
    font-size: 6rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-style: italic;
    margin-bottom: 2rem;
}

/* Sections */
section {
    padding: 120px 0;
    position: relative;
}

.border-glow-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.3;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 3.5rem;
    font-weight: 900;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    color: #ffffff;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    border-radius: 3px;
}

/* Gigs Card - Glassmorphism */
.gig-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-left: 5px solid var(--primary-color);
    padding: 30px;
    margin-bottom: 25px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.gig-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: 0.5s;
}

.gig-card:hover::before {
    left: 100%;
}

.gig-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 62, 62, 0.3);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.gig-date {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Band Members */
.member-card {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
}

.member-card img {
    transition: transform 0.5s ease;
    height: 400px;
    width: 100%;
    object-fit: cover;
}

.member-card:hover img {
    transform: scale(1.1);
}

.member-card .bg-dark, 
.member-card .glass-panel-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    padding: 25px !important;
}

.member-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(transparent, rgba(0,0,0,0.95));
    border-top: 1px solid var(--glass-border);
    backdrop-filter: blur(5px);
    z-index: 2;
}

/* Footer Links */
.list-unstyled li a {
    color: #ffffff !important;
    transition: var(--transition-speed);
}

.list-unstyled li a:hover {
    color: var(--primary-color) !important;
}

footer hr {
    border-color: rgba(255, 255, 255, 0.2);
}
footer {
    background-color: #050505;
    padding: 50px 0 20px;
    border-top: 1px solid #222;
}

.social-links a {
    color: var(--text-light);
    font-size: 1.5rem;
    margin-right: 15px;
    transition: var(--transition-speed);
}

.social-links a:hover {
    color: var(--primary-color);
}

/* Forms */
.form-control {
    background-color: #1a1a1a;
    border: 1px solid #333;
    color: white;
    border-radius: 0;
}

.form-control:focus {
    background-color: #222;
    border-color: var(--primary-color);
    color: white;
    box-shadow: none;
}

/* Sticky Booking */
.sticky-booking {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.sticky-booking .btn {
    border-radius: 50px;
    padding: 15px 25px;
    box-shadow: 0 10px 30px rgba(255, 62, 62, 0.4);
}

/* Helpers */
.bg-secondary-dark {
    background: linear-gradient(135deg, #0a0a0a 0%, #151515 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.glass-panel {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 50px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: all 0.5s ease;
}

.glass-panel:hover {
    border-color: rgba(255, 62, 62, 0.3);
    box-shadow: 0 15px 45px rgba(255, 62, 62, 0.1);
}

/* Red Glow Animation */
@keyframes pulse-red {
    0% { box-shadow: 0 0 0 0 rgba(255, 62, 62, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(255, 62, 62, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 62, 62, 0); }
}

.glow-on-hover:hover {
    animation: pulse-red 1.5s infinite;
}

.pt-150 {
    padding-top: 150px;
}

.border-left-danger {
    border-left: 5px solid var(--primary-color);
}

/* Removed old scrolled block since it's merged above */

.large i {
    font-size: 3rem;
}

/* Breadcrumb */
.breadcrumb-item + .breadcrumb-item::before {
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }
    .pt-150 {
        padding-top: 100px;
    }
}
