body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fafafa;
    background-image: url('../assets/sheet-music-background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: #2c2c2c;
    min-height: 100vh;
}

header {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 20px;
    position: sticky;
    top: 0;
    z-index: 100;
}

header nav h1 {
    margin: 0;
    font-size: 3em;
    color: #c49484;
    text-align: center;
    font-family: "Limelight", sans-serif;
    font-weight: 400;
    font-style: normal;
}

/* Hero Section */
#hero {
    background: linear-gradient(135deg, rgba(255, 215, 203, 0.8), rgba(196, 148, 132, 0.8));
    color: white;
    padding: 80px 20px;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-content h2 {
    font-size: 3.5em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: white;
}

.hero-content p {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-button {
    display: inline-block;
    background-color: #fff;
    color: #c49484;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1em;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

main {
    padding: 40px 0;
}

section {
    padding: 30px;
    margin: 20px auto;
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

section h2 {
    color: #c49484;
    font-size: 2.2em;
    margin-bottom: 25px;
    text-align: center;
}

/* Service listings */
#services ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

#services li {
    background: rgba(255, 215, 203, 0.25);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #c49484;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    height: auto;
}

#services li h3 {
    color: #8b5a47;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.4em;
}

#services li p {
    margin-bottom: 10px;
    color: #2c2c2c;
    line-height: 1.5;
}

#services li p.price {
    margin-top: auto;
    margin-bottom: 0;
    font-weight: bold;
    color: #8b5a47;
    font-size: 1.1em;
    padding-top: 15px;
    border-top: 1px solid rgba(139, 90, 71, 0.2);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    #services ul {
        grid-template-columns: 1fr;
    }
    
    #services li {
        margin-bottom: 0;
    }
}

/* Contact and other sections */
#qualifications, #contact {
    text-align: center;
}

#contact a {
    color: #c49484;
    text-decoration: none;
    font-weight: bold;
}

#contact a:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    padding: 30px 20px;
    background: rgba(196, 148, 132, 0.85);
    backdrop-filter: blur(10px);
    color: white;
    margin-top: 40px;
}

footer .attribution {
    font-size: 0.85em;
    margin-top: 10px;
    opacity: 0.8;
}

footer .attribution a {
    color: #ffd7cb;
    text-decoration: none;
}

footer .attribution a:hover {
    text-decoration: underline;
    color: #ffe8e0;
}