@font-face {
    font-family: 'Plateia Bold';
    src: url('../fonts/Plateia Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Edmundsbury';
    src: url('../fonts/Edmundsbury Sans Regular v2.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-VariableFont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Tenor';
    src: url('../fonts/TenorSans-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'NotoSerifJP-Regular';
    src: url('../fonts/NotoSerifJP-Medium.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --text-0: rgb(80, 80, 80);
    --text-1: rgb(144, 126, 99);
    --bg-0: rgb(249, 246, 240);
    --bg-1: rgb(238 233 225);
    --bg-2: rgb(212 203 189);
    --bg-3: rgb(142 122 93);
}

body {
    background-color: var(--bg-0);
    color: var(--text-0);
    font-family: 'NotoSerifJP-Regular';
    font-size: 1.2rem;
}

.my-shadow {
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-1);
    font-family: 'Inter';
}

h1, h2 {
    text-align: center;
    font-size: 3.5rem;
    margin-top: 4rem;
    margin-bottom: 2rem;
}

h3 {
    font-size: 2.5rem;
}

h4 {
    font-size: 1.75rem;
}

h5 {
    font-size: 1.5rem;
}

a {
    color: var(--text-1);
}

a:hover {
    color: var(--text-0);
}

p, ul, li {
    line-height: 2rem;
}

cite {
    background-color: var(--bg-0);
    margin: 1rem;
    padding: 2rem;
    border-radius: 0 0 3rem 0;
    display: block;
    color: var(--text-1);
    font-size: 1.5rem;
    margin-bottom: 5rem;
}

ul.custom-li {
    padding-left: 20px;
}

.custom-li li {
   list-style: none;
   position: relative;
   padding-left: 24px;
}

.custom-li li::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 4px;
  width: 26px;
  height: 26px;

  background-color: var(--text-1);
  opacity: 0.5;

  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='32px' height='32px' viewBox='0 0 24 24'><circle cx='12' cy='12' r='9' stroke='black' stroke-width='2' fill='none'/><path d='M7 12H17M17 12L14.5 14.5M17 12L14.5 9.5' stroke='black' stroke-width='2' fill='none'/></svg>") no-repeat center;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='32px' height='32px' viewBox='0 0 24 24'><circle cx='12' cy='12' r='9' stroke='black' stroke-width='2' fill='none'/><path d='M7 12H17M17 12L14.5 14.5M17 12L14.5 9.5' stroke='black' stroke-width='2' fill='none'/></svg>") no-repeat center;

  -webkit-mask-size: contain;
  mask-size: contain;
}

#header {
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

#header h1 {
    font-family: 'Plateia Bold';
    font-size: 2.5em;
    letter-spacing: 2.5em;
    color: var(--text-1);
    margin-top: 0;
    margin-left: 5.7rem;
    margin-bottom: 1rem;
}

#header h2 {
    font-family: 'Edmundsbury';
    font-weight: 300;
    font-size: 1.25em;
    letter-spacing: 0.25em;
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--text-0);
}

#header .with-lines {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

#header .with-lines::before,
#header .with-lines::after {
    content: "";
    width: 60px;
    height: 1px;
    background-color: var(--text-0);
}

nav {
    background-color: var(--bg-0);
    box-shadow: 6px 6px 6px 0 rgba(122,98,0,0.05);
    -webkit-box-shadow: 6px 6px 6px 0 rgba(122,98,0,0.05);
    -moz-box-shadow: 6px 6px 6px 0 rgba(122,98,0,0.05);
}

a.nav-link {
  font-family: 'Edmundsbury';
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text-1);
}

a.nav-link:hover {
  transition: ease;
  color: var(--text-0);
}


article {
    min-height: 100vh;
    margin-top: 4rem!important;
    padding-top: 2rem;
}

section h2 {
    font-family: 'Inter';
    font-weight: 300;
    font-size: 3rem;
    text-align: center;
    color: var(--text-1);
}

.headline {
    font-family: 'Inter';
    letter-spacing: 0.2em;
    font-size: 5em;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-1);
}

.overlap-col {
  position: relative;
}

.overlay-content {
  position: absolute;
  right: -100px;   /* ragt in die zweite Spalte hinein */
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

#andrea-und-sophia {
  -webkit-mask-image: radial-gradient(circle, black 80%, transparent 100%);
  mask-image: radial-gradient(circle, black 80%, transparent 100%);
  width: 100%;
  max-width: 500px;
}

.copyright a {
    color: var(--text-1);
    opacity: 0.4;
    font-size: 0.8rem;
}

#wer-wir-sind-header-rot {
    display: none;
}

.wer-wir-sind-image {
    max-width: 100%;
}

figure {
  position: relative;
  margin: 0;
}

figure img.wer-wir-sind-teamwork {
    display: block;
    margin: 0 3rem 3rem 3rem;
    border-radius: 0 0 9rem 0;
    max-width: 100%;
    filter: brightness(1.1) saturate(0.5);
}

