
@font-face {
    font-family: 'TT_Norms';
    src: url('fonts/TT-Norms-Pro-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'TT_Norms';
    src: url('fonts/TT_Norms_Pro-Bold.woff') format('woff');
    font-weight: 700;
    font-style: bold;
}

html, body {
    overflow-x: hidden; /* Verhindert seitliches Scrollen */
}

body {
    background-color: #FFFFFF;
    font-weight: 200;
    font-family: 'TT_Norms', sans-serif;
    padding-left: 10px;
    padding-right: 10px;
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.42, 0, 1, 1) 0.3s; /* Ease-in transition with delay */
}

body.fade-in {
    opacity: 1;
}

body.fade-out {
    opacity: 0;
}




.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.burger-menu, .logo, .back {
    width: 50px; /* Adjust as needed */
    height: 50px; /* Adjust as needed */
}



.burger-menu {
    margin-left: 10px;
    width: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    z-index: 1000;
}

.journal-icon{
    width: 30px;
    margin-right: 10px;
}



.full-screen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000; /* Add this line */
}

.full-screen-menu a{
    font-size: 16px;
    color: black;
    text-decoration: none;
}



.full-screen-menu ul {
    list-style-type: none;
    padding: 0;
}

.full-screen-menu ul li {
    margin-bottom: 20px;
}

.hidden {
    display: none;
}

.close-button {
    position: absolute;
    top: 16px;
    left: 18px;
    cursor: pointer;
    width: 30px; /* Adjust as needed */
}


h1{
    font-size: 120px;
    font-family: 'Merriweather', serif;
    margin-top: 120px;
    margin-bottom: 40px;
}

.h1-edition{
    margin-left: 10px;
}


h2{
    font-family: 'Merriweather', serif;
    font-size: 18px;
    letter-spacing: 1.1px;
    margin-bottom: 20px;
}
p.h2-style {
    font-family: 'Merriweather', serif;
    font-weight: 600;
    font-size: 18px;
}

h3{
    font-family: 'Merriweather', serif;
    letter-spacing: 1.1px;
    margin-bottom: 0px;
    font-size: 20px;
}





h4 {
    font-size: 40px;
    font-weight: 200;
    margin-top: 0px;
    margin-bottom: 0px;
    max-width: 1100px;
}

h5 {
    font-size: 40px;
    font-weight: 200;
    margin-top: 0px;
    margin-bottom: 0px;
    max-width: 1400px;
}

p{
    line-height: 1.3;
    margin-right: 20px;
    word-wrap: break-word;
    font-size: 20px;
    margin-top: 14px;
}

.big-link{
    font-size: 40px;
    font-weight: 200;
    opacity: 0.4;
    transition: opacity 0.3s ease; /* Add this line for smooth transition */
    letter-spacing: normal;
}

.big-link:hover {
    opacity: 1.0;
}







.navbar {
    box-sizing: border-box;
    position: fixed;
    top: 0;
    width: calc(100% - 40px);
    height: 60px;
    display: flex;
    justify-content: space-between;
    padding-left: 20px;
    align-items: center;
    background-color: #fff;
    z-index: 1000;
    overflow: hidden; /* Verhindert, dass Inhalte über die Navbar hinausgehen */
}

.nav-center {
    position: relative;
    margin-right: -25px;
}


#menu-button{
    z-index:1001;
}


#logo, #lightstone {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%) scale(1.0); /* Initiale Skalierung */
    transition: all 0.5s ease;
}



#lightstone {
    opacity: 0; /* Versteckt zu Beginn */
    top: 60px;  /* Startpunkt außerhalb des Viewports */
}

.scrolled #lightstone {
    opacity: 1;
    top: -20px;  /* Bewegt das neue Logo nach oben */
    transform: translateX(-50%) scale(1.0); /* Verkleinert das neue Logo */
}

#logo {
    opacity: 1; /* Versteckt zu Beginn */
}

.scrolled #logo {
    opacity: 0;
    top: -80px; /* Bewegt das ursprüngliche Logo nach oben */
}



