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

:root {
    --primary-blue: #1e5f99;
    --secondary-blue: #2980b9;
    --light-blue: #3498db;
    --accent-blue: #5dade2;
    --dark-blue: #154360;
    --bg-light: #ebf5fb;
    --bg-white: #ffffff;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --border-color: #bdc3c7;
    --shadow: rgba(30, 95, 153, 0.1);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

/* Header Styles */
.site-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
    padding: 0;
    box-shadow: 0 4px 12px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    text-align: center;
}

.header-content {
    padding: 2rem;
    text-align: center;
    width: 100%;
    margin: 0 auto;
}

.site-logo {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

.site-tagline {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 1rem;
    text-align: center;
}

.year-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 2rem;
    border-radius: 30px;
    font-size: 2rem;
    font-weight: bold;
    margin-top: 1rem;
    border: 3px solid white;
    animation: pulse 2s infinite;
    text-align: center;
}

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

nav {
    background: var(--dark-blue);
    padding: 1rem 2rem;
    width: 100%;
    text-align: center;
}

.nav-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 0 auto;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

/* Main Content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
}

.page-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.page-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

#intro, #band-tour, #bands {
    text-align: center;
    margin-bottom: 2rem;
}

/* Band Directory */
.band-directory {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.band-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 8px var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
}

.band-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px var(--shadow);
}

.band-image-link {
    display: block;
    text-decoration: none;
}

.band-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--accent-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
    position: relative;
}

.band-image-link:hover .band-image {
    transform: scale(1.05);
}

.band-image img {
    width: 100%;
    height: 100%;
    max-width: 300px;
    max-height: 300px;
    object-fit: cover;
    display: block;
    object-position: center;
    margin: 0 auto;
}

.band-info {
    padding: 1.5rem;
}

.band-info h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.tour-name {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 0.5rem;
}

.concert-count {
    color: var(--secondary-blue);
    font-weight: bold;
    margin-bottom: 0.3rem;
}

.date-range {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.view-tour-btn {
    display: inline-block;
    background: var(--secondary-blue);
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.view-tour-btn:hover {
    background: var(--primary-blue);
}

/* Concert Cards */
.concerts-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.concert-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 16px var(--shadow);
    margin: 0 auto 2rem auto;
    max-width: 900px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.concert-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(30, 95, 153, 0.2);
}

.concert-header {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    border-bottom: 3px solid var(--accent-blue);
    align-items: center;
}

.concert-date-badge {
    background: white;
    color: var(--primary-blue);
    padding: 1.2rem;
    border-radius: 12px;
    text-align: center;
    min-width: 100px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border: 3px solid var(--accent-blue);
}

.date-month {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}

.date-day {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1;
    margin: 0.2rem 0;
}

.date-year {
    font-size: 1rem;
    font-weight: 600;
}

.concert-location h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.venue-name {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.venue-address {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
}

.concert-details {
    padding: 2rem;
    text-align: left;
}

.hotels-section h4 {
    color: var(--primary-blue);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--accent-blue);
    padding-bottom: 0.5rem;
}

.hotels-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.hotel-item {
    background: linear-gradient(135deg, #f8fbff 0%, var(--bg-light) 100%);
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid var(--accent-blue);
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(30, 95, 153, 0.1);
}

.hotel-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(30, 95, 153, 0.2);
    border-color: var(--secondary-blue);
}

.hotel-link {
    color: var(--secondary-blue);
    text-decoration: none;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.hotel-link:hover {
    color: var(--primary-blue);
}

.hotel-link::before {
    content: "🏨 ";
    margin-right: 0.3rem;
}

.hotel-distance {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
}

.hotel-distance::before {
    content: "📍 ";
    margin-right: 0.3rem;
}

/* Affiliate Promotions */
.affiliate-promo {
    margin: 2rem auto;
    padding: 2rem;
    border-radius: 12px;
    border: 2px dashed var(--border-color);
    text-align: center;
    max-width: 900px;
}

.omio-promo {
    background: linear-gradient(135deg, #e8f4f8 0%, #d4e9f2 100%);
    border-color: var(--accent-blue);
}

.loans-promo {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border-color: #ff9800;
}

.promo-content h4 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.promo-content p {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.affiliate-btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.affiliate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.omio-btn {
    background: var(--secondary-blue);
    color: white;
}

.loans-btn {
    background: #ff9800;
    color: white;
}

/* Footer */
.site-footer {
    background: var(--dark-blue);
    color: white;
    padding: 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.affiliate-disclaimer {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    text-align: center;
}

.footer-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

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

.copyright {
    margin-top: 1rem;
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .site-logo {
        font-size: 2rem;
    }
    
    .year-badge {
        font-size: 1.5rem;
        padding: 0.4rem 1.5rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .band-directory {
        grid-template-columns: 1fr;
    }
    
    .concert-header {
        flex-direction: column;
        text-align: center;
    }
    
    .concert-date-badge {
        margin: 0 auto;
    }
    
    .concert-location h3 {
        font-size: 1.5rem;
    }
    
    .hotels-list {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }
    
    .header-content {
        padding: 1rem;
    }
    
    nav {
        padding: 0.5rem 1rem;
    }
}

/* Loading State */
.loading {
    text-align: center;
    padding: 3rem;
    font-size: 1.2rem;
    color: var(--text-light);
}

.error {
    background: #ffebee;
    color: #c62828;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    margin: 2rem auto;
    max-width: 600px;
}
