@font-face { font-family: 'Ahsing'; src: url('typogama-ahsing.otf') format('opentype'); font-weight: normal; font-style: normal; font-display: swap; } :root { --pink: #d63f8c; --pink-light: #e85fa8; --pink-dark: #a02870; --black: #0a0a0a; --dark: #111111; --dark-2: #1a1a1a; --white: #f5f0ec; --grey: #888; } *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; } html { scroll-behavior: smooth; } body { background: var(--black); color: var(--white); font-family: 'Inter', sans-serif; font-weight: 300; overflow-x: hidden; } /* ── NAV ── */ nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 1.2rem 3rem; background: rgba(10, 10, 10, 0.85); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(214, 63, 140, 0.15); transition: padding 0.3s; } nav.scrolled { padding: 0.8rem 3rem; } .nav-logo img { height: 38px; filter: brightness(1); } .nav-links { display: flex; gap: 2.2rem; list-style: none; } .nav-links a { color: var(--white); text-decoration: none; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.75; transition: opacity 0.2s, color 0.2s; } .nav-links a:hover { opacity: 1; color: var(--pink-light); } .nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; } .nav-burger span { display: block; width: 26px; height: 2px; background: var(--white); transition: transform 0.3s, opacity 0.3s; } .nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); } .nav-burger.open span:nth-child(2) { opacity: 0; } .nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); } .mobile-menu { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--black); z-index: 99; flex-direction: column; align-items: center; justify-content: center; gap: 2.5rem; } .mobile-menu.open { display: flex; } .mobile-menu a { font-family: 'Ahsing', serif; font-size: 2.2rem; color: var(--white); text-decoration: none; font-style: italic; transition: color 0.2s; } .mobile-menu a:hover { color: var(--pink); } /* ── HERO ── */ #hero { position: relative; height: 100vh; min-height: 600px; display: flex; align-items: flex-end; padding: 0 3rem 5rem; overflow: hidden; } .hero-bg { position: absolute; inset: 0; background-image: url('../images/Hester Parkhaus Querformat.jpg'); background-size: cover; background-position: center 20%; filter: brightness(0.4); transform: scale(1.04); transition: transform 8s ease-out; } .hero-bg.loaded { transform: scale(1); } .hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.3) 50%, transparent 100%); } .hero-content { position: relative; z-index: 2; max-width: 860px; } .hero-tag { display: inline-block; font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--pink); margin-bottom: 1.2rem; border: 1px solid var(--pink-dark); padding: 0.35rem 0.9rem; border-radius: 2px; } .hero-title { font-family: 'Ahsing', serif; font-size: clamp(4rem, 12vw, 10rem); font-weight: 900; line-height: 0.92; color: var(--white); letter-spacing: -0.02em; } .hero-title em { font-style: italic; color: var(--pink); } .hero-sub { margin-top: 1.8rem; font-size: 1.05rem; color: rgba(245, 240, 236, 0.65); max-width: 480px; line-height: 1.6; } .hero-cta { display: inline-flex; align-items: center; gap: 0.6rem; margin-top: 2.4rem; padding: 0.85rem 2.2rem; background: var(--pink); color: var(--white); text-decoration: none; font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 500; transition: background 0.25s, transform 0.2s; } .hero-cta:hover { background: var(--pink-dark); transform: translateY(-2px); } .hero-cta svg { width: 16px; height: 16px; } .scroll-hint { position: absolute; bottom: 2.2rem; right: 3rem; display: flex; align-items: center; gap: 0.7rem; font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(245, 240, 236, 0.4); writing-mode: vertical-lr; } .scroll-hint::before { content: ''; width: 1px; height: 60px; background: linear-gradient(to bottom, var(--pink), transparent); display: block; } /* ── SECTION COMMONS ── */ section { padding: 7rem 3rem; } .section-label { font-size: 0.68rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--pink); margin-bottom: 0.8rem; } .section-title { font-family: 'Ahsing', serif; font-size: clamp(2.8rem, 7vw, 6rem); font-weight: 900; line-height: 1; font-style: italic; } .divider { width: 60px; height: 2px; background: var(--pink); margin: 2rem 0; } /* ── ÜBER UNS ── */ #ueber { background: var(--dark); position: relative; overflow: hidden; } .ueber-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; max-width: 1200px; margin: 0 auto; } .ueber-text p { color: rgba(245, 240, 236, 0.7); line-height: 1.85; font-size: 1rem; margin-bottom: 1.4rem; } .ueber-text p:last-child { margin-bottom: 0; } .ueber-images { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; justify-items: start; } .ueber-images img { width: 100%; aspect-ratio: 3/4; object-fit: cover; filter: grayscale(20%); transition: filter 0.4s, transform 0.4s; } .ueber-images img:hover { filter: grayscale(0%); transform: scale(1.02); } .ueber-images .img-tall { grid-row: span 2; aspect-ratio: auto; height: 100%; justify-self: start; } /* ── KONZERTE ── */ #konzerte { background: var(--black); } .konzerte-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; } .concert-list { margin-top: 3rem; display: flex; flex-direction: column; gap: 0; } .concert-item { display: flex; align-items: baseline; gap: 2rem; padding: 1.4rem 0; border-bottom: 1px solid rgba(255, 255, 255, 0.07); transition: border-color 0.2s; } .concert-item:first-child { border-top: 1px solid rgba(255, 255, 255, 0.07); } .concert-item:hover { border-color: var(--pink-dark); } .concert-date { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--pink); min-width: 80px; font-style: italic; } .concert-name { font-size: 1.05rem; color: var(--white); font-weight: 400; } .konzerte-img { position: sticky; top: 120px; } .konzerte-img img { width: 100%; aspect-ratio: 3/4; object-fit: cover; } .past-year { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--pink); margin-top: 2rem; margin-bottom: 0.5rem; letter-spacing: 0.05em; } .past-year:first-of-type { margin-top: 0; } /* ── PRESSETEXT ── */ #presse { background: var(--dark); overflow: hidden; position: relative; } .presse-inner { max-width: 1200px; margin: 0 auto; } .presse-header { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end; margin-bottom: 5rem; } .presse-lead { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 3.5vw, 2.8rem); font-weight: 700; font-style: italic; line-height: 1.2; color: var(--white); } .presse-lead em { color: var(--pink); font-style: normal; } .presse-body p { color: rgba(245, 240, 236, 0.65); font-size: 1rem; line-height: 1.85; margin-bottom: 1.2rem; } .presse-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 2rem; } .pillar { background: var(--dark-2); padding: 2.5rem 2rem; position: relative; overflow: hidden; } .pillar::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 0; background: var(--pink); transition: height 0.4s; } .pillar:hover::before { height: 100%; } .pillar-title { font-family: 'Playfair Display', serif; font-size: 1.35rem; font-style: italic; font-weight: 700; color: var(--white); margin-bottom: 1rem; } .pillar p { font-size: 0.9rem; color: rgba(245, 240, 236, 0.6); line-height: 1.75; } /* ── BESETZUNG ── */ #besetzung { background: var(--black); } .besetzung-inner { max-width: 1200px; margin: 0 auto; } .besetzung-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 4rem; flex-wrap: wrap; gap: 1rem; } .member-count { font-size: 5rem; font-family: 'Playfair Display', serif; font-weight: 900; color: var(--pink); line-height: 1; opacity: 0.25; } .besetzung-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3rem 2rem; } .section-group h4 { font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--pink); margin-bottom: 1.2rem; padding-bottom: 0.6rem; border-bottom: 1px solid rgba(214, 63, 140, 0.3); } .section-group ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; } .section-group ul li { font-size: 0.9rem; color: rgba(245, 240, 236, 0.7); line-height: 1.4; } .section-group ul li strong { color: var(--white); font-weight: 500; display: block; font-size: 0.82rem; } /* ── GALLERY STRIP ── */ .gallery-strip { display: flex; gap: 0.6rem; overflow-x: auto; padding: 0 3rem 2rem; scrollbar-width: none; } .gallery-strip::-webkit-scrollbar { display: none; } .gallery-strip img { height: 280px; width: auto; flex-shrink: 0; object-fit: cover; filter: saturate(80%); transition: filter 0.3s, transform 0.3s; cursor: pointer; } .gallery-strip img:hover { filter: saturate(100%); transform: scale(1.02); } /* ── CONTACT ── */ #kontakt { background: var(--dark); text-align: center; padding: 8rem 3rem; } .kontakt-inner { max-width: 700px; margin: 0 auto; } .kontakt-inner .section-title { margin-bottom: 1.5rem; } .kontakt-inner p { color: rgba(245, 240, 236, 0.6); font-size: 1rem; line-height: 1.7; margin-bottom: 3rem; } .contact-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; margin-bottom: 3rem; } .contact-link { display: flex; flex-direction: column; align-items: center; gap: 0.4rem; text-decoration: none; transition: transform 0.2s; } .contact-link:hover { transform: translateY(-3px); } .contact-link-label { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--pink); } .contact-link-value { font-size: 1rem; color: var(--white); } .big-email { display: inline-block; font-family: 'Playfair Display', serif; font-size: clamp(1.3rem, 3.5vw, 2.2rem); font-style: italic; color: var(--white); text-decoration: none; border-bottom: 2px solid var(--pink); padding-bottom: 0.2rem; transition: color 0.2s, border-color 0.2s; } .big-email:hover { color: var(--pink); } /* ── FOOTER ── */ footer { background: var(--black); border-top: 1px solid rgba(255, 255, 255, 0.06); padding: 2rem 3rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; } footer img { height: 28px; opacity: 0.6; } footer p { font-size: 0.72rem; color: rgba(245, 240, 236, 0.3); letter-spacing: 0.05em; } /* ── LIGHTBOX ── */ .lightbox { display: none; position: fixed; inset: 0; background: rgba(0, 0, 0, 0.95); z-index: 200; align-items: center; justify-content: center; } .lightbox.open { display: flex; } .lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; } .lightbox-close { position: absolute; top: 1.5rem; right: 2rem; font-size: 2rem; color: var(--white); cursor: pointer; opacity: 0.7; background: none; border: none; line-height: 1; } .lightbox-close:hover { opacity: 1; color: var(--pink); } /* ── FADE IN ── */ .fade-in { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; } .fade-in.visible { opacity: 1; transform: none; } /* ── RESPONSIVE ── */ @media (max-width: 900px) { nav { padding: 1rem 1.5rem; } .nav-links { display: none; } .nav-burger { display: flex; } #hero { padding: 0 1.5rem 4rem; } section { padding: 5rem 1.5rem; } .ueber-grid { grid-template-columns: 1fr; gap: 3rem; } .ueber-images { display: grid; grid-template-columns: 1fr 1fr; } .img-tall { grid-row: span 1; aspect-ratio: 3/4; height: auto; } .konzerte-inner { grid-template-columns: 1fr; gap: 3rem; } .konzerte-img { display: none; } .presse-header { grid-template-columns: 1fr; gap: 2rem; } .presse-pillars { grid-template-columns: 1fr; gap: 2px; } .besetzung-grid { grid-template-columns: 1fr 1fr; gap: 2rem 1.5rem; } .gallery-strip { padding: 0 1.5rem 2rem; } .gallery-strip img { height: 200px; } footer { flex-direction: column; align-items: flex-start; padding: 2rem 1.5rem; } } @media (max-width: 560px) { .hero-title { font-size: clamp(3rem, 15vw, 5rem); } .ueber-images { grid-template-columns: 1fr; } .besetzung-grid { grid-template-columns: 1fr; } .contact-links { flex-direction: column; align-items: center; } }