.overlay {
    height: 0%;
    width: 100%;
    max-width: 1800px; /* Maximale Breite von 1800px */
    margin: 0 auto; /* Zentriert das Overlay-Menü, wenn die Breite kleiner als 1800px ist */
    position: fixed;
    top: 0;
    left: 0;
    right: 0; /* Zentriert das Overlay-Menü */
    background-color: #ffffff;
    overflow-y: hidden;
    transition: 0.5s;
    z-index: 999; /* Über der Navbar */
}

.overlay-content {
    position: relative;
    top: 200px; /* Positioniert den Text 200px vom oberen Rand */
    text-align: left; /* Text linksbündig ausrichten */
    padding-left: 40px; /* Optional: Padding hinzufügen, um Abstand zum Rand zu schaffen */
}

.overlay-content a {
    padding: 8px;
    text-decoration: none;
    font-size: 40px;
    color: #000;
    opacity: 0.5;
    display: block; /* Beibehaltung der Blockanzeige für vertikale Ausrichtung */
    transition: opacity 0.3s ease; /* Für eine sanfte Übergangsanimation */
    padding-left: 0px;
    width: fit-content; /* Passt die Breite an die Zeichenlänge an */
}

.overlay-content a:hover {
    opacity: 1.0;
}






a {
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: black;
    letter-spacing: 1px;
    margin-right: 20px; /* Optional: if you want to keep the margin */
}

a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #000;
    transition: transform 0.3s ease-in-out;
    transform: scaleX(0);
    transform-origin: left;
}

/* Specific rule for overlay-content links and big-link */
.overlay-content a::before,
.big-link::before {
    height: 3px;
}

a:hover::before {
    transform: scaleX(1);
}

a:not(:hover)::before {
    transform: scaleX(0);
    transform-origin: right;
}






.nav-left{
    width: 116px;
}


.nav-left a {
    display: inline-block;

}




.nav-left a, .nav-right a, .order a {
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: black;
    letter-spacing: 1px;
}

.nav-left a::before, .nav-right a::before, .order a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #000;
    transition: transform 0.3s ease-in-out;
    transform: scaleX(0);
    transform-origin: left;
}

.nav-left a:hover::before, .nav-right a:hover::before, .order a:hover::before {
    transform: scaleX(1);
}

.nav-left a:not(:hover)::before, .nav-right a:not(:hover)::before, .order a:not(:hover)::before {
    transform: scaleX(0);
    transform-origin: right;
}






.overlay-size-chart {
    visibility: hidden; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.75); /* Semi-transparent background */
    justify-content: center;
    align-items: center;
    z-index: 99999;
    opacity: 0; /* Initial opacity */
    transition: opacity 0.3s ease, visibility 0.3s ease; /* Smooth transition for opacity and visibility */
    backdrop-filter: blur(0px); /* Initial blur */
}

.overlay-size-chart.active {
    visibility: visible; /* Make visible */
    opacity: 1; /* Full opacity */
    backdrop-filter: blur(10px); /* Apply blur when active */
}

.overlay-size-chart-content {
    position: absolute; /* Ensure the close button is positioned relative to this container */
    right: 0;
    background-color: white;
    width: 55vw;
    height: 100vh;
    padding: 15vh 200px 200px 200px;
    box-sizing: border-box;
    transform: translateX(100%); /* Start off-screen to the right */
    transition: transform 0.3s ease, padding 0.3s ease; /* Smooth transition for transform and padding */
}

.overlay-size-chart.active .overlay-size-chart-content {
    transform: translateX(0); /* Move into view */
}

.overlay-size-chart.active .overlay-size-chart-content {
    transform: translateX(0); /* Move into view */
}

.overlay-size-chart-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 100px;
}

.overlay-size-chart-content th, .overlay-size-chart-content td {
    padding: 20px;
    text-align: left;
}

#close-overlay {
    position: absolute;
    top: 50px; /* Adjust as needed */
    right: 50px; /* Adjust as needed */
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    letter-spacing: 1.2px;
}

.overlay-size-chart-content table tr:nth-child(odd) {
    background-color: #ffffff; /* Light gray background for odd rows */
}

