@font-face {
    font-family: "Work Sans";
    src: url("assets/fonts/WorkSans-VariableFont.woff2") format("woff2");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Montserrat";
    src: url("assets/fonts/Montserrat-VariableFont.woff2") format("woff2");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --g: #284C43;
    --bg: #F5F2E8;
    --m: #DBF1FF;
    --t: #1E1E1E;
    --w: #fff;

    --container: 1280px;

    --sh1: 0 6px 18px rgba(0, 0, 0, .12);
    --sh2: 0 10px 30px rgba(0, 0, 0, .16);

    --s1: .5rem;
    --s2: 1rem;
    --s3: 1.5rem;
    --s4: 2rem;
    --s6: 3rem;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Work Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: var(--t);
    background: var(--bg);
}

img,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
    border: 0;
    background: none;
}

.full-bleed {
    width: 100%;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--s2);
}

h1,
h2,
h3 {
    line-height: 1.15;
    margin: 0 0 var(--s2);
    font-weight: 700;
}

p {
    margin: 0 0 var(--s2);
}

.member-only[hidden] {
    display: none !important;
}

.site-header {
    background-color: var(--g);
    color: var(--w);
    box-shadow: var(--sh1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: clamp(0.75rem, 2.5vw, var(--s2)) 0;
}

.brand {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: clamp(1.35rem, 4.5vw, 2.25rem);
    text-decoration: none;
    color: var(--w);
    line-height: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    padding-left: var(--s1);
}

.nav-actions {
    display: flex;
    align-items: center;
}

.icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.icon-btn img {
    width: clamp(1.6rem, 4vw, 2.25rem);
    height: auto;
}

.menu-overlay {
    position: fixed;
    inset: 0;
    background-color: var(--g);
    color: var(--w);
    padding: var(--s4) var(--s2);
    z-index: 200;
}

.menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-list li {
    margin-bottom: var(--s3);
}

.menu-list a {
    color: var(--w);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: var(--s1);
}

.menu-list img {
    width: 2rem;
    height: auto;
}

.menu-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.menu-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--s3);
}

.menu-list li {
    margin: 0;
}

.menu-overlay[hidden] {
    display: none !important;
}

.login-overlay {
    width: 100%;
    max-width: none;
    height: 100%;
    border: 0;
    padding: 0;
    margin: 0;
    background: var(--g);
    color: var(--w);
}

.login-overlay::backdrop {
    background: var(--g);
}

.login-panel {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: var(--s4) var(--s2);
}

.login-form {
    width: min(520px, 100%);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

.login-form fieldset {
    border: 0;
    padding: 0;
    margin: 0;
}

.login-intro {
    margin: 0 0 var(--s4);
    line-height: 1.5;
}

.login-form label {
    display: block;
    margin-top: var(--s3);
    font-weight: 700;
}

.login-form input {
    width: 100%;
    border: 0;
    padding: 1rem;
    background: var(--m);
    color: var(--t);
}

.login-error {
    margin-top: var(--s2);
    font-weight: 700;
    color: #FED6D6;
}

.login-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s2);
    margin-top: var(--s3);
}

.btn {
    border: 0;
    padding: 1rem;
    font-weight: 700;
    background: var(--m);
    color: var(--t);
    box-shadow: var(--sh1);
}

.btn-ghost {
    background: var(--bg);
    color: var(--t);
}

.btn.btn-light {
    background: var(--bg);
    color: var(--t);
}

.btn.btn-light:hover,
.btn.btn-light:focus-visible {
    background: var(--g);
    color: var(--w);
    outline: 2px solid var(--w);
    outline-offset: 3px;
}

.btn.btn-green {
    background: var(--g);
    color: var(--w);
}

.btn.btn-green:hover,
.btn.btn-green:focus-visible {
    background: var(--g);
    color: var(--w);
    outline: 2px solid var(--w);
    outline-offset: 3px;
}

.login-note {
    margin-top: var(--s4);
    line-height: 1.5;
}

.hero {
    position: relative;
    min-height: 72vh;
    display: grid;
    align-items: center;
    overflow: hidden;
    color: var(--w);
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-inner {
    position: relative;
    z-index: 2;
    padding: var(--s6) 0;
    text-align: center;
    display: grid;
    gap: var(--s3);
    justify-items: center;
}

.hero-logo {
    width: 100px;
    height: auto;
    box-shadow: var(--sh1);
}

.hero-title {
    margin: 0;
    font-weight: 700;
    line-height: 1.1;
    text-shadow: 0 6px 18px rgba(0,0,0,.35);
    font-size: clamp(2rem, 6vw, 4rem);
}

.btn.hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.4rem;
    background: var(--bg);
    color: var(--t);
    text-decoration: none;
    box-shadow: var(--sh2);
}