figure figcaption {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    color: white;
    font-size: 4rem;
    font-weight: bold;
    text-align: left;
    font-family: 'Edmundsbury';
}

.wer-wir-sind-textbox {
    background-color: var(--bg-2);
    display: block;
    padding: 1rem 2rem;
    margin-top: 2rem;
    border-radius: 0 0 3rem 0;
}

ul {
    margin-left: 1rem;    
    list-style-type: circle;
}

.wer-wir-sind-textbox ul li {
    margin-bottom: 0.5rem;;
}

.team {
    background-color: rgba(212, 203, 189, 0.3);
    border-radius: 0 0 3rem 0;
    max-width: 1200px;
    padding:1rem;
    margin: 0 1rem 3rem 1rem;
}

.unser-team-img {
    width: 100%;
    border-radius: 0 0 3rem 0;
    margin: 1rem 0;
}

.package {
    background-color: var(--bg-1);
    padding: 1rem 1rem 1rem 1rem;
    height: 100%;
}

.package-card {
    background-color: var(--bg-2);
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    padding: 1rem;
}


.package-image img {
    width: 100%;
    border-radius: 0 0 1rem 1rem;
    object-fit: cover;
}

.package-content {
    padding: 20px 10px;
}

.package-content h4 {
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.package-content p {
    line-height: 1.5;
    color: var(--text-0);
}

.package-list {
    margin-top: 15px;
}

.package-list ul {
    padding-left: 2rem;
    margin: 1rem 0 0 0;
    list-style-type: circle;
}

.package-list li {
    margin-bottom: 0.5rem;
}

.package-preis {
    margin-top: -3rem;
    background: var(--bg-3);
    color: var(--bg-1);
    text-align: center;
    padding: 1rem 1rem;
    border-radius: 3rem;
    height: 6rem;
    border: 0.25rem solid var(--bg-1);
}

.preis-main {
    font-size: 24px;
    font-weight: bold;
}

.preis-sub {
    font-size: 13px;
    opacity: 0.9;
}

#preisliste-einzelbuchungen,
#preisliste-packages {
    margin-bottom: 3rem;
}

.preisliste-border {
  border: 1px solid var(--bg-2) !important;
  border-radius: 0 0 3rem 0;
}

.preisliste-legend {
  color: var(--text-1);
  font-size: 1.75rem;
  letter-spacing: 0.15rem;
  font-weight: 400;
  text-transform: uppercase;
}

.preisliste-list {
  color: var(--text-1);
  letter-spacing: 0.1rem;
}

.preisliste-item {
    position: relative;
}

footer {
    display: block;
    background-color: var(--bg-3);
    min-height: 160px;
    color: var(--bg-0);
}

footer a {
    display:block;
    color: var(--bg-1);
    margin: 1rem;
    font-family: 'NotoSerifJP-Regular';
    text-decoration: none;
}

footer a:hover {
    display:block;
    color: var(--bg-2);
}

#impressum .card.card-body,
#datenschutzerklaerung .card.card-body {
    background-color: var(--bg-1);
    color: var(--text-0);
    font-size: 1rem;
    padding: 1rem 2rem;
}

#impressum .card.card-body a,
#datenschutzerklaerung .card.card-body a {
    display: initial;
    color: var(--text-1);
}

#impressum .card.card-body a:hover,
#datenschutzerklaerung .card.card-body a:hover {
    color: var(--text-0);
}
bold {
    font-weight: 800;
}


@media screen and (max-width: 1200px) {
    .headline {
        font-size: 4.2rem;
    }
}

@media screen and (max-width: 880px) {
    .headline {
        font-size: 4rem;
    }
}

@media screen and (max-width: 730px) {

    #wer-wir-sind {
        margin-top: 1rem!important;
    }

    .wer-wir-sind-image {
        max-width: 180px;
        margin-bottom: 1rem;;
    }

    p, ul, li {
        font-size: 1.2rem;
        line-height: 2rem;
    }

    ul.custom-li {
        padding-left: 12px;
    }

    .custom-li li {
    list-style: none;
    position: relative;
    padding-left: 12px;
    }

    .headline {
        font-size: 3rem;
    }

    #header {
        margin: 0;
    }

    #header h1 {
        letter-spacing: 1em;
        margin-left: 2rem;
        margin-bottom: 0.5rem;
    }

    #header h2 {
        margin-bottom: 0;
    }
    
    figure {
        margin: 0 0 6rem 0;
    }

    figure img.wer-wir-sind-teamwork {
        display: block;
        margin: 0;
        border-radius: 0 0 2rem 0;
        filter: brightness(1.1) saturate(0.5);
    }

    figure figcaption {
        color: white;
        font-weight: bold;
        text-align: right;
        font-size: 2.0rem;
        line-height: 1.2;
        margin-left: 1rem;
        position: absolute;
        top: 140px;
    }

    :has(> .package) {
        margin-top: 6rem;
    }
}