.overlay-size-chart-content table tr:nth-child(even) {
    background-color: #f2f2f28f; /* White background for even rows */
}





.email-input {
    border: none;
    border-bottom: 2px solid #00000030;
    font-size: 40px;
    font-weight: 200;
    font-family: 'TT_Norms', sans-serif;
    outline: none;
    width: 49%; /* Ensure the input takes the full width */
    padding: 5px 0; /* Add some padding for better appearance */
    color: #dbdbdb; /* Set initial text color to black */
}



.input-arrow {
    margin-bottom: -7px;
    margin-left: -49px;
    width: 40px; /* Adjust the size as needed */
    height: 40px; /* Adjust the size as needed */

    opacity: 0.3; /* Initial opacity */
    transition: opacity 0.3s; /* Smooth transition */
}

.input-arrow:hover {
    opacity: 1.0; /* Opacity on hover */
}

.blinking-cursor {
    display: inline-block;
    width: 2px;
    height: 1em;
    background-color: black;
    animation: blink 1s step-end infinite;
    vertical-align: middle;
    margin-right: -10px;
}

@keyframes blink {
    from, to {
        background-color: transparent;
    }
    50% {
        background-color: black;
    }
}




#footer {
    position: absolute;
    bottom: 10px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#footer.contact-page {
    position: fixed;
    bottom: 50px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}



.footer-container a {
    color: #818181;
    text-decoration: none;
    margin: 0 0px;
    font-size: 18px;
}

.footer-container a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #000;
    transition: transform 0.3s ease-in-out;
    transform: scaleX(0);
    transform-origin: left;
}

.footer-container a:hover::before {
    transform: scaleX(1);
}

.footer-container a:not(:hover)::before {
    transform: scaleX(0);
    transform-origin: right;
}






a div {
    display: inline-block;
    transition: transform 0.3s;
    position: relative;
  }
  
  a div.clone {
    position: absolute;
    top: 0;
    transform: translateY(100%);
    transition: transform 0.3s;
  }
  
  a:hover div {
    transform: translateY(-100%);
  }
  
  a:hover div.clone {
    transform: translateY(-100%);
  }
  
  a div:nth-child(2n+1) { transition-delay: 0.05s; }
  a div:nth-child(2n+2) { transition-delay: 0.1s; }
  a div:nth-child(2n+3) { transition-delay: 0.15s; }
  a div:nth-child(2n+4) { transition-delay: 0.2s; }
  a div:nth-child(2n+5) { transition-delay: 0.25s; }
  /* Add more selectors depending on the maximum number of letters your links have */







  
.product-order {
    font-size: 20px !important;
    opacity: 0.5;
    transition: opacity 0.3s ease; /* Smooth transition */
}

.product-order:hover {
    opacity: 1.0;
}





.order{
    height: 20px;
    text-decoration: none;
    color: black;
    opacity: 0.5;
    font-size: 16px;
    letter-spacing: 1px;
    transition: opacity 0.3s ease; /* Add this line for smooth transition */
    margin-right: 0px;

}

.order:hover {
    opacity: 1.0;
}

.nav-center img {
    height: 30px; /* Adjust as needed */
}









#myVideo {
        width: 100%;
        height: auto;
    }

#muteButton {
    position: absolute;
    top: 40px;
    left: 40px;
    z-index: 1;
    font-weight: 300;
    padding-top: 20px;
    padding-bottom: 20px;

    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.mute-edition{
    margin-top: -40px;
}






.top-head{
    margin-top: 120px!important;
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 80px;
}

.headline-container {

    margin-top: 20px;
    margin-bottom: 80px;
    margin-left: 20px;
}

.headline-container h2 {
    font-family: 'Merriweather', serif;
}

.headline-container a {
    text-decoration: none;
    color: black;
}

.headline-container a {
    text-decoration: none;
    color: black;
}







.products{
    margin-top: 100px;
    margin-left: 20px;
    margin-right: 20px;
}

.product-box {
    display: flex;
    justify-content: space-between;
    margin-bottom: 80px;
    gap: 35px;
}

