
/*
 _    _                           _     _          _        ___  ___                    _                              _     _   
| |  | |                         (_)   | |        (_)       |  \/  |                   | |                            | |   | |  
| |  | | __ _ ___ ___  ___ _ __   _ ___| |_    ___ _ _ __   | .  . | ___ _ __  ___  ___| |__   ___ _ __  _ __ ___  ___| |__ | |_ 
| |/\| |/ _` / __/ __|/ _ \ '__| | / __| __|  / _ \ | '_ \  | |\/| |/ _ \ '_ \/ __|/ __| '_ \ / _ \ '_ \| '__/ _ \/ __| '_ \| __|
\  /\  / (_| \__ \__ \  __/ |    | \__ \ |_  |  __/ | | | | | |  | |  __/ | | \__ \ (__| | | |  __/ | | | | |  __/ (__| | | | |_ 
 \/  \/ \__,_|___/___/\___|_|    |_|___/\__|  \___|_|_| |_| \_|  |_/\___|_| |_|___/\___|_| |_|\___|_| |_|_|  \___|\___|_| |_|\__|
                                                                                                                                 
Web design and web development by Stefan Weise – https://stefanweise.info

*/

:root {
      --primary: #0077cc;
      --light-blue: #e6f3fb;
      --white: #ffffff;
      --header: #fffcf8;
      --footer: #fffcf8;
      --text: #333;
      --accent: #0099ff;
    }

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

    html {
      scroll-behavior: smooth;
      font-size: 16px;
      font-family: 'Helvetica Neue', sans-serif;
    }

    body {
      background: var(--white);
      color: var(--text);
      line-height: 1.6;
    }

    header {
      position: sticky;
      top: 0;
      background: var(--header);
      border-bottom: 1px solid #ddd;
      padding: 1rem;
      z-index: 1000;
    }

    nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 960px;
      margin: 0 auto;
      flex-wrap: wrap;
    }

    .logo {
      font-size: 0.9rem;
      color: var(--primary);
      font-weight: bold;
    }

    .logo img {
      max-width:60px !important;
      height: auto;
    }

    nav a {
    position: relative;
    color: var(--primary);
    text-decoration: none;
    font-weight: bold;
    margin-left: 1rem;
    padding-bottom: 0.2rem;
    transition: color 0.3s ease;
    }

    nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    }

    nav a:hover::after,
    nav a:focus::after {
    transform: scaleX(1);
    }


