:root {
    --soft-lavender: #f3f0ff;
    --light-rose: #fff5f7;
    --pale-mint: #f0fff4;
    --cream: #fffef7;
    --soft-blue: #f0f8ff;

    --text-dark: #2d3748;
    --text-light: #4a5568;
    --text-muted: #718096;

    --accent-lavender: #9f7aea;
    --accent-rose: #ed64a6;
    --accent-sage: #68d391;

    --border-light: #e2e8f0;
    --shadow-soft: rgba(159, 122, 234, 0.08);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    background: linear-gradient(135deg, var(--soft-lavender) 0%, var(--light-rose) 50%, var(--pale-mint) 100%);
    color: var(--text-dark);
    line-height: 1.7;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
    position: relative;
}

header::after {
    content: '♪';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 24px;
    color: var(--accent-lavender);
    opacity: 0.3;
}

header .header-content {
    padding: 30px 0;
    text-align: center;
}

h1.site-title {
    font-size: 2.2em;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 300;
    letter-spacing: -0.5px;
}

.tagline {
    color: var(--text-light);
    font-size: 1.1em;
    font-weight: 300;
}

/* Navigation */
nav {
    margin-top: 25px;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 0;
    flex-wrap: wrap;
}

nav a {
    color: var(--text-light);
    text-decoration: none;
    padding: 12px 0;
    position: relative;
    font-weight: 400;
    transition: color 0.3s ease;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-lavender);
    transition: width 0.3s ease;
}

nav a:hover,
nav a.active {
    color: var(--text-dark);
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

/* Main content */
main {
    padding: 50px 0;
}

.content {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 8px 32px var(--shadow-soft);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.content h1 {
    color: var(--text-dark);
    margin-bottom: 30px;
    font-size: 2.2em;
    font-weight: 300;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

.content h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-lavender), var(--accent-rose));
}

.content h2 {
    color: var(--text-dark);
    margin: 35px 0 20px;
    font-size: 1.6em;
    font-weight: 400;
}

.content h3 {
    color: var(--text-light);
    margin: 25px 0 15px;
    font-size: 1.2em;
    font-weight: 500;
}

.content p {
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.8;
}

.content ul,
.content ol {
    margin: 20px 0 20px 30px;
}

.content li {
    margin-bottom: 10px;
    color: var(--text-light);
}

/* Services grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.service-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-lavender), var(--accent-rose), var(--accent-sage));
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-soft);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.95);
}

.service-card .service-icon {
    font-size: 2.2em;
    margin-bottom: 20px;
    display: block;
}

.service-card h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1.2em;
    font-weight: 500;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95em;
    line-height: 1.6;
}

/* Decorative elements */
.musical-decoration {
    position: fixed;
    font-size: 18px;
    color: var(--accent-lavender);
    opacity: 0.1;
    pointer-events: none;
}

.note-1 { top: 20%; left: 5%; color: var(--accent-lavender); }
.note-2 { top: 60%; right: 8%; color: var(--accent-rose); }
.note-3 { bottom: 30%; left: 10%; color: var(--accent-sage); }

/* Footer */
footer {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    color: var(--text-light);
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid var(--border-light);
}

footer a {
    color: var(--accent-lavender);
    text-decoration: none;
}

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

/* Responsive design */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        gap: 20px;
    }

    .content {
        padding: 30px 20px;
        border-radius: 15px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 25px;
    }

    h1.site-title {
        font-size: 1.8em;
    }

    .content h1 {
        font-size: 1.8em;
    }

    .musical-decoration {
        display: none;
    }

    header::after {
        display: none;
    }
}