.product-cont {
    position: relative;
    width: calc(50% - 10px);

}

.product-cont img.back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.1s ease;
}

.product-cont:hover img.back {
    opacity: 1;
}

.product-cont img.front {
    width: 100%;
    height: auto;
}














.back-button, .next-button {
    position: absolute;
    mix-blend-mode: difference;
}





.video-container{
    padding-left: 20px;
    padding-right: 20px;
}





.shop-gallery{
    margin-top: 142px;
}


.image-wrapper {
    position: relative;
}

.back-button, .next-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.0);
    border: none;
}

.back-button::before, .next-button::before {
    content: '';
    position: absolute;
    top: -180px;
    left: -100px;
    right: -100px;
    bottom: -180px;
}

.back-button {
    left: 10px;
}

.next-button {
    right: 10px;
}







.image-pair-container {
    margin-top: 100px;
    margin-left: 20px;
    margin-right: 20px;
}

.image-pair-container-info {
    margin-top: 0px;
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 40px;
}

.image-pair-container-about {
    margin-top: 0px;
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 0px;
}

.image-row {
    display: flex;
    justify-content: space-between;
}

.image-wrapper {
    position: relative;
    overflow: hidden;
    width: 49%; /* slightly less than 50% to account for any potential padding or margins */
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    transition: transform 1.2s ease-in-out;
}

.image-wrapper:hover img {
    transform: scale(1.025);
}

.image-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding-top: 10px;
    background-color: #FFFFFF; /* semi-transparent white background */
}

.image-info-product {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding-top: 10px;
    background-color: #FFFFFF; /* semi-transparent white background */
}

.title{
    font-size: 16px;
}

.title-price {
    display: flex;
    flex-direction: column;
    height: 60px; /* Adjust this value as needed */
    overflow: hidden; /* This will hide any content that exceeds the height */
}

.date{
    font-size: 16px;
    opacity: 0.5;
    transition: opacity 0.3s ease-in-out;
    letter-spacing: 0px;
    margin-right: 0px;
}

.date:hover{
    opacity: 1.0;
}

.price{
    margin-top: 4px;
}

.price-detail-view{
    margin-top: 0px;
    margin-bottom: 50px;
}



.title, .date, .price {

}

.product-info{
    font-size: 20px;
    margin-left: 40px;
    margin-top: -20px;
    padding: 0;
    width: 50%;
}

.image-container {
    margin-left: 20px;
    margin-right: 20px;
}



.image-container-voll {
    display: flex;
    margin-left: 20px;
    margin-right: 8px;
    margin-top: 80px;
    margin-bottom: 180px;
    max-width: 1800px;
    align-items: center;
}

