
@font-face {
 font-family: Poppins; src: url(Poppins/Poppins-Regular.ttf);
}
@font-face {
 font-family: PoppinsBold; src: url(Poppins/Poppins-Bold.ttf);
}
@font-face {
 font-family: PoppinsBlack; src: url(Poppins/Poppins-Black.ttf);
}
@font-face {
 font-family: PoppinsMedium; src: url(Poppins/Poppins-Medium.ttf);
}
@font-face {
 font-family: PoppinsBoldItalic; src: url(Poppins/Poppins-BoldItalic.ttf);
}

/* ======================
   LORA (Serif)
====================== */
@font-face {
  font-family: 'Lora';
  src: url('fonts/lora/Lora-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lora';
  src: url('fonts/lora/Lora-Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Lora';
  src: url('fonts/lora/Lora-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}


/* ======================
   MONTSERRAT (Sans)
====================== */
@font-face {
  font-family: 'Montserrat';
  src: url('fonts/montserrat/Montserrat-Regular.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('fonts/montserrat/Montserrat-Regular.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('fonts/montserrat/Montserrat-Italic.woff2') format('woff2');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('fonts/montserrat/Montserrat-Regular.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
} 

@font-face {
  font-family: 'Montserrat';
  src: url('fonts/montserrat/Montserrat-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
} 

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

    :root {
      --blue:    #00afcb;
      --blue-dk: #008fa8;
      --blue-lt: #e6f8fb;
      --black:   #111111;
      --dark:    #1e1e1e;
      --mid:     #555;
      --light:   #888;
      --border:  #e2e8ec;
      --bg:      #ffffff;
      --bg-alt:  #f7f9fa;
      --color1:  #009dc5;
    }

    html { scroll-behavior: smooth; }
    body { font-family: 'Montserrat', sans-serif; font-weight: 400; color: var(--black); background: var(--bg); line-height: 1.7; overflow-x: hidden; }


    h1,
    h2,
    h3,
    h4 {
      font-family: 'Lora', serif;
    }

	header {
      position: sticky; top: 0; z-index: 200;
      background: #fff;
      border-bottom: 1px solid var(--border);
      box-shadow: 0 1px 12px rgba(0,0,0,0.06);
    }
	
    /* NAVBAR */
    .navbar {
      background: #fff;
      border-bottom: 1px solid var(--border);
      box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
    }

    .navbar-brand img {
      height: 38px;
    }

    .navbar-nav .nav-link {
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--mid);
      padding: 1rem 1rem;
      position: relative;
    }

    .navbar-nav .nav-link:hover {
      color: var(--blue);
    }

    .btn-brand {
      background: var(--blue);
      color: #fff;
      border-radius: 2px;
      text-transform: uppercase;
      font-size: 0.75rem;
      letter-spacing: 0.1em;
      font-weight: 600;
      padding: 0.8rem 1.4rem;
      border: none;
      transition: 0.2s ease;
    }

    .btn-brand:hover {
      background: var(--blue-dk);
      color: #fff;
    }

    .btn-outline-brand {
      border: 1px solid var(--blue);
      color: var(--blue);
      text-transform: uppercase;
      font-size: 0.75rem;
      letter-spacing: 0.1em;
      font-weight: 600;
      padding: 0.8rem 1.4rem;
	  border-radius:1px;
    }

    .btn-outline-brand:hover {
      background: var(--blue-lt);
      color: var(--blue);
    }

    /* HERO */
    #hero {
      background: var(--bg-alt);
      border-bottom: 1px solid var(--border);
      padding: 5rem 0;
    }

    .hero-kicker,
    .section-kicker {
      color: var(--blue);
      text-transform: uppercase;
      letter-spacing: 0.25em;
      font-size: 0.72rem;
      font-weight: 600;
    }

    .hero-title {
      font-size: clamp(2.5rem, 5vw, 4rem);
      line-height: 1.15;
      font-weight: 600;
      margin: 1rem 0 1.5rem;
    }

    .hero-title em {
      color: var(--blue);
      font-style: italic;
    }

    .hero-text p {
      color: var(--mid);
      max-width: 500px;
    }

    .hero-logo-box {
      background: #fff;
      border-radius: 12px;
      padding: 2.5rem;
      box-shadow: 0 8px 40px rgba(0, 175, 203, 0.12);
    }

    .hero-logo-box img {
      width: 220px;
      max-width: 100%;
    }

    .hero-badge {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 1rem;
      min-width: 120px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .hero-badge strong {
      display: block;
      color: var(--blue);
      font-size: 1.8rem;
      font-family: 'Lora', serif;
      line-height: 1;
    }

    .hero-badge span {
      text-transform: uppercase;
      font-size: 0.65rem;
      letter-spacing: 0.1em;
      color: #888;
    }

    /* SECTIONS */
    section {
      padding: 5rem 0;
    }

    .section-title {
      font-size: clamp(2rem, 4vw, 3rem);
      margin-top: 0.5rem;
    }

    .section-rule {
      width: 40px;
      height: 3px;
      background: var(--blue);
      margin-top: 1rem;
    }

    

    /* ABOUT */
    #ueber {
      background: var(--bg-alt);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .about-image {
      background: var(--blue);
      border-radius: 12px;
      min-height: 520px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.25);
      font-size: 5rem;
      font-family: 'Lora', serif;
      box-shadow: 0 12px 40px rgba(0,175,203,0.2);
    }

    .about-highlight {
      background: var(--blue-lt);
      border-left: 4px solid var(--blue);
      padding: 1.5rem;
      border-radius: 0 8px 8px 0;
      font-style: italic;
    }

    /* FEATURE */
    .feature-image img,
    .bestseller-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .feature-image {
      overflow: hidden;
      border-radius: 12px;
      box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    }

    /* BESTSELLER */
    #bestseller {
      background: var(--bg-alt);
      border-top: 1px solid var(--border);
    }

    .bestseller-card {
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid var(--border);
      text-decoration: none;
      color: var(--dark);
      transition: 0.25s ease;
      display: block;
      height: 100%;
    }
	
    .bestseller-card:hover { box-shadow: 0 8px 28px rgba(0,175,203,0.15); transform: translateY(-3px); }
    .bestseller-img { aspect-ratio: 4/3; overflow: hidden; }
    .bestseller-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; }
    .bestseller-card:hover .bestseller-img img { transform: scale(1.05); }
    .bestseller-body { padding: 1rem 1.2rem; }
    .bestseller-title {
      font-size: 0.85rem; font-weight: 600; color: var(--dark);
      display: flex; justify-content: space-between; align-items: center;
    }

    .bestseller-arrow { color: var(--blue); font-size: 0.9rem; transition: transform 0.2s; font-family:Arial; }
    .bestseller-card:hover .bestseller-arrow { transform: translateX(3px); }

    /* CTA */
    #cta {
      background: var(--blue);
      color: #fff;
      text-align: center;
    }

    #cta p {
      color: rgba(255,255,255,0.85);
    }

    .btn-white {
      background: #fff;
      color: var(--blue);
      text-transform: uppercase;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      padding: 0.85rem 1.5rem;
	  border-radius:1px;
    }

    .btn-white:hover {
      background: #f2f2f2;
      color: var(--blue);
    }

	.btn-outline-white { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.6); border-radius:1px; text-transform: uppercase; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em;  padding: 0.85rem 1.5rem; }
    .btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: #fff; }


    /* FOOTER */
    footer {
      background: var(--dark);
      color: rgba(255,255,255,0.6);
      padding: 4rem 0 2rem;
    }

    footer h5 {
      color: var(--blue);
      text-transform: uppercase;
      font-size: 0.75rem;
      letter-spacing: 0.15em;
      margin-bottom: 1rem;
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
    }

    footer a {
      color: rgba(255,255,255,0.55);
      text-decoration: none;
    }

    footer a:hover {
      color: var(--blue);
    }

    .footer-logo {
      height: 32px;
      filter: brightness(0) invert(1);
      margin-bottom: 1rem;
    }

    /* ═══════════════════════════════════
       ÜBER MICH
    ═══════════════════════════════════ */
    #ueber { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
    .ueber-grid {
      display: grid; grid-template-columns: 1fr 1.6fr;
      gap: 5rem; align-items: center;
    }
    .ueber-portrait {
      position: relative;
	  display: flex;
		justify-content: center;
    }
    .ueber-img-box {
      background: var(--blue);
      border-radius: 6px; overflow: hidden;
      aspect-ratio: 4/5;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 12px 40px rgba(0,175,203,0.2);
    }
    .ueber-img-box img {
      width: 100%; height: 100%; object-fit: cover; max-width: 406px;
      display: block;
    }
    .ueber-initials {
      font-family: 'Lora', serif; font-size: 5rem; font-weight: 600;
      color: rgba(255,255,255,0.25); letter-spacing: 0.1em;
    }
    .ueber-logo-pill {
      position: absolute; bottom: -1rem; right: 3rem;
      background: #fff; border-radius: 6px; padding: 0.8rem 1rem;
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
      display: flex; align-items: center; gap: 0.6rem;
    }
    .ueber-logo-pill img { height: 28px; }
    .ueber-text {}
    .ueber-name {
      font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em;
      text-transform: uppercase; color: var(--blue); margin-bottom: 1.5rem;
    }
    .ueber-body {
      font-size: 0.92rem; color: var(--mid); line-height: 1.95;
      margin-bottom: 1rem;
    }
    .ueber-highlight {
      background: var(--blue-lt); border-left: 3px solid var(--blue);
      padding: 1.2rem 1.5rem; border-radius: 0 4px 4px 0;
      margin: 1.8rem 0;
      font-size: 0.95rem; font-style: italic; color: var(--dark); line-height: 1.7;
    }

    /* ═══════════════════════════════════
       GRAFIKDESIGN FEATURE
    ═══════════════════════════════════ */
    #grafikdesign { background: var(--bg); }
    .feature-grid {
      display: grid; grid-template-columns: 1.1fr 1fr;
      gap: 4rem; align-items: center;
    }
    .feature-img {
      border-radius: 6px; overflow: hidden;
      box-shadow: 0 8px 30px rgba(0,0,0,0.1);
      aspect-ratio: 4/3;
    }
    .feature-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; }
    .feature-img:hover img { transform: scale(1.03); }
    .feature-text p { font-size: 0.92rem; color: var(--mid); line-height: 1.9; margin-bottom: 1.5rem; }

    /* ═══════════════════════════════════
       BUTTON DESIGN
    ═══════════════════════════════════ */


    .btn-blue { background: var(--blue); color: #fff; border-radius:1px;}
    .btn-blue:hover { background: var(--blue-dk); transform: translateY(-1px); }
    .btn-outline { background: transparent; color: var(--blue); border: 1.5px solid var(--blue);  border-radius:1px;}
    .btn-outline:hover { background: var(--blue-lt); }

    /* ═══════════════════════════════════
       PRODUKTE LISTE
    ═══════════════════════════════════ */
    #produkte { background: var(--bg); border-top: 1px solid var(--border); }

    .produkt-card {
	  border: 1px solid var(--border);
      background: var(--bg); text-decoration: none;
      display: flex; align-items: center; gap: 0.8rem;
      padding: 1.3rem 1.4rem;
      font-size: 0.85rem; font-weight: 500; color: var(--dark);
      transition: background 0.2s, color 0.2s, border-color 0.2s;
    }
    .produkt-card:hover { background: var(--blue-lt); color: var(--blue); border-bottom: 2px solid var(--blue); }
    .produkt-card-icon {
      width: 32px; height: 32px; border-radius: 50%;
      background: var(--blue-lt); color: var(--blue);
      display: flex; align-items: center; justify-content: center;
      font-size: 0.9rem; flex-shrink: 0;
      transition: background 0.2s;
    }
    .produkt-card:hover .produkt-card-icon { background: rgba(0,175,203,0.2); }

    .hero-kicker {
      display: inline-flex; align-items: center; gap: 0.7rem;
      font-size: 0.7rem; font-weight: 600; letter-spacing: 0.25em;
      text-transform: uppercase; color: var(--blue);
      margin-bottom: 1.2rem;
    }

	.hero-kicker::before { content: ''; display: block; width: 28px; height: 2px; background: var(--blue); }
	
	
	.section-title {
      font-family: 'Lora', serif; font-size: clamp(1.8rem, 3vw, 2.8rem);
      font-weight: 600; color: var(--black); line-height: 1.2;
    }

    #cta h2 {
      font-family: 'Lora', serif; font-size: clamp(1.8rem, 3vw, 2.6rem);
      font-weight: 600; color: #fff; margin-bottom: 0.8rem;
    }

    .footer-brand p { font-size: 0.82rem; line-height: 1.8; color: rgba(255,255,255,0.5); }
    .footer-col h4 {
     font-family: 'Montserrat'; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em;
      text-transform: uppercase; color: var(--blue); margin-bottom: 1rem;
    }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 0.5rem; }
    .footer-col ul li a {
      color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.83rem;
      transition: color 0.2s;
    }
    .footer-col ul li a:hover { color: var(--blue); }
    .footer-col p { font-size: 0.83rem; line-height: 1.9; color: rgba(255,255,255,0.5); }
    .footer-bottom p { font-size: 0.76rem; color: rgba(255,255,255,0.3); }
    .footer-bottom-links a { font-size: 0.76rem; color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.2s; }
    .footer-bottom-links a:hover { color: var(--blue); }

	.allProdsTitle
	{
      background: var(--bg-alt);
      border-bottom: 1px solid var(--border);
      padding: 1rem 0;
	}
	
	.ProdList {
		-moz-column-count:2;
		column-count:2;
		-moz-column-gap:1.5rem;
		column-gap:1.5rem;
	}

    /* MOBILE */
    @media (max-width: 991px) {
      .navbar-collapse {
        background: #fff;
        padding: 1rem 0;
      }

      .navbar-nav .nav-link {
        padding: 0.9rem 0;
      }

      .hero-visual {
        margin-top: 3rem;
      }

      .about-image {
        min-height: 380px;
      }
    }
	
	