/* style.css */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #000;
  background: #fff;
}

.wrap {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}

/* Header */

.site-header {
  background: #fff;
  padding: 28px 0;
}

.logo img {
  width: 260px;
  max-width: 80vw;
  height: auto;
  display: block;
}

/* Main */

.hero {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.55);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1050px, calc(100% - 40px));
  text-align: center;
  padding: 50px 20px;
}

.hero-content h1 {
  margin: 0 0 48px;
  font-size: clamp(2rem, 5vw, 4.4rem);
  line-height: 1.1;
  font-weight: 800;
}

.hero-content p {
  margin: 0 0 42px;
  font-size: clamp(1.5rem, 3.6vw, 3.4rem);
  line-height: 1.18;
  font-weight: 800;
}

/* Footer */

.site-footer {
  background: #fff;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr 1.5fr auto;
  gap: 50px;
  padding: 44px 0 34px;
  border-bottom: 4px solid #000;
}

.footer-top h2 {
  margin: 0 0 18px;
  font-size: 0.85rem;
  text-transform: uppercase;
}

.footer-top p {
  margin: 0 0 18px;
  font-size: 0.95rem;
  line-height: 1.45;
}

.jubilee img {
  width: 68px;
  height: auto;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 220px 1fr 250px;
  align-items: center;
  gap: 30px;
  padding: 34px 0;
  text-align: center;
}

.footer-bottom img {
  width: 220px;
  max-width: 100%;
}

.footer-bottom nav {
  font-size: 0.85rem;
}

.footer-bottom nav a {
  color: #000;
  text-decoration: none;
}

.footer-bottom nav a:not(:last-child)::after {
  content: " | ";
  color: #000;
}

.footer-bottom strong {
  font-size: 1.1rem;
}

.copyright {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 28px 20px;
  font-size: 0.9rem;
}

/* Tablet */

@media (max-width: 900px) {
  .site-header {
    padding: 24px 0;
  }

  .logo img {
    margin: 0 auto;
  }

  .hero {
    min-height: 500px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 34px;
  }

  .jubilee {
    justify-self: start;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
  }
}

/* Smartphone */

@media (max-width: 600px) {
  .wrap {
    width: min(100% - 28px, 1100px);
  }

  .site-header {
    padding: 22px 0;
  }

  .logo img {
    width: 230px;
  }

  .hero {
    min-height: 560px;
  }

  .hero-overlay {
    background: rgba(255, 255, 255, 0.62);
  }

  .hero-content {
    width: calc(100% - 24px);
    padding: 40px 8px;
  }

  .hero-content h1 {
    margin-bottom: 34px;
  }

  .hero-content p {
    margin-bottom: 32px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 36px 0 28px;
  }

  .jubilee {
    justify-self: center;
  }

  .footer-bottom {
    padding: 30px 0;
  }

  .footer-bottom nav a {
    display: block;
    margin: 8px 0;
  }

  .footer-bottom nav a::after {
    content: none !important;
  }
}

.social{
    display:flex;
    gap:16px;
    margin-top:20px;
}

.social a{
    display:flex;
    justify-content:center;
    align-items:center;
    width:42px;
    height:42px;
    border-radius:50%;
    transition:.25s;
}

.social a:hover{
    transform:scale(1.08);
    opacity:.8;
}

.social img{
    width:30px;
    height:30px;
}
.social-icon{
    color:#000000;
}

.social-icon:hover{
    color:#d6001c;   /* optional Sport-Frank-Rot */
}

.site-header .wrap{
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

.logo{
    display:flex;
    justify-content:flex-start;
}
@media (max-width:600px){

    .footer-bottom{
        text-align:center;
    }

    .footer-bottom img{
        display:block;
        margin:0 auto 20px;
    }

}