.image-wrapper-voll {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.image-wrapper-voll:first-child {
    margin-top: 56px;
    margin-right: 40px; /* Abstand zwischen den Bildern */
    flex: 1; /* Damit es sich ausdehnt */
}

.image-wrapper-voll:last-child {
    width: auto; /* Initial auf auto, wird später angepasst */
}

.image-wrapper-voll img {
    width: 99%;
    height: auto;
}

.caption,
.caption-left {
    text-align: left;
    font-size: 10pt;
    margin-top: 12px;
    align-self: flex-start;
    box-sizing: border-box;
}

.caption-left {
    margin-top: 56px;
}

@media (max-width: 800px) {
    .image-container-voll {
        flex-direction: column;
        margin: 0 auto 60px auto;
        width: calc(100vw - 20px);
    }

    .image-wrapper-voll:first-child {
        margin-top: 0px;
        margin-bottom: 60px;
        margin-right: 0; /* Kein Abstand mehr */
    }

    .image-wrapper-voll {
        width: 100%;
    }

    .caption-left {
        margin-left: 0;
        margin-top: 12px;
    }
}

.container {
    display: flex;
    width: 98.5%;
    margin-left:20px;
    margin-top: 10px;
}

.left{
    width: 33%;
}

.left h2 {
    font-family: 'Merriweather', serif;
    min-width: 200px;
}

.right {
    font-size: 20px;
    max-width: 66%;
    margin-left: auto; /* Push the element to the right */
    margin-bottom: 50px;
    margin-right:10px;
}

.right-interview {
    margin-top: -120px;
}

.report{
margin-top:-104px;
}

.right-sup{
    margin-left: 100px;
}

.right.sup {
    width: 25%;
}

.long-answer {
    margin-top: 20px;
    margin-left: 20px;
    margin-right: 40px;
    margin-bottom: 40px;
    line-height: 1.3;
    font-size: 20px;
}

.map{
    margin-top: 0px;
    margin-left: 20px;
    margin-right: 20px;
}


.supporters-info {
    display: flex;
    justify-content: space-between;
    flex-grow: 1;
    min-width: 66%;
    margin-left: auto; /* Push the element to the right */
}

.supporters-info p {
    flex: 1;
}



.footer-container {
    display: flex;
    justify-content: center;
    gap: 30px; /* Adjust as needed */
    padding-top: 30px;
    padding-bottom: 30px;
}

.footer-container-contact {
    display: flex;
    justify-content: center;
    gap: 10px; /* Adjust as needed */
    padding-top: 30px;
    padding-bottom: 10px;
    position: fixed; /* Fix the element at the bottom */
    bottom: 30px; /* 30px from the bottom of the viewport */
    width: 100%; /* Ensure it takes the full width */
    background-color: white; /* Optional: Set a background color */
    margin-left:10px;
}
    

.footer-container a {
    font-size: 16px;
    letter-spacing: 1px;
    color: #333; /* dark gray text */
    text-decoration: none;
}

.footer-container-contact{
    position: fixed;
    bottom: 30px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
}




#video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 1.0s ease;
}


#intro-video {
    margin-top: -50px;
    width: 80%;
    height: 80%;
    object-fit: cover;
}






img.title-pic-mob{
    width: 100%;
}


.grey-link {
    color: rgba(0, 0, 0, 0.4);
    letter-spacing: normal;
    transition: color 0.3s ease; /* Add smooth transition */
}

.grey-link:hover {
    color: rgba(0, 0, 0, 1);
}

table{
    margin-top: 20px;
}

/* Entfernen des grauen Hintergrunds beim Klicken auf Bilder, Links und Buttons auf mobilen Geräten */
img, a, .back-button, .next-button {
    -webkit-tap-highlight-color: transparent;
}


.breit{
    margin-top: 40px;
}








.image-row-video {
    display: flex;
    justify-content: space-between;
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 20px;
}

.image-wrapper-video {
    width: 49%; /* Passt die Breite der Wrapper an, damit sie nebeneinander passen */
    padding-bottom: 48%; /* Macht das Element quadratisch */
    position: relative;
}

.video-square {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Stellt sicher, dass das Video das Element vollständig ausfüllt */
    aspect-ratio: 1 / 1; /* Stellt sicher, dass das Element quadratisch bleibt */
}




.map-animation{
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: 30px;
}






/* Add these styles to your existing CSS file */
.overlay-donation {
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: white;
    transition: opacity 1s ease;
    z-index: 1000; /* Ensure it covers other content */
    opacity: 1;
}



.info-page .map-animation {
    margin-bottom: 0px !important;
}







.right ul {
    list-style-position: inside; /* Ensure bullets are inside the padding */
    padding-left: 20px; /* Adjust padding as needed */
}

.right ul li {
    text-indent: -22px; /* Negative indent to pull the first line back */
    padding-left: 10px; /* Padding to align wrapped lines */
    padding-right: 10px; /* Padding to align wrapped lines */
}


#imprint {
    padding-top:40px;
}

#shipping-returns{
    padding-top:40px;
}

#privacy{
    padding-top:40px;
}

.hor-img{
    margin-bottom: 30px;
}

.nextrow{
    margin-top: 30px;
}

.image-wrapper-credits{
    overflow: visible;
    position: relative;
    width: 49%; /* slightly less than 50% to account for any potential padding or margins */
}