.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.burger span {
  display: block;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .burger {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    padding-top: 1rem;
  }

  .nav-links a {
    margin: 0.5rem 0;
    margin-left: 0;
  }

  .nav-links.active {
    display: flex;
  }
}



    /* == hero sektion == */

    .hero {
        background: linear-gradient(to bottom, var(--light-blue), var(--footer));
        background-image: url(../png/desert.png);
        background-position: bottom center;
        background-size: cover;
        color: var(--white);
        padding: 5rem 1rem;
        text-align: center;
    }

    .hero h1 {
        font-size: clamp(2.5rem, 6vw, 4rem);
        font-weight: 700;
        line-height: 1.2;
        margin: 0 auto;
        max-width: 100%;
    }

    .hero h2 {
        font-size: clamp(1.5rem, 4vw, 2.5rem);
        font-weight: 400;
        line-height: 1.4;
        margin: 1rem auto 0;
        max-width: 60ch;
    }

    .hero-btn {
        display: inline-block;
        margin-top: 1.5rem;
        background: var(--accent);
        color: var(--white);
        padding: 0.75rem 1.5rem;
        border-radius: 2rem;
        text-decoration: none;
        font-weight: bold;
        font-size: clamp(1rem, 2.5vw, 1.25rem);
        transition: background 0.3s ease;
    }


    .hero-btn:hover {
        background: #006bb3;
    }

    /* == sektion == */

    .section {
        max-width: 960px;
        margin: 3rem auto;
        padding: 0 1rem;
    }

    .section[id]::before {
        content: "";
        display: block;
        height: 120px;
        margin-top: -120px;
    }

    .section h2 {
      font-size: 1.8rem;
      margin-bottom: 1rem;
    }

    /* == grid == */
    .grid {
        display: grid;
        gap: 2rem;
        padding: 0 1rem; /* ← Added horizontal padding */
    }

    @media(min-width: 600px) {
        .grid.two-columns {
            grid-template-columns: 1fr 1fr;
        }
    }

    /* == cta == */

    .cta {
        background: #eee;
        color: #000;
        text-align: center;
        margin: 1rem auto;
        padding: 2rem 1rem;
        border-radius: 0.5rem;
    }

    .cta a {
        display: inline-block;
        margin-top: 1.5rem;
        background: var(--accent);
        color: var(--white);
        padding: 0.75rem 1.5rem;
        border-radius: 2rem;
        text-decoration: none;
        font-weight: bold;
        font-size: 1rem;
        transition: background 0.3s ease;
    }

    /* == mission == */

    #mission {
        padding: 3rem 1rem;
        background: var(--light-blue);
    }

    #mission h2 {
        margin-bottom: 2rem;
        font-size: clamp(1.8rem, 5vw, 2.5rem);
        line-height: 1.2;
        font-weight: bold;
        text-align: center;
    }
    #mission p {
        margin-bottom: 1rem;
    }          

    .mission-content {
        margin: 0 auto;
        padding: 3rem 1rem;
        max-width: 960px;
        text-align: justify;
    }

    /* == facts == */

    #fakten {
        padding: 1.5rem 0 3rem 0;
    }

    #fakten h2 {
        margin-bottom: 3rem;
        font-size: clamp(1.8rem, 5vw, 2.5rem);
        line-height: 1.2;
        font-weight: bold;
        text-align: center;
    }

    #fakten h3 {
        position: relative;
        margin-bottom: 0;
        font-size: clamp(1.2rem, 3.5vw, 1.6rem);
        font-weight: 600;
    }

    #fakten p {
        text-align: justify;
        hyphens: auto;
    }

    /* == privatization == */

    #privatisierung {
        padding: 3rem 1rem;
        background: linear-gradient(to bottom, var(--light-blue), var(--footer));
        background-image: url(../png/palmtrees.png);
        background-position: center center;
        background-size: cover;
        color: var(--white);
    }

    #privatisierung div {
        max-width: 700px;
        margin: 0 auto;
        text-align: center;
    }

    #privatisierung h2 {
        margin-bottom: 1rem;
        font-size: clamp(1.8rem, 5vw, 2.5rem);
        line-height: 1.2;
        font-weight: bold;
    }

    #privatisierung p {
        margin-top: 2rem;
    }

    /* == letter == */

    #brief {
        padding: 3rem 1rem;
        background: linear-gradient(to bottom, var(--light-blue), var(--footer));
        background-image: url(../png/buildings.png);
        background-position: center bottom;
        background-size: cover;
        color: var(--white);
    }

    #brief div {
        max-width: 700px;
        margin: 0 auto;
        text-align: center;
    }

    #brief h2 {
        margin-bottom: 1rem;
        font-size: clamp(1.8rem, 5vw, 2.5rem);
        line-height: 1.2;
        font-weight: bold;
    }

    #brief p {
        margin-top: 2rem;
    }

    /* == pdf download link == */

    .pdf-link {
        display: inline-block;
        margin-top: 1rem;
        background: var(--primary);
        color: var(--white);
        padding: 0.75rem 1.5rem;
        border-radius: 2rem;
        text-decoration: none;
        font-weight: bold;
    }

    /* == quote == */

    .quote-section {
        max-width: 960px;
        margin: 4rem auto;
        padding: 3rem 0;
        text-align: center;
        position: relative;
    }

    .quote-section blockquote {
        margin: 0 auto;
        padding: 2rem 1.5rem;
        background: #f9f9f9;
        border-left: 4px solid var(--primary);
        border-radius: 0.5rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        font-style: italic;
        color: #333;
        font-size: clamp(1.1rem, 2.5vw, 1.5rem);
        line-height: 1.7;
        position: relative;
    }

    .quote-section blockquote::before {
        content: "“";
        font-size: 4rem;
        color: var(--primary);
        position: absolute;
        top: -20px;
        left: 10px;
        opacity: 0.2;
        pointer-events: none;
    }

    .quote-section blockquote p {
        margin-bottom: 1rem;
    }

    .quote-section cite {
        display: block;
        font-size: clamp(0.95rem, 1.5vw, 1.1rem);
        font-style: normal;
        font-weight: bold;
        color: var(--primary);
        margin-top: 1rem;
    }

    .quote-section cite a {
        color: #003B7A;
    }

    .quote-section cite a:hover {
        color: black;
        text-decoration: none;
    }

    /* == disclaimer == */

    #quellenhinweis {
        margin:1rem auto 0 auto;
        padding: 2rem 1rem;
        background: #f9f9f9;
        border-top: 1px solid #ddd;
        color: #555;
    }

    #quellenhinweis div {
        max-width: 960px;
        margin: 0 auto;
        text-align: justify;
        font-size: 0.85rem;
    }

    /*#quellenhinweis div small {
        display: block;
        margin-bottom: 1rem;
    }*/

    #quellenhinweis a {
        color:#000;
        text-decoration: underline;
    }

    #quellenhinweis a:hover {
        color:var(--primary);
        text-decoration: none;
    }
    
    /* == footer == */

    footer {
        background-color: var(--footer);
        text-align: center;
        margin-top: 0;
        padding: 2rem 1rem;
        font-size: 0.9rem;
        color: #666;
        border-top: 1px solid #ddd;
    }

    footer a {
        color: var(--primary);
        text-decoration: none;
        border-bottom: 1px solid transparent;
        transition: all 0.2s ease-in-out;
    }

    footer p a:hover {
        border-bottom: 1px solid var(--primary);
        color: var(--accent);
    }
    footer span {
        margin:0 .5rem;
    }

    footer a img {
        border: 0;
        margin: 1.35rem;
        text-decoration: none;
        background: transparent;
    }

    footer img {
        max-width: 300px;
        height: auto;
        margin: auto;
        padding: 0;
    }