.hero { position: relative; min-height: 92vh; display: flex; align-items: center; background: linear-gradient(135deg, rgba(15,27,45,0.88) 0%, rgba(26,43,69,0.82) 100%), url('/media/2026/03/1774457304524-hero.jpg') center/cover no-repeat; color: #ffffff; padding-top: 68px; } .hero-content { max-width: 720px; padding: 80px 0; } .hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; line-height: 1.2; margin-bottom: 24px; letter-spacing: -0.02em; } .hero-sub { font-size: clamp(1rem, 2.2vw, 1.25rem); line-height: 1.8; color: rgba(255,255,255,0.88); margin-bottom: 40px; } .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; } .about-img { border-radius: 12px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.12); } .about-img img { width: 100%; height: 400px; object-fit: cover; } .about-text p { margin-bottom: 20px; color: var(--gray-dark); font-size: 1.05rem; } .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 32px; } .service-card { background: var(--white); border-radius: 12px; padding: 40px 32px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); transition: transform 0.3s, box-shadow 0.3s; border: 1px solid rgba(0,0,0,0.04); } .service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); } .service-icon { width: 52px; height: 52px; border-radius: 10px; background: linear-gradient(135deg, var(--navy-light), var(--blue)); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; color: #ffffff; font-size: 1.25rem; font-weight: 700; letter-spacing: 0; } .service-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 14px; } .service-card p { color: var(--gray-dark); font-size: 0.98rem; line-height: 1.7; } .video-band { position: relative; height: 480px; overflow: hidden; } .video-band video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; } .video-band-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,27,45,0.55) 0%, rgba(26,43,69,0.35) 100%); display: flex; align-items: center; justify-content: center; } .video-band-text { color: #ffffff; text-align: center; padding: 24px; } .video-band-text p { font-size: clamp(1.2rem, 3vw, 1.8rem); font-weight: 700; letter-spacing: 0.02em; text-shadow: 0 2px 12px rgba(0,0,0,0.4); line-height: 1.4; } .subjects-list { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; } .subject-tag { background: var(--navy); color: var(--white); padding: 12px 24px; border-radius: 6px; font-size: 0.95rem; font-weight: 600; } .sample-section { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); color: #ffffff; text-align: center; } .sample-section .section-label { color: var(--gold); } .sample-section .section-title { color: #ffffff; } .sample-section .section-intro { color: rgba(255,255,255,0.8); margin-left: auto; margin-right: auto; } .dozenten-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; } .dozenten-img { border-radius: 12px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.12); } .dozenten-img img { width: 100%; height: 420px; object-fit: cover; } .dozenten-text p { margin-bottom: 20px; color: var(--gray-dark); font-size: 1.05rem; } .dozenten-text strong { color: var(--navy); } .locations-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 20px; margin-top: 40px; } .location-item { background: var(--white); border-radius: 10px; padding: 28px 20px; text-align: center; box-shadow: 0 2px 12px rgba(0,0,0,0.06); border: 1px solid rgba(0,0,0,0.04); transition: transform 0.2s; } .location-item:hover { transform: translateY(-2px); } .location-pin { font-size: 1.6rem; margin-bottom: 8px; display: block; color: var(--blue-accent); } .location-item span { font-weight: 600; color: var(--navy); font-size: 0.95rem; } .locations-note { margin-top: 32px; padding: 24px; background: var(--white); border-radius: 10px; border-left: 4px solid var(--gold); color: var(--gray-dark); font-size: 1rem; } .faq-list { max-width: 780px; } .faq-item { border-bottom: 1px solid var(--gray-light); padding: 28px 0; } .faq-item:first-child { border-top: 1px solid var(--gray-light); } .faq-question { font-size: 1.1rem; font-weight: 700; color: var(--navy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; background: none; border: none; width: 100%; text-align: left; font-family: var(--font); line-height: 1.5; padding: 0; } .faq-question::after { content: '+'; font-size: 1.5rem; font-weight: 300; color: var(--blue-accent); flex-shrink: 0; transition: transform 0.3s; } .faq-item.open .faq-question::after { content: '\2212'; } .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; } .faq-item.open .faq-answer { max-height: 400px; } .faq-answer p { padding-top: 16px; color: var(--gray-dark); font-size: 1rem; line-height: 1.7; } .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; } .contact-info h3 { font-size: 1.3rem; color: var(--navy); margin-bottom: 16px; } .contact-info p { color: var(--gray-dark); margin-bottom: 24px; font-size: 1.05rem; line-height: 1.8; } .contact-form { background: var(--white); padding: 40px; border-radius: 12px; box-shadow: 0 8px 32px rgba(0,0,0,0.08); } .about-text p { color: #4a4a4a; font-size: 1.05rem; margin-bottom: 20px; } .dozenten-text p { color: #4a4a4a; font-size: 1.05rem; margin-bottom: 20px; } .dozenten-text strong { color: #0f1b2d; } .service-card h3 { color: #0f1b2d; } .service-card p { color: #4a4a4a; } .section-label { color: #3d6db5; } .section-title { color: #0f1b2d; } .hero h1 { color: #ffffff; } .hero-sub p { color: rgba(255,255,255,0.88); } .contact-info p { color: #4a4a4a; } .faq-question span { color: #0f1b2d; } .faq-answer p { color: #4a4a4a; } .locations-note { color: #4a4a4a; } .location-item span { color: #0f1b2d; font-weight: 600; } .subject-tag { background: #0f1b2d; color: #ffffff; } .contact-form { background: #ffffff; } .btn-submit { background: #0f1b2d; color: #ffffff; } .btn-submit:hover { background: #2c4a7c; }