/* poppins-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: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url('assets/fonts/poppins-v23-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* poppins-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: 'Poppins';
  font-style: normal;
  font-weight: 700;
  src: url('assets/fonts/poppins-v23-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

*{
    box-sizing: border-box;
}

body{
    padding: 0;
    margin: 0;
    background: #2b2b2b;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #fff;
}

h1{
    font-size: 2em;
}

h2{
    font-size: 1.5em;
}

header.contentpage{
    margin-bottom: 60px;
}

a{
    color: #fff;
}

.main_wrapper{
    width: 100%;
    height: 100dvh;
    overflow: hidden;
    position: relative;
    background: url(/assets/bg_berge-tirol.jpg);
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main_wrapper .inner{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main_wrapper_contentpage{
    margin: 0 auto;
    max-width: 1280px;
    width: 100%;
    padding: 20px 50px;
}

h1.hidden{
    visibility: hidden;
    opacity: 0;
    height: 0;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

img.rh_logo{
    width: 400px;
    max-width: 60vw;
    height: auto;
}

img.rh_logo.contentpage{
    width: 250px;
}

.footer{
    width: 100%;
    padding: 20px 50px;
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
}

.footer.contentpage{
    position: unset;
    padding: unset;
    margin-top: 60px;
}

.footer ul{
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
}

.footer ul li a{
    color: #fff;
    text-decoration: none;
}

.copy_link {
    position: relative;
    display: inline-block;
    cursor: pointer;
    color: #fff;
}

/* Tooltip-Standardstil */
.copy_link::after {
    content: "Klicken zum Kopieren";
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(60, 60, 60, 0.9);
    color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 11px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease-in-out;
}

/* Tooltip-Pfeil */
.copy_link::before {
    content: "";
    position: absolute;
    bottom: 115%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: rgba(60, 60, 60, 0.9) transparent transparent transparent;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}

.copy_link:hover::after,
.copy_link:hover::before {
    opacity: 1;
}

/* Zustand wenn geklickt */
.copy_link.copied::after {
    content: "Kopiert!";
    background-color: rgba(100, 100, 100, 0.9);
}

@media all and (max-width: 980px){
    .main_wrapper_contentpage h1{
        font-size: 24px;
    }
    .main_wrapper_contentpage h2{
        font-size: 18px;
    }
    .main_wrapper_contentpage main p{
        font-size: 14px;
    }
    .main_wrapper_contentpage{
        padding: 20px 30px;
    }
    .footer{
        flex-direction: column-reverse;
        gap: 30px;
    }
    .footer>div{
        margin: 0 auto;
    }
}