@media (min-width: 900px) {
    .hero {
        min-height: 78vh;
    }

    .hero-logo {
        width: 130px;
    }
}

@media (min-width: 1280px) {
    .hero-inner {
        padding: 4rem 0;
        gap: 2rem;
    }
}

.member-welcome {
    background: var(--m);
    color: var(--t);
    padding: var(--s6) 0;
}

.member-welcome-inner {
    text-align: center;
    display: grid;
    gap: var(--s3);
    justify-items: center;
}

.member-icon img {
    width: 60px;
    height: auto;
}

.member-title {
    margin: 0;
}

.member-text {
    max-width: 62ch;
}

.member-actions{
    display: grid;
    gap: var(--s3); 
    width: 100%;
    justify-items: center;
  }

.member-actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;        
    padding: 0.9rem 2.4rem;      
    width: auto;                 
    min-width: 220px;            
  }
  
  .member-actions .btn.btn-green:hover,
  .member-actions .btn.btn-green:focus-visible {
    background: var(--bg);
    color: var(--t);
    outline: 2px solid var(--w);
    outline-offset: 3px;
  }

@media (min-width: 900px) {
    .member-actions {
        grid-template-columns: repeat(2, auto);
        justify-content: center;
        gap: var(--s3);
      }

      .member-icon img {
        width: 80px;
    }
}

.intro {
    background: var(--bg);
    padding: var(--s6) 0;
}

.intro-inner {
    display: grid;
    gap: var(--s4);
    align-items: center;
}

.intro-media img {
    width: 100%;
    height: auto;
}

@media (min-width: 900px) {
    .intro-inner {
        grid-template-columns: 1fr 1fr;
        gap: var(--s6);
    }
}

@media (min-width: 1280px) {
    .intro-inner {
        gap: 4rem;
    }
}

.parallax {
    min-height: 240px;
    padding: var(--s6) 0;
    display: grid;
    align-items: center;
    color: var(--w);
    background-image: var(--img);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
  }
  
  .parallax-inner {
    display: grid;
    gap: var(--s1);
    justify-items: center;
    text-align: center;
  }
  
  .parallax-icon img {
    width: 60px;
    height: auto;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,.35));
  }
  
  .parallax-title {
    font-size: clamp(1.7rem, 3.2vw, 2.8rem);
    margin: 0;
    color: var(--w);
    text-shadow: 0 6px 18px rgba(0,0,0,.55);
  }

  #mitgliederversammlung.parallax{
    --img: url("assets/images/mitgliederversammlung-900.jpg");
  }
  
  @media (min-width: 900px) {
    #mitgliederversammlung.parallax{
        --img: url("assets/images/mitgliederversammlung-1600.jpg");
      }

    .parallax {
      min-height: 600px;
      background-attachment: fixed;
    }
  
    .parallax-icon img {
      width: 80px;
    }
  }
  
  @media (prefers-reduced-motion: reduce) {
    .parallax {
      background-attachment: scroll;
    }
  }

.schedule{
    background: var(--m);   
    padding: var(--s6) 0;
  }
  
  .schedule-trenner{
    display:block;
    width:min(500px, 92%);
    height:auto;
    margin: 0 auto;
  }
  
  .schedule-list{
    list-style:none;
    margin: var(--s4) auto; 
    padding:0;
    display:grid;
    gap: var(--s2);
    justify-items:center; 
  }
  
  .schedule-list li{
    --ico: 72px;  
    --ico-scale: .72; 
    display: inline-grid; 
    grid-template-columns: calc(var(--ico) * var(--ico-scale)) auto;
    align-items: center;
    column-gap: var(--s3); 
    width: fit-content;  
    max-width: 92%;     
    text-align: left;   
  }
  
  .schedule-list img{
    width: calc(var(--ico) * var(--ico-scale));
    height: auto;
  }
  
  .schedule-list p{
    margin:0;
    line-height:1.5;
  }
  
  .schedule-list small{
    font-size:.95rem;
  }
  
  @media (min-width: 900px){
    .schedule{
      padding: var(--s6) 0;
    }
  
    .schedule-list{
      gap: var(--s2);   
    }
  
    .schedule-list li{
      --ico-scale: 1;   
      max-width: 760px;
    }
  }

