:root {
    --clr-pink-400: #C5265D;
    --clr-orange-400: #FF7D33;
    --clr-black-400: #000;
    --clr-white-400: #fff;
    --bs-border-color: var(--clr-pink-400);
    --bs-border-width: 3px;
    --bs-body-font-size: 1.2rem;
    --fs-sm: clamp(0.8rem, 0.17vi + 0.76rem, 0.89rem);
    --fs-base: clamp(1rem, 0.34vi + 0.91rem, 1.19rem);
    --fs-md: clamp(1.25rem, 0.61vi + 1.1rem, 1.58rem);
    --fs-lg: clamp(1.56rem, 1vi + 1.31rem, 2.11rem);
    --fs-xl:  clamp(3.5rem, 1.56vi + 1.56rem, 2.81rem);
    --fs-xxl: clamp(2.44rem, 2.38vi + 1.85rem, 3.75rem);
    --fs-xxxl: clamp(3.05rem, 3.54vi + 2.17rem, 5rem);
}

/* source-sans-3-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/source-sans-3-v19-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* source-sans-3-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/source-sans-3-v19-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* source-sans-3-900 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 900;
  src: url('fonts/source-sans-3-v19-latin-900.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

h1 {
    color: var(--clr-orange-400);
    font-size: var(--fs-xl);
    font-family: "gelato-luxe", sans-serif;
    font-weight: 400;
    font-style: normal;
}

h2 {
    color: var(--clr-orange-400);
    font-size: var(--fs-xl);
    font-family: "gelato-luxe", sans-serif;
    font-weight: 400;
    font-style: normal;
}

h3 {
    color: var(--clr-pink-400);
    font-size: var(--fs-md);
    font-weight: bold;
}

h3.standort {
    color: white;
    background: var(--clr-pink-400);
    padding-block: .25rem;
}

a,
a:visited {
    color: var(--clr-pink-400);
    text-decoration: none;
    font-weight: bold;
}

a:hover,
a:focus {
    text-decoration: underline;
}

.bg-pink {
    h2 {
        color: var(--clr-pink-400);
    }
}

.vh-50 {
    height: 50vh;
}

#logo {
    position: absolute;
    height: 100px;
    width: auto;
    top: 20px;
}

.social-icons {
   padding-block: 20px;
}

.social-icon img {
    width: 40px;
    height: 40px;
}

.bg-pink {
    background-image: url("img/bg/Hintergrund_1920x790px.jpg");
    background-size: cover;
}

.bg-aehre {
    background-image: url("img/bg/aehren_2000x1750px.png");
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: cover;
}

.card {
    background: white;
    border: 3px solid var(--clr-pink-400);
    border-radius: 40px 0 40px 0;
    display: flex;
    align-items: center;
    padding: 1rem;
    gap: .5rem;
    position: relative;
}

.card img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.card h3 {
    margin: 0;
}

.card:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(5deg);
    border: 3px solid var(--clr-orange-400);
    border-radius: 40px 0 40px 0;
}

.icon-text {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: .5rem;
}

.icon-text--icon img {
    width: 50px;
    height: auto;
}

.icon-text--text h3 {
    color: var(--clr-orange-400);
}

footer {
    background-color: var(--clr-pink-400);
}

footer a,
footer a:visited {
    color: white;
    text-decoration: none;
}

footer a:focus {
    text-decoration: underline;
}