.image-wrapper-credits img {
    width: 100%;
    height: 100%;
    transition: transform 1.2s ease-in-out;
}

.untertitel-abstand{
    margin-bottom: 160px;
}



    /* CSS for smaller screens */

    @media (max-width: 1330px) {
        .overlay-size-chart-content {
            position: absolute; /* Ensure the close button is positioned relative to this container */
            right: 0;
            background-color: white;
            width: 51vw;
            height: 100vh;
            padding: 15vh 50px 50px 50px;
            box-sizing: border-box;
            transform: translateX(100%); /* Start off-screen to the right */
            transition: transform 0.3s ease, padding 0.3s ease; /* Smooth transition for transform and padding */
        }
    }




    @media (min-width: 1800px) {
        body {
            max-width: 1800px;
            margin-left: auto;
            margin-right: auto;
        }

        .navbar{
            max-width: 1800px;
            margin-left: auto;
            margin-right: auto;
        }
        
    }







    @media (min-width: 801px) {
    


.header{
    display: none;
}


    }




    
    @media (max-width: 800px) {


body{
    margin: 0;
    padding: 0;
}

.navbar{
    width: 100%;
    padding-left: 10px;
    font-size: 12px;
}

.nav-center {
    position: relative;
    margin-right: 15px;
}


#logo, #lightstone {

    transform: translateX(-50%) scale(0.75); /* Initiale Skalierung */

}




.right {
    max-width: 100%;
    margin-left: 0px;
}


   
.logo{
    width: 100px;
}

h1{
    font-size: 40px;
    margin-bottom: 20px;
}

h2{
    font-size: 16px;
    margin-top: 5px;
    margin-bottom: 10px;
    width: 390px;
}        

h3{
    font-family: 'Merriweather', serif;
    font-size: 16px;
    margin-bottom: 10px;
}

h4 {
    font-size: 16px;
    margin-top: 0px;
     margin-bottom: 0px;
}

#h4-big{
    font-size: 24px!important;
}

h5 {
    font-size: 16px;
    margin-top: 0px;
     margin-bottom: 0px;
}

.logo{
    margin-top:10px;
    width: 140px;
}

        .big-link{
            font-size: 16px;
        }

        .overlay-content a::before,
.big-link::before {
    height: 1px;
}

        .image-wrapper{
            height: auto;
            width: auto;
            overflow: visible;
        }

        .image-wrapper img {
            height: auto;
            object-fit: cover; /* To maintain aspect ratio */
        }

        .image-row .image-wrapper {
            width: 49%;
        }
        




        .image-wrapper-credits{
            height: auto;
            width: auto;
            overflow: visible;
        }

        .image-wrapper-credits img {
            height: auto;
            object-fit: cover; /* To maintain aspect ratio */
        }

        .image-row .image-wrapper-credits {
            width: 49%;
        }










    .image-info {
        flex-direction: row;
        position:static ;
        bottom: inherit;
        left: inherit;
        right: inherit;
        padding-top: 4px;
        height: 0px;
    }




    
    .image-container{
        margin-top:0px;
        margin-left: 10px;
        margin-right: 10px;
    }

        .headline-container {
            width: auto;
            margin-top: 10px;
            margin-left: 10px;
        }

        .footer-container {
            display: block;
        }

    .footer-container-contact {
        flex-direction: column; /* Stack items vertically on mobile */
        align-items: flex-start; /* Align items to the left */
        padding-left: 10px; /* Optional: Add padding to the left */
    }

        .footer-container a {
            display: block;
            margin-bottom: 10px;
            font-size: 12px;
        }

        a {
            margin-right: 10px;
        }

        .text-info {
            display: flex;
            flex-direction: column;
        }

        .footer-container {
            margin-left: 10px;
            text-align: left;
        }

        #footer {
            justify-content: flex-start;
            text-align: left;

        }


.big-link{
    letter-spacing: normal;
    font-size: 16px;
}


.shop-gallery{
    box-sizing: border-box;
    width: 100%;
    margin-top: 90px;
    margin-bottom: 100px;
}


