body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #fde8f1;
    color: #111;
}
.header {
    background: #111;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.25);
}
.nav {
    display: flex;
    gap: 12px;
    background: rgba(255, 255, 255, 0.08);
    padding: 8px;
    border-radius: 30px;
}
.nav a {
    color: black;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}
.nav a:hover {
    background: #ff4fa3;
    color: white;
    transform: translateY(-2px);
}
.nav a.active{
    background: #ff4fa3;
    color: white;
    box-shadow: 0 0 10px rgba(255, 79, 163, 0.4);
}
.container {
    padding: 60px;
    text-align: center;
}
.coming-soon {
    margin-top: 20px;
    font-size: 18px;
    color: #555;
    background: rgba(255, 79, 163, 0.1);
    padding: 15px 20px;
    border-left: 4px solid #ff4fa3;
    border-radius: 8px;
    display: inline-block;
}
.hero {
    max-width: 1200px;
    margin: 50px auto;
    padding: 30px;
}
.hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
}
.hero-image img {
    width: 100%;
    max-width: 350px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}
.hero-text {
    flex: 2;
    line-height: 1.8;
}
.hero h1{
    color: #111;
}
.subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 20px;
}
.slogan {
    margin-top: 25px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #ff4fa3;
}
.preview-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 20px;
    display: flex;
    gap: 30px;
}
.preview-card {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.preview-card h2 {
    margin-top: 0;
    color: #111;
}
.preview-card p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
}
.btn {
    display: inline-block;
    background: #ff4fa3;
    color: white;
    text-decoration: none;
    padding: 12px 22px;
    border-radius: 30px;
    font-weight: bold;
    transition: 0.3s;
}
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(255, 79, 163, 0.4);
}
.teacher {
    max-width: 1200px;
    margin: 60px auto;
    padding: 30px;
    display: flex;
    gap: 40px;
    align-items: center;
}
.teacher-image {
    flex: 1;
}
.teacher-image img {
    width: 100%;
    max-width: 350px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.teacher-content {
    flex: 2;
}
.teacher-content h1 {
    margin-top: 0;
    color: #111;
}
.teacher-content h3 {
    color: #ff4fa3;
    margin-bottom: 25px;
}
.teacher-content p {
    line-height: 1.8;
    margin-bottom: 20px;
}
.teacher-content ul {
    line-height: 1.8;
}
.teacher-content blockquote {
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 79, 163, 0.1);
    border-left: 4px solid #ff4fa3;
    border-radius: 10px;
    font-style: italic;
}
.contact {
    max-width: 1200px;
    margin: 60px auto;
    padding: 30px;
    display: flex;
    gap: 40px;
    align-items: center;
}
.contact-info {
    flex: 1;
}
.contact-map {
    flex: 1;
}
.contact-map iframe {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.courses {
    max-width: 1200px;
    margin: 60px auto;
    padding: 30px;
}
.courses-header {
    text-align: center;
    margin-bottom: 50px;
}
.courses-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}
.courses-header p {
    max-width: 800px;
    margin: 0 auto;
    color: #555;
    line-height: 1.8;
}
.courses h2 {
    margin-top: 50px;
    margin-bottom: 25px;
    color: #111;
    border-left: 5px solid #ff4fa3;
    padding-left: 15px;
}
.courses-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.courses-grid.two-columns {
    grid-template-columns: repeat(2, 1fr);
}
.course-card {
    background: white;
    padding: 28px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
    transition: 0.3s;
}
.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}
.course-card h3 {
    color: #ff4fa3;
    margin-top: 0;
}
.course-card p {
    color: #555;
    line-height: 1.7;
}
.courses-cta {
    margin-top: 60px;
    padding: 40px;
    background: white;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.footer {
    background-color: #f3d8e4;
    color: #111;
    margin-top: 80px;
    padding: 40px 30px 20px;
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}
.footer h3 {
    color: #ff4fa3;
    margin-bottom: 15px;
}
footer p {
    line-height: 1.7;
    color: #444;
}
.footer a {
    display: block;
    color: #333;
    text-decoration: none;
    margin-bottom: 10px;
    transition: 0.3s;
}
.footer a:hover {
    color:#ff4fa3
}
.footer-bottom {
    max-width: 1200px;
    margin: 30px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
    color: #666;
}
@media (max-width: 768px){
    .header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    .hero-content,
    .teacher,
    .contact {
        flex-direction: column;
        text-align: center;
    }
    .preview-section {
        flex-direction: column;
    }
    .courses-grid,
    .courses-grid.two-columns {
        grid-template-columns: 1fr;
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .hero-image img,
    .teacher-image img {
        max-width: 100%;
    }
    .why-grid {
        grid-template-columns: 1fr;
    }
}
.about {
    max-width: 1200px;
    margin: 60px auto;
    padding: 30px;
    display: flex;
    gap: 40px;
    align-items: center;
}
.about-content {
    flex: 2;
}
.about-image {
    flex: 1;
}
.about-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.about h1 {
    margin-top: 0;
}
.about p {
    line-height: 1.9;
    color: #444;
}
.about blockquote {
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 79, 163, 0.1);
    border-left: 4px solid #ff4fa3;
    border-radius: 10px;
    font-style: italic;
}
.why-uns {
    max-width: 1200px;
    margin: 80px;
    padding: 30px;
    text-align: center;
}
.why-uns h2 {
    margin: 40px;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.why-card {
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}
.why-card:hover {
    transform: translateY(-5px);
}
.why-card h3 {
    color: #ff4fa3;
}
.why-card p {
    color: #555;
    line-height: 1.7;
}
.media-page {
    max-width: 1000px;
    margin: 60px auto;
    padding: 30px;
    text-align: center;
}
.media-header {
    margin-bottom: 40px;
}
.media-header h1 {
    margin-bottom: 15px;
}
.media-header p {
    color: #555;
    line-height: 1.8;
}
.slideshow {
    position: relative;
    width: 100%;
    max-width: 950px;
    height: 450px;
    margin: 0 auto;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
    background: #fde8f1;
}
.slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 1s ease;
}
.slide.active {
    opacity: 1;
}
.slide-indicators {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
}
.indicator {
    width: 12px;
    height: 12px;
    background: #ddd;
    border-radius: 50%;
    display: inline-block;
    transition: 0.3s;
}
.indicator.active-indicator {
    background: #ff4fa3;
    transform: scale(1.2);
}
.slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    color: #111;
    border: none;
    font-size: 28px;
    cursor: pointer;
    z-index: 5;
    transition: 0.3s;
}
.slide-btn:hover {
    background: #ff4fa3;
    color: white;
}
.prev {
    left: 15px;
}
.next {
    right: 15px;
}
.indicator {
    cursor: pointer;
}
.legal-page {
    max-width: 1000px;
    margin: 60px auto;
    padding: 30px;
}
.legal-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.legal-card h1 {
    text-align: center;
    margin-top: 0;
    margin-bottom: 35px;
}
.legal-card h2 {
    color: #ff4fa3;
    margin-top: 30px;
}
.legal-card p {
    line-height: 1.8;
    color: #444;
}
.logo {
    display: flex;
    align-items: center;
    gap: 30px;
}
.logo img {
    width: 250px;
    height: auto;
}
.logo h1 {
    margin: 0;
    font-size: 3.5rem;
    color: black;
}
.kunst,
.forschung {
    max-width: 1100px;
    margin: 60px auto;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.kunst {
    text-align: center;
}
.kunst img {
    width: 100%;
    max-width: 700px;
    border-radius: 15px;
    margin-bottom: 30px;
}
.kunst h1,
.forschung h1 {
    color: #111;
    margin-bottom: 15px;
}
.kunst h3 {
    color: #ff4fa3;
    margin-bottom: 25px;
    font-size: 1.5rem;
}
.kunst p {
    line-height: 1.9;
    color: #444;
    max-width: 800px;
    margin: 15px auto;
}
.forschung ul {
    line-height: 2;
    color: #444;
    padding-left: 25px;
}
.forschung li {
    margin-bottom: 12px;
}
.forschung p {
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 79, 163, 0.1);
    border-left: 4px solid #ff4fa3;
    border-radius: 10px;
    font-style: italic;
    text-align: center;
}
.forschung img {
    width: 100%;
    max-width: 700px;
    display: block;
    margin: 40px auto 0;
    border-radius: 15px;
}
.new-music-section {
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, #ffffff, #fde8f1);
    border-radius: 25px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-left: 6px solid #ff4fa3;
}
.new-music-section h2 {
    color: #ff4fa3;
    margin-bottom: 25px;
}
.new-music-section p {
    max-width: 850px;
    margin: 15px auto;
    line-height: 1.8;
    color: #444;
}