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

body {
    font-family: 'Oswald', sans-serif;
    background-color: white;
    color: black;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    padding: 3rem 2rem 2rem;
    text-align: center;
}

header h1 {
    font-family: 'Paytone One', sans-serif;
    font-weight: 400;
    font-size: 5.25rem;
    letter-spacing: -0.5px;
    line-height: 0.92;
    transform: scaleY(1.65);
    transform-origin: top center;
    color: white;
    background-color: #333;
    padding: 0.3rem 1rem;
    display: inline-block;
}

main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.hero {
    text-align: center;
    max-width: 600px;
}

.hero h2 {
    font-family: 'Paytone One', sans-serif;
    font-weight: 400;
    font-size: 1.35rem;
    margin-bottom: 2rem;
    margin-top: 0.5rem;
    letter-spacing: -0.25px;
    line-height: 0.92;
    transform: scaleY(1.65);
    transform-origin: center;
    color: white;
    background-color: #333;
    padding: 0.15rem 0.5rem;
    display: inline-block;
}

.artist-image {
    margin: 2rem 0;
}

#artist-photo {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid black;
}

.booking-info {
    font-weight: 200;
    font-size: 1.2rem;
    margin-top: 1rem;
}

.social-links {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-link {
    color: black;
    font-size: 1.5rem;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.social-link:hover {
    opacity: 0.7;
}

.contact-section {
    margin: 2rem 0;
}

.contact-btn {
    display: inline-block;
    background-color: black;
    color: white;
    border: none;
    padding: 12px 30px;
    font-family: 'Oswald', sans-serif;
    font-weight: 200;
    font-size: 1rem;
    letter-spacing: 1px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.contact-btn:hover {
    background-color: #333;
}

/* Impressum styles */
.impressum-content {
    max-width: 800px;
    width: 100%;
    text-align: left;
}

.impressum-content h2 {
    font-weight: 500;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: 1px;
}

.impressum-section {
    margin-bottom: 2rem;
}

.impressum-section h3 {
    font-weight: 500;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.impressum-section p {
    font-weight: 200;
    font-size: 1rem;
    line-height: 1.7;
}

footer {
    padding: 1rem;
    text-align: center;
    border-top: 1px solid #eee;
}

.impressum-link {
    font-weight: 200;
    font-size: 0.9rem;
    color: black;
    text-decoration: none;
    letter-spacing: 1px;
}

.impressum-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    header h1 {
        font-size: 3.25rem;
    }
    
    .hero h2 {
        font-size: 1.15rem;
    }
    
    #artist-photo {
        width: 250px;
        height: 250px;
    }
    
    .social-links {
        gap: 1rem;
    }
    
    .social-link {
        font-size: 1.3rem;
    }
    
    .impressum-content h2 {
        font-size: 2rem;
    }
    
    .impressum-section h3 {
        font-size: 1.1rem;
    }
    
    .impressum-section p {
        font-size: 0.9rem;
    }
} 