.overlay-content {
    top: 40%;
    transform: translateY(-50%);
    padding-left: 10px;
    position: absolute; /* Ensure the element is positioned absolutely */
}

.overlay-content a{
    font-size: 28px;
}



    .product-info {
        margin-top: 0px!important;
        margin-left: 0px;
    }

    .container {
        display: flex;
        flex-direction: column;
        overflow-x: hidden; /* Verhindert horizontales Scrollen */
        margin: 0 0 0 10px; /* Entfernt jegliche Standard-Margen und setzt den linken Rand auf 10px */
        padding: 0; /* Entfernt jegliche Standard-Polsterungen */
        width: 95%;
    }

   .product-info {
        margin-top: 0px;
        width: 100%;
        box-sizing: border-box; /* Stellt sicher, dass Polsterungen und Rahmen in der Breite enthalten sind */
    }

     .index-page .image-wrapper img {
        height:auto;
       width:100%;
        margin: 0 auto; /* Zentriert das Bild horizontal */
    }



    .index-page .image-wrapper-credits img {
        height:auto;
       width:100%;
        margin: 0 auto; /* Zentriert das Bild horizontal */
    }

    
        

    #muteButton{
        margin-top: 0px;
        padding-top: 0px;
        left: 18px;
        width: 40px!important;
        height: 40px!important;
    }

    .mute-edition{
        margin-top: -30px!important;
    }




.top-head{
    margin-top: 40px!important;
}

.start-head{
    margin-top: 120px!important;
}

.image-pair-container{
    margin-top: 0px;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 80px;
}

.image-pair-container-info{
    margin-left: 10px;
    margin-right: 10px;

    gap: 10px;
}

.image-pair-container-about {
    margin-top: 0px;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 0px;
}

.email-input {
    border: none;
    border-bottom: 1px solid #00000030;
    font-size: 16px;
    font-weight: 200;
    font-family: 'TT_Norms', sans-serif;
    outline: none;
    margin-top: 20px;
    width: 99%; /* Ensure the input takes the full width */
    padding: 5px 0; /* Add some padding for better appearance */
    color: #dbdbdb; /* Set initial text color to black */
}

.blinking-cursor {
opacity: 0;
}



.map{
    margin-left: 10px;
    margin-right: 10px;
}



.right.sup{
    width: 75%;
}

p{
font-size: 16px;
}



.overlay-size-chart-content {
    position: absolute; /* Ensure the close button is positioned relative to this container */
    right: 0;
    background-color: white;
    width: 100vw;
    height: 100vh;
    padding: 15vh 50px 50px 50px;
    box-sizing: border-box;
    transform: translateX(100%); /* Start off-screen to the right */
    transition: transform 0.3s ease; /* Smooth transition for transform */
    font-size: 12px;
}


.product-cont {
    position: relative;
    width: calc(50% - 10px);
    overflow: visible;
}






.title, .price, .order, .date{
    font-size: 12px;
}


.order{
    display: none;
}






.stories-page .order {
    display: block;
    margin-right:0px;
    margin-top: 3px;
}

.stories-page .title-price{
width: 80%;
}

.stories-page .image-info{
    margin-top: -5px;
    }



.editions-page .title-price{
    margin-top:-5px
}

.info-page .image-row{
    gap: 5px;
}







.title-price{
    display: block;
    height: 50px;
    width: 100%;
}

.shop-list{
    margin-top: 120px;
}

.products{
    margin-top: 60px;
    margin-left: 10px;
    margin-right: 10px;
}

.product-box {
    justify-content: space-around;
    gap: 5px;
}


.video-container{
    padding-left: 10px;
    padding-right: 10px;
}

.title-pic-mob{
    height: auto;
    width: auto;
}

.right-interview{
    margin-top: 0px;
    margin-left: 10px;
    margin-right: 10px;
    font-size: 16px;
}

.image-info-product{
    bottom: auto;
    padding-top: 4px;
}

.right-sup{
    margin-left: 0px;
}

.supporters-info {
    flex-direction: column;
    margin-top: 0px;
    margin-left: 0px;
    margin-bottom: 40px;
}

