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

body {
    font-family: 'Petrona', Georgia, serif;
    line-height: 1.6;
    color: #333;
    background: #fafafa;
    padding: 2rem 1rem;
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

header {
    text-align: center;
    margin-bottom: 3rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.tagline {
    color: #666;
    font-size: 1.1rem;
}

.tagline a {
    color: #666;
    text-decoration: none;
}

.tagline a:hover {
    text-decoration: underline;
}

.music-section {
    margin-bottom: 3rem;
}

.player {
    margin-bottom: 2rem;
    background: white;
    padding: 1rem;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.player h2 {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #444;
}

.links {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid #eee;
    font-size: 0.9rem;
}

.links a {
    color: #0066cc;
    text-decoration: none;
    margin-right: 1rem;
}

.links a:hover {
    text-decoration: underline;
}

.about-content {
    background: white;
    padding: 2rem;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 3rem;
}

.about-image {
    max-width: 250px;
    width: 100%;
    height: auto;
    margin: 0 1.5rem 1rem 0;
    float: left;
    border-radius: 4px;
}

.about-content p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.about-content a {
    color: #0066cc;
    text-decoration: none;
}

.about-content a:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #ddd;
    color: #666;
    font-size: 0.9rem;
}

footer a {
    color: #0066cc;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive iframe wrapper */
.iframe-wrapper {
    position: relative;
    overflow: hidden;
    padding-top: 120px; /* Adjust based on Bandcamp player height */
}

.iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
