:root {
      --gelb: #f5cc39;
      --blau: #0e0d52;
      --hell: #fafafa;
      --grau: #555;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Poppins', sans-serif;
      background-color: var(--hell);
      color: var(--grau);
      line-height: 1.6;
    }

    #logo{
        width: 200px;
        margin-bottom:10px;
        padding: 0;

        }

    header {
      background: var(--blau);
      background-image: url("paellabackground2.png");
      background-size: cover;      /* Breite = 100% des Geräts, Höhe passt sich automatisch an */
      background-repeat: no-repeat;    /* Bild nicht wiederholen */
      background-position: top center; /* Positioniert das Bild oben und zentriert vielleicht nicht notwendig*/
      background-attachment: scroll;    
      color: white;
      padding: 4rem 2rem 3rem;
      text-align: center;
    }

    header h1 {
      font-size: 2.75rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
    }

    header p {
      font-weight: 300;
      font-size: 1.2rem;
      
    }

    main {
      max-width: 960px;
      margin: 0 auto;
      padding: 2rem;
    }

    section {
      margin-bottom: 4rem;
    }

    h2 {
      font-size: 2rem;
      color: var(--blau);
      margin-bottom: 1rem;
    }

    .intro p, .gründer p {
      font-size: 1.1rem;
      color: #333;
    }
    #regional{
      padding-bottom:20px ;
    }
    .paella-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 2rem;
    }

    .paella {
      background-color: white;
      border: 1px solid #eee;
      border-radius: 12px;
      padding: 1.5rem;
      box-shadow: 0 4px 8px rgba(0,0,0,0.05);
      transition: transform 0.2s;
    }

    .paella:hover {
      transform: translateY(-4px);
    }

    .paella h3 {
      color: var(--blau);
      margin-bottom: 0.5rem;
    }

    .cta2 {
      text-align: center;
      padding: 3rem 2rem;
      border-radius: 16px;
    }

    .cta2 a {
      display: inline-block;
      margin-top: 0,5rem;
      background-color: hsl(49, 100%, 57%);
      color: white;
      padding: 0.8rem 2rem;
      font-weight: 500;
      font-size: 1rem;
      border-radius: 8px;
      text-decoration: none;
      transition: background 0.3s;
    }

    .cta2 a:hover {
      background-color: #ffab03;
    }

    .cta {
      background-color: var(--gelb);
      text-align: center;
      padding: 3rem 2rem;
      border-radius: 16px;
    }

    .cta h2 {
      color: var(--blau);
    }

    .cta p {
      font-size: 1.1rem;
      margin-top: 0.5rem;
    }

    .cta a {
      display: inline-block;
      margin-top: 1.5rem;
      background-color: var(--blau);
      color: white;
      padding: 0.8rem 2rem;
      font-weight: 500;
      font-size: 1rem;
      border-radius: 8px;
      text-decoration: none;
      transition: background 0.3s;
    }

    .cta a:hover {
      background-color: #092c4c;
    }

    .gründer {
      text-align: center;
      padding: 2rem 1rem;
    }

    .kochbild-wrapper {
      width: 150px;
      height: 150px;
      margin: 1rem auto;
      border-radius: 50%;
      overflow: hidden;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
      }

    .kochbild {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      }

    footer {
      text-align: center;
      padding: 2rem 1rem;
      font-size: 0.9rem;
      color: #999;
      text-decoration:none;
      color: inherit;
    }

    footer a {
            text-decoration: none;
            color: inherit;
   }

    .impressum {
      max-width: 960px;
      margin: 0 auto;
      padding: 2rem;
      font-size: 0.95rem;
    }

    .angebot {
      background-color: #fff7db;
      border-left: 6px solid var(--gelb);
      padding: 1.5rem;
      margin-bottom: 4rem;
      border-radius: 12px;
    }

    .angebot h2 {
      margin-top: 0;
    }

    @media (max-width: 600px) {
      header h1 {
        font-size: 2rem;
      }
      h2 {
        font-size: 1.5rem;
      }
    }