#tagung.parallax{
    --img: url("assets/images/tagung-900.jpg");
  }
  @media (min-width: 900px){
    #tagung.parallax{
      --img: url("assets/images/tagung-1600.jpg");
    }
  }

.schedule--tagung{
    background: var(--bg);
  }

  .schedule--tagung .schedule-list li.schedule-detail{
    display: grid;
    grid-template-columns: 1fr;
    width: min(760px, 92%);
    margin: 0 auto var(--s4) auto;
  }
  
  .schedule--tagung .schedule-list li.schedule-detail .detail-left{
    width: min(200px, 60%);
    height: auto;
    justify-self: start;
    display: block;
  }
  
  .schedule--tagung .schedule-list li.schedule-detail p{
    margin: 0;
    width: min(560px, 92%);
    justify-self: center;
    text-align: left;
    line-height: 1.5;
  }
  
  .schedule--tagung .schedule-list li.schedule-detail .detail-right{
    width: min(200px, 60%);
    height: auto;
    justify-self: end;
    display: block;
  }
  
  @media (min-width: 900px){
    .schedule--tagung .schedule-list li.schedule-detail{
      width: min(900px, 80%);
      margin: 0 auto var(--s4) auto;
    }
  
    .schedule--tagung .schedule-list li.schedule-detail .detail-left,
    .schedule--tagung .schedule-list li.schedule-detail .detail-right{
      width: min(300px, 62%);
    }
  
    .schedule--tagung .schedule-list li.schedule-detail p{
      width: min(620px, 70%);
    }
  }
  
  @media (max-width: 520px){
    .schedule--tagung .schedule-list li.schedule-detail .detail-left,
    .schedule--tagung .schedule-list li.schedule-detail .detail-right{
      width: min(320px, 80%);
    }
  }

#anmeldung.parallax {
    --img: url("assets/images/anmeldung-900.jpg");
  }

  .parallax-subtitle{
    margin: 0;
    color: var(--w);
    font-weight: 700;
    text-shadow: 0 6px 18px rgba(0,0,0,.55);
    font-size: clamp(1rem, 2vw, 1.25rem);
  }
  
  @media (min-width: 900px) {
    #anmeldung.parallax {
      --img: url("assets/images/anmeldung-1600.jpg");
    }
  }

.signup {
    background: var(--bg);
    padding: var(--s6) 0;
  }
  
  .signup-inner {
    display: grid;
    justify-items: center;
  }
  
  .signup-form {
    width: 100%;
    display: grid;
    justify-items: center;
  }
  
  .signup-panel {
    width: min(760px, 100%);
    background: var(--g);
    color: var(--w);
    border: 0;
    margin: 0;
    padding: clamp(1.25rem, 4vw, 2.25rem);
    box-shadow: var(--sh1);
  }
  
  .signup-intro {
    margin: 0 0 var(--s4);
    line-height: 1.55;
  }
  
  .form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--s1);
    margin: 0 0 var(--s3);
  }
  
  .form-row label {
    font-weight: 600;
  }
  
  .signup-panel input,
  .signup-panel textarea {
    width: 100%;
    border: 0;
    padding: 1rem;
    background: var(--bg);
    color: var(--t);
  }
  
  .member-address {
    margin: 0 0 var(--s3);
    padding: 0;
    border: 0;
  }
  
  .member-address-title {
    margin: 0 0 var(--s2);
    font-weight: 600;
  }
  
  .signup-panel input:focus-visible,
  .signup-panel textarea:focus-visible {
    outline: 2px solid var(--w);
    outline-offset: 3px;
  }
  
  .signup-subset {
    border: 0;
    padding: 0;
    margin: 0;
  }
  
  .check-row {
    display: flex;
    align-items: center;
    gap: var(--s2);
    margin: 0 0 var(--s2);
  }
  
  .check-row label {
    font-weight: 400;
  }
  
  .check-row input[type="checkbox"] {
    width: 1.1rem;
    height: 1.1rem;
    accent-color: var(--bg);
  }
  
  .radio-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--s2);
    margin-top: var(--s2);
  }
  
  .radio-opt {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    margin-right: var(--s3);
  }
  
  .radio-row input[type="radio"] {
    width: 1.1rem;
    height: 1.1rem;
    accent-color: var(--bg);
  }
  
  .signup-footer {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--s2);
    align-items: center;
    margin-top: var(--s4);
  }
  
  .signup-note {
    margin: 0;
  }
  
  .btn.btn-form {
    background: var(--bg);
    color: var(--t);
    padding: 0.9rem 2.4rem;
    justify-self: start;
  }
  
  .btn.btn-form:hover,
  .btn.btn-form:focus-visible {
    background: var(--w);
    color: var(--t);
    outline: 2px solid var(--w);
    outline-offset: 3px;
  }
  
  @media (min-width: 900px) {
    .form-row {
      grid-template-columns: 180px 1fr;
      align-items: center;
      column-gap: var(--s3);
    }
  
    .form-row--stack {
      grid-template-columns: 1fr;
    }
  
    .signup-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
  
    .btn.btn-form {
      justify-self: end;
    }
  
    .radio-row {
      grid-template-columns: 2fr 1fr 1fr;
      align-items: center;
    }
  }

