@font-face {
    font-family: "Roboto";
    src: url("./Schriftarten/Roboto-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Roboto";
    src: url("./Schriftarten/Roboto-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Roboto Slab";
    src: url("./Schriftarten/RobotoSlab-Thin.ttf") format("truetype");
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Roboto Slab";
    src: url("./Schriftarten/RobotoSlab-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Roboto Slab";
    src: url("./Schriftarten/RobotoSlab-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Roboto Slab";
    src: url("./Schriftarten/RobotoSlab-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    color:white;             
    text-shadow: 13px 13px 18px rgba(66, 25, 51, 0.55);   
    text-decoration: none;  
    font-size: 18px;
}

body {
    font-size: 87.5%;
    margin: 0;
    padding: 0;
	text-align:center;
	height: 100%;
    background-color: #552341; 
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}

 .content-box {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 90%;
    max-width: 1400px;
    height: 80px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;    
    z-index: 100;
}

.header-image {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1400px;
    height: 80px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    z-index: 10;
    pointer-events: none;
}

.header-image img {
    position: absolute;
    top: 0;
    right: -50px;
    width: 225px;      
    height: auto;
    z-index: 10;
}

.logo { 
    display: flex;
    align-items: center;
    margin-left: 50px;
}

.logo img {
    height: 100px;
}

.menu {
    grid-column: 2; 
    display: flex;
}

.menu-icon {
    grid-column: 2;
    align-self: start; 
    font-size: 54px;
    cursor: pointer; 
    margin-top: -17px; 
    margin-left: 15px;  
    padding-right: 5px;
}

.menu-text {
    align-items: flex-start;
    text-align: left;
    font-size: 24px;
    font-style: normal;
}


/* ---------------------------------------------------------------------- */
/* Hintergrund FIXED  */
/* ---------------------------------------------------------------------- */

#impressionen {
    background-image: url("./images/bg_home.jpg");
}

#vermietung {
    background-image: url("./images/bg_vermietung.jpg");
}

@media (max-width: 768px) {
    .content-box {
        background-attachment: scroll;
    }
}
/* ---------------------------------------------------------------------- */
/* Überschriften */
/* ---------------------------------------------------------------------- */


.content {
    position: relative;
    z-index: 20;
    padding-top: 100px;
    padding-bottom: 50px;
    width: 90%;
    max-width: 1400px;
    margin: auto;
}

.hero {
    margin-bottom: 50px;
    text-align: right;
}

.hero h1 {
    font-family: "Roboto Slab", serif;
    font-size: 5.31em;
    font-weight: 700;
}

.hero h2 {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    padding-top: 10px;
    font-size: 1em;
}

.hero_2 {
    margin-bottom: 50px;
    text-align: left;
}

.hero_2 h1 {
    font-family: "Roboto Slab", serif;
    font-size: 85px;
    font-weight: 700;
    text-shadow: 13px 13px 18px rgba(66, 25, 51, 0.55);
}


/* ---------------------------------------------------------------------- */
/* IMPRESSIONEN        */
/* ---------------------------------------------------------------------- */

#impressionen hr{
    color:  white;
    height: 1px;
    border: none;  
    background-color: white; 
}

.imp {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 4vw, 50px);  
    width: 100%;
    max-width: 1390px;
    margin: 0 auto;
    margin-bottom: 50px;
}

.imp-item {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 430px;
    max-height: 330px;
    z-index: 10;
}

.imp-item.large {
    max-width: 910px;
    max-height: 710px;
    grid-column: span 2;
    grid-row: span 2;
}

.imp-item.large_3 {
    max-width: 1390px;
    width: 100%; 
    max-height: none;
    grid-column: span 3;
    grid-row: span 2;
    padding: 50px;
    box-sizing: border-box;
}

.special-layout {
    grid-column: span 3; 
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 50px;
}

.special-layout > .imp-item:not(.forfun) {
    width: 100%;
    max-width: none;
    justify-self: stretch;
}


.special-layout .imp-item:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
    max-width: 430px;
}

.special-layout .imp-item:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
    max-width: 430px;
}

.special-layout .forfun {
    grid-column: 2 / span 2;
    grid-row: 1 / span 2;
    width: 100%;
    max-width: none;
}

.imp-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 11;
}

.imp-text {
    position: absolute;
    z-index: 12;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.imp-text-low{
    position: absolute;
    z-index: 12;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 10%;
}

.imp-item h1 {
    font-family: "Roboto Slab", serif;
    position: static;
    text-align: center;
    font-size: 63px;
    z-index: 12;
    font-weight: 700;
}

.imp-item h3 {
  font-family: "Roboto", sans-serif;
  position: static;
  text-align: center;
  font-size: 42px;
  z-index: 12;
  font-weight: 300;
}

.imp-item h2 {
  font-family: "Roboto Slab", serif;
  position: static;
  text-align: center;
  font-size: 28px;
  z-index: 12;
  font-weight: 700;
}

.imp-item h4 {
  font-family: "Roboto", sans-serif;
  position: static;
  text-align: center;
  font-size: 18px;
  z-index: 12;
  font-weight: 300;
}

.imp-text.black h1,
.imp-text.black h3 {
    color: black;
}
/* ---------------------------------------------------------------------- */
/* TERMINE        */
/* ---------------------------------------------------------------------- */


.termine {
    position: relative;
    overflow: hidden;
    margin-bottom: 50px;
}

.termine-track {
    display: flex;
    transition: transform 0.35s ease;
}

.termine-slide {
    min-width: 100%;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: clamp(20px, 4vw, 50px);
}

.termine-item {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 430px;
    max-height: 710px;
    z-index: 5;
}

.termine-item.terminejpg {
    max-width: 910px;
    max-height: 710px;
    width: 100%;
}

.termine-item.text {
    max-width: 430px;
    max-height: 710px;
    padding-top: 0px;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;  
    text-align: center;
}

.termine-item.text::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.6); 
    z-index: 7;
}
.termine-item.text > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 6;
}

