html {
    font-size: 16px;
}
body {
    font-family: Arial, sans-serif;
    text-align: center;
    padding: 24px;
    background-color: #f4f4f4;
}
.btn, .btn-secondary {
    max-width: 220px;
    width: calc(100% - 60px);
}
.container {
    position: relative;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: inline-block;
}
.max-width-500 {
    max-width: 500px;
}
h1, h2 {
    color: #333;
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 1rem 0;
}
p {
    color: #666;
    margin: 0 0 1rem 0;
}
.btn {
    display: inline-block;
    margin-bottom: 1rem;
    padding: .75rem 1.5rem;
    
    border: 2px solid;
    border-color: #487d8e;
    border-radius: 5px;

    color: white;
    background-color: #487d8e;
    text-decoration: none;
    cursor: pointer;
}
.btn:hover {
    background-color: #3e6a78;
    border-color: #3e6a78;
}
.btn-secondary {
    display: inline-block;
    margin-bottom: 1rem;
    padding: .75rem 1.5rem;
    
    border: 2px solid;
    border-color: #487d8e;
    border-radius: 5px;
    
    color: #487d8e;
    text-decoration: none;
    cursor: pointer;
}
.btn-secondary:hover {
    background-color: #eee;
    border-color: #3e6a78;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    border: 0;
}
.logo {
    display: inline-block;
    max-height: 30px;
    margin: .4em 0 .4em 1em;
    max-width: calc(100% - 1em);
}
.logo-container {
    margin: .6em 0 .6em -1em;
}

.event-image {
    display: inline-block;
    width: 400px;
    margin-bottom: 1em;
    margin-top: 1em;
    max-width: 100%;
}
.info {
    margin-top: -0.5rem;
    font-size: 0.8rem;
}

/* Line-Up Seite Styles */
.container.lineup-page {
    max-width: 900px;
    width: 100%;
    text-align: left;
}

.lineup-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.artist-card {
    display: flex;
    flex-direction: column;
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.artist-card:hover {
    transform: translateY(-5px);
}

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

.artist-info {
    padding: 1.5rem;
}

.artist-info h3 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.artist-info p {
    font-size: 0.95rem;
    line-height: 1.5;
}

.artist-link {
    color: #487d8e;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.2s ease;
}

.artist-link:hover {
    color: #3e6a78;
    text-decoration: underline;
}

.back-to-home {
    margin-top: 2rem;
    text-align: center;
}

/* Responsive Design für größere Bildschirme */
@media (min-width: 768px) {
    .lineup-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .container {
        padding: 15px;
        width: 90%;
    }
    
    .artist-card {
        margin-bottom: 1.5rem;
    }
}