.supporters-info p {
    margin-bottom: 10px; /* Optional: Adds space between paragraphs */
}


.product-box {
    display: flex;
    flex-wrap: wrap; /* Allow items to wrap to the next line */
    margin-bottom: 0px;
}

.product-cont {
    flex: 1 1 calc(50% - 20px); /* Two items per row with gap */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

.product-cont {
    flex: 1 1 100%; /* One item per row on mobile */
}

.product-order{
    font-size: 16px!important;
}

.input-arrow {
    margin-bottom: -3px;
    margin-left: -20px;
    width: 16px; /* Adjust the size as needed */
    height: 16px; /* Adjust the size as needed */
}

.left{
    width: 90%;
}

.image-wrapper:hover img {
    transform: scale(1.0);
}

.long-answer {
    margin-top: 20px;
    margin-left: 20px;
    margin-right: 40px;
    margin-bottom: 40px;
    font-size: 16px;
}


/* Entfernen des Hover-Effekts für Links im Footer-Bereich */
footer .footer-container a {
    position: static;
    overflow: visible;
    text-decoration: none;
    color: black;
    letter-spacing: 1px;
    margin-right: 20px; /* Optional: if you want to keep the margin */
}

footer .footer-container a::before {
    content: none;
}

/* Entfernen des Hover-Effekts für Links im Footer-Bereich */
.image-row .image-wrapper a {
    position: static;
    overflow: visible;
    text-decoration: none;
    color: black;
    letter-spacing: 1px;
    margin-right: 0px; /* Optional: if you want to keep the margin */
}

.image-row .image-wrapper a::before {
    content: none;
}

.image-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; /* Ermöglicht das Umbruchverhalten */
    gap: 80px;
}

.image-row .image-wrapper {
    flex: 1 1 100%; /* Standardmäßig nimmt jedes Bild die volle Breite ein */
}

.image-row .image-wrapper-credits {
    flex: 1 1 100%; /* Standardmäßig nimmt jedes Bild die volle Breite ein */
}











.image-info-product {
    position: static; /* Positioniere den Text unterhalb des Bildes */
    display: block; /* Stapele die Elemente übereinander */
    margin-top: -5px;
margin-bottom: 40px;
}

.title-price {
    flex-direction: column; /* Setzt die Flexbox in eine vertikale Richtung */
    width: 100%; /* Nimmt die gesamte Breite ein */
    height: 40px; /* Höhe automatisch */
}

.title {
    margin-right: auto;
    flex-grow: 0; /* Titel wächst nicht */
}



/* ORDER Button auf mobilen Geräten verstecken */
.order {
    display: none;
}

/* Preis auf Mobilgeräten unter den Titel schieben, dort wo der ORDER Button auf Desktop sitzt */
.price {
    margin-top: -18px;
    display: block;
    width: 100%; /* Preis nimmt die gesamte Breite des Containers ein */
    text-align: right;
}

.img-shrink{
    margin-bottom: -75px;
}

.img-shrink-2{
    margin-bottom: -35px;
}

.img-shrink-last{
    margin-bottom: 40px;
}

.product-box:hover .image-info-product {
    pointer-events: none;
}

.stories-img-container{
    margin-bottom: 80px;
}

.stories-img-container-last{
    margin-bottom: 100px;
}

.post-img-container-last{
    margin-bottom: 100px!important;
}
.breit{
    margin-top: 5px;
    margin-bottom: 100px;
}




.image-row-video {
    flex-direction: column; /* Stapelt die Videos untereinander */
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 100px;
    margin-top: 0px;
}

.image-wrapper-video {
    width: 100%; /* Videos nehmen die volle Breite ein */
    padding-bottom: 100%; /* Macht das Element quadratisch */
    margin-bottom: 10px; /* Abstand zwischen den Videos */
}



.product-cont:hover img.back{
    opacity: 0;
}




.map-animation{
    margin-bottom: 5px;
}



.img-info{
    margin-bottom: 75px;
}


.right ul {
font-size: 16px;
}

.hor-img{
    margin-bottom:5px;
}



    }