/* bastard Hamburg - Motörhead Tribute Website Styles */
/* Dark Theme with Motorhead Font for Headings */

/* Font Face - Motorhead Font */
@font-face {
    font-family: 'Motorhead';
    src: url('/fonts/motorhead-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* CSS Variables */
:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --bg-tertiary: #2a2a2a;
    --text-primary: #e0e0e0;
    --text-secondary: #a0a0a0;
    --accent-color: #c41e3a;
    --accent-hover: #e02040;
    --border-color: #333;
    --link-color: #c41e3a;
    --link-hover: #ff4060;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Motorhead', Arial, sans-serif !important;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-transform: none;
    font-weight: normal;
}

/* Numbers should not use Motorhead font */
h1 span.number, h2 span.number, h3 span.number, 
h4 span.number, h5 span.number, h6 span.number,
.no-motorhead {
    font-family: Arial, sans-serif !important;
}

/* Card titles - lowercase, not bold */
.card-title {
    font-family: 'Motorhead', Arial, sans-serif !important;
    font-weight: normal !important;
    text-transform: none !important;
    letter-spacing: 1px;
}

h1 {
    font-size: 2.5rem;
    font-weight: normal;
}

h2 {
    font-size: 2rem;
    font-weight: normal;
}

h3 {
    font-size: 1.5rem;
    font-weight: normal;
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

/* Links */
a {
    color: var(--link-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--link-hover);
}

/* Header & Navigation */
header {
    background-color: var(--bg-secondary);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--accent-color);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Motorhead', Arial, sans-serif !important;
    font-size: 1.8rem;
    color: var(--text-primary);
    text-transform: none;
    letter-spacing: 2px;
    font-weight: normal;
}

.logo span {
    color: var(--accent-color);
}

/* Navigation */
nav {
    display: flex;
    align-items: center;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.nav-menu li a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-primary);
    font-family: 'Motorhead', Arial, sans-serif !important;
    font-weight: normal;
    text-transform: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    background-color: var(--accent-color);
    color: white;
}

/* Main Content */
main {
    flex: 1;
    padding: 2rem 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    border-bottom: 1px solid var(--border-color);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
}

.hero .subtitle {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-family: 'Motorhead', Arial, sans-serif !important;
    letter-spacing: 2px;
    text-transform: none;
    font-weight: normal;
}

/* Section Styles */
.section {
    padding: 3rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--accent-color);
}

/* Cards */
.card {
    background-color: var(--bg-secondary);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.2);
}

.card-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.card-content {
    padding: 1.5rem;
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

/* Band Member Page Styles */
.member-profile {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    padding: 2rem 0;
}

.member-image {
    width: 100%;
    max-width: 400px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.member-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.member-info h1 {
    margin-bottom: 0.5rem;
}

.member-info .role {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-weight: normal;
    font-family: 'Motorhead', Arial, sans-serif !important;
}

.member-bio {
    color: var(--text-secondary);
    line-height: 1.8;
}

.member-bio p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.member-bio a {
    color: var(--link-color);
}

.member-bio a:hover {
    color: var(--link-hover);
    text-decoration: underline;
}

/* Social Links */
.social-links {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.social-links h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.social-links ul {
    list-style: none;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-links li a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: var(--bg-tertiary);
    border-radius: 50px;
    color: var(--text-primary);
    font-weight: normal;
    font-family: 'Motorhead', Arial, sans-serif !important;
    transition: all 0.3s ease;
}

.social-links li a:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

.social-icon {
    width: 20px;
    height: 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: var(--accent-color);
    color: white;
    font-weight: normal;
    text-transform: none;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: 'Motorhead', Arial, sans-serif !important;
}

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

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    font-weight: normal;
}

.btn-outline:hover {
    background-color: var(--accent-color);
    color: white;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: normal;
    color: var(--text-primary);
    font-family: 'Motorhead', Arial, sans-serif !important;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-primary);
    font-family: Arial, sans-serif;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* Footer */
footer {
    background-color: var(--bg-secondary);
    padding: 2rem 0;
    margin-top: auto;
    border-top: 2px solid var(--accent-color);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logo {
    font-family: 'Motorhead', Arial, sans-serif !important;
    font-size: 1.5rem;
    color: var(--text-primary);
    text-transform: none;
    font-weight: normal;
}

.footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-tertiary);
    border-radius: 50%;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--accent-color);
}

.copyright {
    width: 100%;
    text-align: center;
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* Live Dates Table */
.live-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.live-table th,
.live-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.live-table th {
    background-color: var(--bg-tertiary);
    font-family: 'Motorhead', Arial, sans-serif !important;
    text-transform: none;
    letter-spacing: 1px;
    font-weight: normal;
}

.live-table tr:hover {
    background-color: var(--bg-tertiary);
}

/* Media Gallery */
.media-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.media-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.media-item img,
.media-item iframe {
    width: 100%;
    height: auto;
    display: block;
}

.media-item iframe {
    aspect-ratio: 16/9;
    height: auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .member-profile {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .member-image {
        max-width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero .subtitle {
        font-size: 1.2rem;
    }
    
    .nav-toggle {
        display: block;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--bg-secondary);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li a {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .header-container {
        padding: 0 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.4rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero .subtitle {
        font-size: 1rem;
        letter-spacing: 2px;
    }
    
    .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .social-links ul {
        flex-direction: column;
    }
    
    .social-links li a {
        width: 100%;
        justify-content: center;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.py-2 { padding-top: 1rem; padding-bottom: 1rem; }
.py-4 { padding-top: 2rem; padding-bottom: 2rem; }

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

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

/* Hamburger Menu Icon */
.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    position: relative;
    transition: background-color 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: var(--text-primary);
    left: 0;
    transition: all 0.3s ease;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

.nav-toggle.active .hamburger {
    background-color: transparent;
}

.nav-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle.active .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}