.termine-item.text .event{
    position: relative;
    z-index: 7;
    width: 100%;
    max-width: none;
    padding: 50px;
    box-sizing: border-box;
    text-align: left;
    color: #552341;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.overline{
    font-family: "Roboto Slab", serif;
    font-weight: 700;
    font-size: 22px;
    color: #000;
    margin-bottom: 5px;
}

.title{
    font-family: "Roboto Slab", serif;
    font-weight: 700;
    font-size: 51px;
    line-height: 0.95;
    color: #321928;
    margin-bottom: 15px;
}

.subtitle{
    font-weight: 300;
    font-size: 23px;
    color: #000;
    margin-bottom: 55px;
}

.event-head{
    margin-top: 0px;
    text-align: right;
}
    

.date{
    font-weight: 700;
    font-size: 18px;
    color: #000;
    margin-bottom: 20px;
}

.description{
    font-weight: 300;
    font-size: 18px;
    line-height: 1.45;
    color: #000;
    margin-bottom: 30px;
}

.tickets{ 
    font-weight: 300;
    font-size: 18px;
    color: #000;
}

.tickets strong{
    font-weight: 700;
    color: #000;
}


/* POKERTURNIERE        */

.termine-item.text {
    position: relative;
    width: 100%;
    overflow: hidden;
}

#pokerturniere {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    padding: 40px;
    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;

    color: white;
    font-family: "Roboto", sans-serif;
}

/* Logo */
#pokerturniere > img {
    width: 75%;
    height: auto;
    display: block;

    padding: 0;
    margin: 0 0 35px 0;
}

/* Überschrift */
#pokerturniere p {
    font-size: 22px;
    font-weight: 300;

    margin-bottom: 30px;

    color: white;
}

/* Infoboxen */
#pokerturniere div {
    background: rgba(70, 25, 50, 0.82);

    padding: 25px;
    margin-bottom: 25px;

    width: 75%;
    box-sizing: border-box;

    font-size: 22px;

    color: white;
}

.termine-item.text:has(#pokerturniere)::before {
    display: none;
}

#termine {
    position: relative;
}

.termine-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    z-index: 120;
}

.termine-arrow-left {
    left: 1.5vw;
}

.termine-arrow-right {
    right: 1.5vw;
}









/* ---------------------------------------------------------------------- */
/* VERMIETUNG        */
/* ---------------------------------------------------------------------- */

.bg{
background-color: #552341;
}
.imp-item.large.bg {
    display: block;
}
.grundriss {
    width: 100%;
    height: 100%;
    padding: 50px;
    box-sizing: border-box;
    position: relative;
}
.grundriss h1 {
    position: absolute;
    top: 50px;
    left: 50px;
    margin: 0;
}
.grundriss img {

    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);

    max-width: 810px;
    height: auto;
}

.distance {
    display: inline-block;
    width: 70px;
    font-weight: 600;

  text-align: right;
  margin-right: 10px;
  margin-left: 5px;
  white-space: nowrap;
}

.list li::after {
  content: "";
}

.label {
  order: 1;
  text-align: left;
  white-space: nowrap;
}

/* ---------------------------------------------------------------------- */
/* Preisliste        */
/* ---------------------------------------------------------------------- */

.preise {
    width: 100%;
    font-size: 18px;
}

.preise h1, 
.preise h2 {
    text-align: left;
    font-size: 60px;
    font-weight: bolder;
}

.preise h2 {
    margin-top: 50px;
    font-size: 18px;}

.preise p {
    text-align: left;
    margin: 5px 0;
}

.ink {
    text-align: left;
    margin: 5px 0px 0px 30px;
}
.miete {
    display: flex;
    justify-content: space-between; 
    align-items: center;
    margin: 20px 0 20px -20px;
    background-color: #311928; 
    color: white;             
    padding: 20px;
}   

.euro {
    text-align: right; 
}

.bould {
    font-weight: bold;
}

.preise ul{
    list-style: disc;
    margin-top: 30px;
    text-align: left;
}


/* ---------------------------------------------------------------------- */
/*         */
/* ---------------------------------------------------------------------- */

.impressum{
    margin-top: 150px;
}
.impressum{
    margin-top: 150px;
}

#kontakt_impressum .imp-item,
#kontakt_impressum .imp-item.large {
    max-height: none;
    height: auto;
    overflow: visible;
    align-items: flex-start;
}

#kontakt_impressum .imp-item,
#kontakt_impressum .imp-item > div {
    text-align: left;
}


   

@media (max-width: 1300px) {
    /* Vorhandener Code */
    .content-box {
        background-attachment: scroll;
    }

   
    .imp {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

 
    .imp-item.large, 
    .imp-item.large_3,
    .special-layout {
        grid-column: span 2; 
    }

    .special-layout {
        grid-template-columns: 1fr; 
    }

   
    .termine-slide {
        grid-template-columns: 1fr;
    }

    .termine-item.text, 
    .termine-item.terminejpg {
        max-width: 100%; 
        max-height: none; 
    }
}