/* Farbpalette */
:root {
    --blue: #3E4899;
    --red: #D63030;
    --pink: #EA7CA8;
    --green: #86C48D;
    --black: #010101;
    --white: #ffffff;
  }

  body {
    margin: 0;
    padding: 0;
    font-family: 'gopher', sans-serif;
    background-color: var(--white);
    color: var(--black);
    overflow: scroll;
    scrollbar-width: none;  /* Firefox */
  }

body::-webkit-scrollbar {  /* Webkit-basierte Browser */
  display: none;
}

/* Header */
header {
    position: relative; 
    width: 100%;  
    background-color: transparent; 
}

/* Sections */

.start{
  margin: 2rem 1rem 5rem 0;
}

.section-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0; 
}

@media screen and (min-width: 770px) {
  .section-grid {
    grid-template-columns: 1fr 1fr;
  }

}
  
.impressum-content{
  padding: 1rem 2rem 2rem 2rem;
  position: relative;
}

.section-content{
  padding: 1rem 2rem 2rem 2rem;
  position: relative;
}



.text-block {
  position: relative;
  z-index: 1;
}

.scribble {
  position: absolute;
  bottom: -5em;
  left: 60%;
  transform: translateX(-60%);
  z-index: 0;
  width: 24rem;
}

.edition-scribble {
  position: absolute;
  bottom: -1.5em;
  left: 98%;
  transform: translateX(-98%);
  z-index: 0;
  width: 10rem;
}



.circled-scribble {
  position: absolute;
  bottom: 1.6em;
  left: 2%;
  z-index: 0;
  opacity: 1;
  width: 22rem;
}

.impressum-header{
  margin-top: 3rem;
}

.section-header h2 {
  margin-left: 2rem;
  text-transform: uppercase;
}

.section-header .line {
  width: 100%;
  height: 1px;
  margin: 0.5rem 0;
  background-color: var(--black);
}

.section-end-line {
  margin-top: 2rem;
  height: 1px;
  background-color: #000;
}

.section-end-line-plus {
  margin-top: 2rem;
  margin-bottom: 2rem;
  height: 1px;
  background-color: #000;
}

.red {
  background-color: var(--red);
  border-bottom: var(--black) solid 1px;
}

.white {
background-color: var(--white);
border-bottom: var(--black) solid 1px;
}

.green {
  background-color: var(--green);
  border-bottom: var(--black) solid 1px;
}

.blue {
background-color: var(--blue);
border-bottom: var(--black) solid 1px;
}

.pink {
background-color: var(--pink);
border-bottom: var(--black) solid 1px;
}


/* Section Content */

.align-center {
  display: block;
  max-width: 10rem;
  height: auto;
  margin: 1rem auto;
}

.align-right {
  display: block;
  margin-left: auto;
  margin-right: 0;
  max-width: 60%;
}

.shop-images {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 1rem 0;
}

.shop-images img {
  display: none;
}

.shop-images img:first-child {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.shop-description-container {
display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;

}


.shop-description-left {
  flex: 2;
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.shop-description-right {
  flex: 1;
  text-align: right; 
}


.shop-description-right .price {
  font-weight: 600;
  margin-bottom: 5rem;
}

.shop-description-right a {
  text-decoration: none;
  font-weight: bold;
  margin-top: 0.5rem;
}

.shop-info-box {
  border: 1px solid black;
  padding: 0 1rem;
}

@media screen and (min-width: 770px) {
  .shop-images {
    grid-template-columns: repeat(2, 1fr);
  }

  .shop-images img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }

  .shop-details-row {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
  }

  .shop-description-container {
    flex: 1;
  }

  .shop-info-box {
    flex: 1;
    margin-top: 0; 
  }
}


 /* Headings */
h2 {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--black);
    letter-spacing: -5;
    text-transform: uppercase;
}
  
h3 {
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0.5rem 0 0 0;
}

h4 {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--black);
    letter-spacing: -5;
    margin: 1rem 0;
}
  
/* Paragraphen */
  p {
    font-size: 1.2rem;
    line-height: 130%;
    font-weight: 400;
  }

  
  /* Links */
  a {
    color: var(--black);
    text-decoration: underline;
  }
  
  a:hover {
    color: #EA7BA7;
}

.kaufen {
  display: inline-block;
  border: 2px solid black;
  padding: 0.3rem 1rem;
  margin-top: 1rem;
  text-align: center;
  width: fit-content;
}

.text-link {
  text-decoration: underline;
  color: var(--black);
}

.menu-link {
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--black);
  letter-spacing: -5;
  margin-right: 2em;
}

/* Instagram-Link */
.instagram-link {
    position: fixed;  
    top: 10px;  
    left: 10px;  
    font-size: 1.2em;
    color: var(--black); 
    text-decoration: underline;
    padding: 10px;
    z-index: 1;
}

.instagram-link:hover {
    color: var(--pink);
}


ul{
  list-style: none;
  padding: initial;
}

li{
margin-bottom: 1em;
font-size: 1.2rem;
}

/* Festes Logo */
.fixed-logo {
  position: fixed;
  bottom: 1em;
  left: 5%;
  width: 150px;
  height: auto;
  z-index: 10;
  transform: translateX(-5%);
}
  
  
/*Flip Text (z. B. upside down) */
  .flipped {
    transform: rotate(180deg);
    text-align: center;
  }


/*BIG TEXT*/
.big-text, .big-text.flipped {
    background-color: var(--red);
    padding: 0.2rem 0.5rem;

}

/* Footer */
.footer-content{
  padding: 2rem;
}