#download.parallax{
  --img: url("assets/images/download-900.jpg");
}
@media (min-width: 900px){
  #download.parallax{
    --img: url("assets/images/download-1600.jpg");
  }
}

.downloads{
  padding: var(--s6) 0;
}

.downloads--member{ background: var(--m); } 
.downloads--public{ background: var(--bg); }

.downloads-inner{
  display: grid; 
  justify-items: center; 
  gap: var(--s5);
}

.downloads-list{
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  display: grid;
  gap: var(--s6);
  justify-items: center;
}

.downloads-item{
  width: 100%;
  display: grid;
  justify-items: center;
  gap: var(--s4);
}

.download-card{
  width: min(760px, 100%);
  display: grid;
  justify-items: center; 
  text-align: center;
  gap: var(--s2);
}

.download-title{
  margin: 0;
}

.download-text{
  margin: 0;
  max-width: 62ch;
}

.download-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 0.9rem 2.4rem;
  min-width: 220px;
  margin-top: var(--s3); 
  box-shadow: var(--sh1);
}

.downloads .btn.btn-green:hover,
.downloads .btn.btn-green:focus-visible{
  background: var(--bg);
  color: var(--t);
  outline: 2px solid var(--w);
  outline-offset: 3px;
}

.download-divider{
  display: block;
  height: auto;
  margin: 0 auto;
}

.download-divider--small{
  width: min(520px, 92%);
  margin-top: var(--s2);
}

.download-divider--big{
  width: min(980px, 100%);
  margin-top: var(--s4);
}

@media (min-width: 900px){
  .downloads{
    padding: 4rem 0;
  }

  .download-card{
    gap: var(--s3);
  }

  .download-btn{
    margin-top: var(--s4);
  }

  .downloads-list{
    gap: 4rem;
  }
}

 #kontakt.parallax{
  --img: url("assets/images/kontakt-900.jpg");
}
@media (min-width: 900px){
  #kontakt.parallax{
    --img: url("assets/images/kontakt-1600.jpg");
  }
}

.kontakt{
  background: var(--bg);
  padding: var(--s6) 0;
}

.kontakt-wrap{
  width: min(900px, 100%);
  margin: 0 auto;
  display: grid;
  gap: var(--s5);
  text-align: left;
}

.kontakt-left{
  margin: 0;
  font-style: normal;
  line-height: 1.6;
}

.kontakt-right{
  margin: 0;
  line-height: 1.6;
}

.kontakt-lines{
  margin: 0 0 var(--s4);
}

.kontakt-lines:last-child{
  margin-bottom: 0;
}

.kontakt a{
  color: var(--t);
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

@media (min-width: 900px){
  .kontakt{
    padding: 4rem 0;
  }

  .kontakt-wrap{
    grid-template-columns: 1fr 1fr;
    column-gap: 6rem;
    row-gap: 0;
    align-items: start;
  }
}

.footer {
  background: var(--g);
  color: var(--w);
  padding: 3.5rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  text-align: center;
}

.footer-logo img {
  width: 90px;
  height: auto;
  display: block;
  box-shadow: var(--sh2);
}

.footer-copy {
  margin: 0;
  font-size: 1rem;
}

.footer-top {
  width: 48px;
  height: 48px;
  background: var(--bg);
  color: var(--g);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 2rem;
  box-shadow: var(--sh2);
}

.footer-top:hover,
.footer-top:focus-visible {
  background: var(--m);
  color: var(--t);
}

@media (min-width: 900px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: center;
  }

  .footer-logo {
    order: 1;
  }

  .footer-copy {
    order: 2;
  }

  .footer-top {
    order: 3;
  }
}


  
  
  
  
  











[hidden] {
    display: none !important;
}