/* ========== Desktop Layout (1120px) ========== */
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: #f2f2f2;
  font-family: Arial, sans-serif;
  color: #333;
}

#wrapper {
  width: 1120px;
  margin: 0 auto;
  background: #fff;
}

/* ========== Toplinks (graue Leiste oben) ========== */
#toplinks {
  background: #fafafa;
  border-bottom: 1px solid #ddd;
}
#toplinks ul {
  display: flex;
  justify-content: flex-end;
  list-style: none;
  padding: 8px 16px;
  gap: 20px;
}
#toplinks a {
  text-decoration: none;
  color: #444;
}
#toplinks a.active { font-weight: bold; }

/* ========== Header (Branding+Logo links, Navi rechts) ========== */
/* HTML: <header id="site-header"> ... */
#site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px;
  background: #fff;
}

/* Branding + Logo zusammen links */
.brand-wrap {
  display: flex;
  align-items: center;
  gap: 12px;          /* Abstand Text ↔ Logo */
  flex: 1;
  min-width: 0;
}

/* Branding (Titel + Untertitel) */
.brand h1 {
  color: #67b32e;                   /* grün */
  font-weight: 400;
  font-size: 2.6em;
  font-family: 'Yanone Kaffeesatz', Arial, sans-serif;
  line-height: 1.05;
  margin: 0;
  transition: color 0.3s ease;      /* Hover-Übergang */
}
.brand h1:hover { color: orange; }  /* Hover = orange */

.brand p {
  color: #67b32e;                   /* bleibt grün */
  font-size: 1.02em;
  margin-top: 6px;
}

/* Logo (50x50) direkt neben dem Branding */
.brand-logo img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  display: block;
}

/* Navigation rechts */
.primary-nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
}
.primary-nav a {
  text-decoration: none;
  color: #5a5d5d;
  font-size: 0.85em;
  font-family: 'Droid Sans', Arial, sans-serif;
}
.primary-nav a:hover { color: #000; }

/* ========== Headerbild ========== */
#header-image img {
  width: 100%;
  display: block;
}

/* ========== Content-Bereich ========== */
main {
  display: flex;
  gap: 20px;
  padding: 20px;
}

.social {
  display: flex;
  align-items: center;
  gap: 6px; /* Abstand zwischen den Icons */
}

.social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;       /* Größe Box */
  height: 34px;
  font-size: 20px;   /* Icon-Größe innen */
  color: #fff;       /* Iconfarbe */
  text-decoration: none;
  border-radius: 6px;/* leicht abgerundet */
}

/* Hintergrundfarben der Kästchen */
.social a.facebook  { background-color: #1877F2; }
.social a.youtube   { background-color: #FF0000; }
.social a.google    { background-color: #DB4437; }

/* Instagram Verlauf (Box) */
.social a.instagram {
  background: radial-gradient(circle at 30% 107%, 
    #fdf497 0%, #fdf497 5%, 
    #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

/* Optional Hover-Effekt */
.social a:hover {
  filter: brightness(0.9);
}

article {
  flex: 2;
  padding-right: 20px;
}
aside {
  flex: 1;
  background: #fafafa;
  padding: 15px;
  border-left: 1px solid #ddd;
}
aside .social img {
  width: 30px;
  margin-right: 5px;
}

/* ========== Footer ========== */
footer {
  text-align: center;
  padding: 20px;
  background: #fafafa;
  border-top: 1px solid #ddd;
  font-size: 0.9em;
}
