/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&family=Oswald:wght@500;700&display=swap');

:root {
    --bg-color: #050505;
    --card-bg: #121212;
    --text-color: #e0e0e0;
    --text-muted: #a0a0a0;

    --primary: #6f5bef;
    /* Purple */
    --secondary: #4cc9f0;
    /* Neon Blue */
    --accent: #7209b7;
    /* Purple */

    --gradient-main: linear-gradient(135deg, var(--primary), var(--accent));

    --font-body: 'Inter', sans-serif;
    --font-heading: 'Oswald', sans-serif;

    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 2rem;
    --spacing-xl: 4rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-md);
    color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background: var(--gradient-main);
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(247, 37, 133, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.section-padding {
    padding: var(--spacing-xl) 0;
}

/* Header & Nav */
header {
    background-color: rgba(5, 5, 5, 0.95);
    padding: var(--spacing-md) 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.logo img {
    height: 50px;
    width: auto;
}

.hero-logo {
    max-width: 400px;
    margin: 0 auto var(--spacing-md);
}

.nav-links {
    display: flex;
    gap: var(--spacing-lg);
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--secondary);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)),
        url('../images/tim-mccray-hero.jpg') no-repeat center center/cover;
    position: relative;
    margin-top: 60px;
    /* Offset fixed header */
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: var(--spacing-sm);
    background: linear-gradient(to right, #fff, var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: var(--spacing-lg);
}

/* Footer */
footer {
    background-color: var(--card-bg);
    padding: var(--spacing-xl) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    margin-top: auto;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.social-links a {
    font-size: 1.5rem;
    color: var(--text-color);
}

.social-links a:hover {
    color: var(--primary);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        right: 0;
        top: 60px;
        height: calc(100vh - 60px);
        background-color: var(--bg-color);
        flex-direction: column;
        width: 100%;
        align-items: center;
        padding-top: var(--spacing-xl);
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .hamburger {
        display: block;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-logo {
        max-width: 200px;
    }

    .hero {
        background-position: 70% center;
    }
}

/* Tour Table Styles */
#tour-dates {
    width: 100%;
}

.tour-table {
    width: 100%;
    border-collapse: collapse;
    color: var(--text-color);
}

.tour-table th {
    text-align: left;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    text-transform: uppercase;
    font-size: 0.9rem;
    color: var(--text-muted);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.tour-table td {
    padding: 20px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-align: left;
}

.tour-table tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.tour-date {
    font-weight: 700;
    color: var(--primary);
}

.tour-venue {
    font-weight: 600;
    font-size: 1.1rem;
    color: #fff;
}

.tour-city {
    color: var(--text-muted);
}

.btn-sm {
    padding: 5px 15px;
    font-size: 0.85rem;
}

@media (max-width: 600px) {
    .tour-table thead {
        display: none;
    }

    .tour-table tr {
        display: flex;
        flex-direction: column;
        padding: 20px 0;
        text-align: center;
    }

    .tour-table td {
        padding: 5px 0;
        border: none;
    }

    .tour-table td:last-child {
        margin-top: 10px;
    }
}