
:root {
    --primary-bg: #8b8088;
    --secondary-bg: #b6aa99;

    --primary-bg-gradient: linear-gradient(180deg, var(--primary-bg), var(--secondary-bg));
    --gradient-dark: linear-gradient(180deg, #111016, #282c39);
    --gradient-2: linear-gradient(to bottom, #a5a09c, #282c39);
    --gradient-3: linear-gradient(to top, #111016, #a5a09c);
    --gradient-4: linear-gradient(to bottom, #111016, #a5a09c);

    --light-0: #f7f3ee;
    --light-1: #f0e4d6;
    --light-2: #dfd9d3;
    --light-3: #d0c2af;

    --mid-2: #a5a09c;

    --dark-1: #3e4051;
    --dark-2: #282c39;
    --dark-3: #111016;

    --accent-yellow: #ffe89a;
    --accent-button: #5468a8;

    --blue-1: #ded8fe;
    --blue-2: #79bdfa;
    --blue-3: #1991fa;
    --red: #ff3f40;
    
    --secondary-bg-3: 40, 44, 57; /* RGB values for #282c39 */
    --bg-dark-rgb: 17, 16, 22; /* RGB values for #111016 */
    

    --main-font: 'JosefinSans', 'Segoe UI', 'Helvetica Neue', sans-serif;
    --heading-font: 'Anton', Impact, sans-serif;
    --quote-font: 'Anton', Impact, sans-serif;




    /* --main-font: 'CaviarDreams', sans-serif; */
    /* --main-font: 'CaviarDreams', sans-serif; */
    

    /* --quote-font: 'Bangers', sans-serif; */
    .generic-text {
        font-family: sans-serif; /* Uses the user's default sans-serif font */
        font-size: 0.9rem; /* Adjust size as needed */
        color: var(--text-color); /* Optional: Keep consistent color scheme */
        line-height: 1.5; /* Ensure readability */
    }
    
    --fat-white-stroke: 
        -3px -3px 0 white,
        3px -3px 0 white,
        -3px 3px 0 white,
        3px 3px 0 white,
        -3px 0 0 white,
        3px 0 0 white,
        0 -3px 0 white,
        0 3px 0 white;
}

/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* overflow-x: hidden; */
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    background-color: var(--primary-bg);
    
    font-family: var(--main-font);
    overflow-x: hidden;
    overflow-y: auto; /* Ensure vertical scrollbar is always visible */
    scrollbar-width: auto; /* For Firefox */
    scrollbar-color: auto; 
}


@font-face {
  font-family: 'JosefinSans';
  src: url('/content/font/JosefinSans-VariableFont_wght.woff2') format('woff2'),
       url('/content/font/JosefinSans-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'JosefinSans';
  src: url('/content/font/JosefinSans-VariableFont_wght.woff2') format('woff2'),
       url('/content/font/JosefinSans-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
    font-family: 'Anton';
    src: url('/content/font/Anton-Regular.woff2') format('woff2'),
        url('/content/font/Anton-Regular.ttf') format('truetype');
    font-size-adjust: 0.52;
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

section {
    z-index: 1;
    position: relative;
}

.no-wrap {
    white-space: nowrap;
}



 a.link-on-dark-bg {
    /* color: var(--blue-1) !important; */
    color: var(--blue-3) !important;
}

a, a:visited, a:link, a:focus, a:active {
    color:inherit;
    text-decoration:underline;
}

a:hover {
 color: var(--blue-3);
}

button {
    all: unset;
    cursor: pointer;
}

p {
    color: #000;
    text-align: center;
    padding: 10px;
    font-weight: 300;
    font-family: var(--main-font);
    line-height: 1.5; 
    font-size: clamp(1rem, 20px, 1.6rem);
    padding: 1rem;
}

.image-grid.two-images .grid-item {
    max-width: 512px; /* Match the max-width of images */
}

@media (min-width: 768px) {
    .image-grid.two-images {
        grid-template-columns: repeat(2, minmax(auto, 512px)); /* Changed from max-content */
        justify-content: center;
        gap: 20px;
    }
}

@media (max-width: 767px) { 
    p {
        font-size: 1.1rem !important;
        padding: 1rem;
    }

    .image-section img {
        margin: 10px 0 !important;
    }

    .image-grid,
    .image-grid.two-images {
        grid-template-columns: 1fr;
    }
}

h1, h2, h3, h4 {
    font-family: var(--heading-font); /* or --quote-font */
    font-weight: normal;
    line-height: 1.1;
    overflow: hidden;
}

h1 {
    font-size: 3rem;
    /* font-size: clamp(2rem, 4vw, 6rem); */
    display: inline-block;
    padding: 10px 15px;
    border-radius: 5px;
    margin:0;
}

h2 {
    font-size: 3rem;
    /* display: inline-block; */
    padding: 10px 15px;
    border-radius: 3px;
    margin:0;
}

h3 {
    font-size: clamp(2rem, 34px, 3rem);
    line-height: 1.2;
    padding: 0 20px;
}

h4 {
    font-size: clamp(1rem, 20px, 2rem);
}

.hidden {
    display: none;
}

.quotation-marks {
    width: 9rem;
    height: auto;
    margin: 0;
    padding: 0;
    margin-bottom: 1rem;
    display: block;
}

.clickable-quote-link {
    display: block;
    /* margin-top: -10px; */
    font-style: normal !important;
    text-decoration: underline;
    color: inherit;
    font-size: 1rem !important;
    font-weight: normal;
    text-align: center;
    padding: 4px 4px 2px 4px;
}

.yellow-box {
    text-align: center;
    background-color: var(--accent-yellow);
    padding: 1rem;
    word-break: break-word;
}

.seebad-big-image-style {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: auto;
    max-height: 1280px;
    margin-top: 100px !important;
    overflow: hidden;
}

.seebad-big-image-style img {
    width: 100%;
    height: auto;
    max-height: 1400px;
    display: block;
    object-fit: cover;
    object-position: bottom;
}

@media (min-width: 769px) {

    #crowdfunding-banner {
        display: block;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        /* height: 300px; */
        max-width: 820px;
    }
}

.bg-primary {
    background-color: var(--primary-bg);
}

.bg-gradient-primary-to-secondary {
    background: linear-gradient(to bottom, #8b8088, #b6aa99 30%);
}


.bg-secondary {
    background-color: var(--secondary-bg);
}


.bg-light-3 {
    background-color: var(--light-3);
}

.bg-gradient-3 {
    background: var(--gradient-3);
}

.bg-gradient-mid2-transparent {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1rem;
    margin-top: -200px;
    background: none; /* remove inline background */
}

.bg-gradient-mid2-transparent::before {
    content: "";
    position: absolute;
    top: -12rem;
    left: 0;
    right: 0;
    height: 20rem;
    background: linear-gradient(to bottom, transparent 0%, #a5a09c 100%);
    z-index: 0;
}

@media (max-width: 1024px) {
    .bg-gradient-mid2-transparent {
        background: linear-gradient(to bottom, transparent 0%, #a5a09c 15%);
    }
}

@media (max-width: 768px) {
    .bg-gradient-mid2-transparent {
        background: linear-gradient(to bottom, transparent 0%, #a5a09c 10%);
    }
    
    .seebad-big-image-style {
        width: 100%;
        max-width: 100%;
        padding: 0;
        box-sizing: border-box;
        margin: 0 auto;
        position: relative;
        overflow: hidden;
    }

    .seebad-big-image-style > img {
        width: 100vw;
        height: 90vh; /* or 100vh if you want a fullscreen feel */
        object-fit: cover;
        object-position: bottom;
        display: block;
    }
}

.bg-gradient-lateinschule {
    background: linear-gradient(to bottom, var(--primary-bg), var(--dark-1));
}

.bg-gradient-mid2-transparent-mid2 {
    background: linear-gradient(to bottom, 
                var(--dark-1) 0%, 
                transparent 30%, 
                transparent 70%, 
                var(--dark-1) 100%);
}

.bg-gradient-black {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 60%);
    padding-top: 1rem;
    padding-bottom: 1rem;
    width: 100%;
    min-height: 100px;
}

.bg-gradient-black-flipped {
    background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 60%);
    padding-top: 1rem;
    padding-bottom: 1rem;
    width: 100%;
    min-height: 100px;
}

.bg-white {
    background-color: white;
}

.bg-dark-2 {
    background-color: var(--dark-2);
}

.border-2 {
    border: black solid 2px;
}

.border-2-with-radius {
    border-radius: 30px;
    border: black solid 2px;
}

.spacer-40 {
    height: 40px;
}

.spacer-100 {
    height: 100px;
    padding-top: 10px;
    margin: 0;
}

.spacer-narrow-100 {
    display: none;
}

.spacer-200 {
    min-height: 200px;
    padding-top: 10px;
    margin: 0;
}

.bullet-list {
    list-style-type: disc; /* Default bullet style */
    margin: 20px; /* Optional: add margin around the list */
    padding: 0; /* Remove default padding */
    color: #000000; /* Optional: set text color */
    font-family: Arial, sans-serif; /* Optional: set font */
    /* font-size: 3rem; */
}

.bullet-list li {
    margin: 1.5rem 0; /* Add space between list items */
    padding-left: 20px; /* Optional: add padding to align text */
}

.padding-medium {
    padding: 20px 40px;
}

.padding-high {
    padding: 20px 40px 40px 40px;
}

.font-generic {
    font-family: Arial, Helvetica, sans-serif;
}

.bullet-list {
    margin: 20px;
    padding: 20px;
}


.site-footer {
    position: relative;
    width: 100%;
    /* max-height: 100vh; */
    padding: 20px;
    background-color: var(--dark-1);
    color: white;
    text-align: center;
    padding: 20px;
    font-family: var(--main-font);
    overflow: hidden;
}

.site-footer p {
    margin: 0;
    font-size: 1rem;
    font-family: var(--main-font);
    color: var(--light-2);
}

@media (min-width: 768px) {
    .site-footer {
        max-height: 600px;
    }
}

.contact h4 {
    display: inline-block;
    font-size: 1rem;
    padding: 6px 12px !important;
    
    text-align: center;
    margin-top: 3vh;
    outline: 2px solid var(--red);
    min-height: 40px  !important;
    max-width: 80vw;
}

.contact .generic-text {
    font-size: 0.8rem !important;
}

.bottom-content {
    display: flex;
    justify-content: center;
    align-items: center; /* Align items vertically */
    width: 60%;
    margin: 0 auto;
    height: 60px;
    margin-bottom: 10px !important;
}

.bottom-content > *:nth-child(1),
.bottom-content > *:nth-child(2),
.bottom-content > *:nth-child(3) {
    flex: 1 1 33%;
    
}

.bottom-content > *:nth-child(2) {
    padding-left: 40px;
    padding-right: 40px;
}

.zur-sammlung-button {
    position: relative;
    width:80;
    height: auto;
    background: transparent;
    z-index: 11;
}

.button-class {
    
    width: 20vh;
    height: 20vh;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    z-index: 11;
}

.button-class img {
    width: 20vh;
    height: 20vh;
    object-fit: contain; /* Ensures the SVG scales properly */
}


.arrow-button-down {
    position: relative;
    background-color: var(--primary-bg-gradient);
    border: none;
    cursor: pointer;
    
    padding: 0;
    outline: none;
    display: flex;
    bottom: 0;
    margin: 0 auto; 
    
    width: max(120px, 6%);
    height: auto;
    z-index: 12;
}

.arrow-button-down svg {
    width: 100%;
    height: 100%;
    fill-rule:evenodd;
    clip-rule:evenodd;
    stroke-linecap:round;
    stroke-linejoin:round;
    stroke-miterlimit:1.5;
}

.arrow-button-down svg path {
    fill: #111016;
    stroke: #fff;
    stroke-width: 3.55px;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(312px, 1fr));
    gap: 10px;
    justify-items: center;
    justify-content: center;
    max-width: 1600px; /* Optional: Set a max width to keep the grid compact */
    margin: 0 auto;
}

.image-grid img {
    max-width: 512px;
    width: 100%;
    height: auto;
    cursor: pointer;
}

.masonry-grid {
    columns: 40ch;
}

.masonry-grid-60 {
    columns: 60ch;
}

.masonry-grid-60 p {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1rem;
    text-align: left;
}

.masonry-image {
    object-fit: cover;
    width: 100%;
    border-radius: 0;
}

.masonry-item {
    break-inside: avoid; 
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 20px 10px;
    border-radius: 5px;
}

@media screen and (max-width: 600px) { /* Adjust the max-width to target your desired screen size */
    .masonry-item {
        padding: 2px;
        margin: 0;
    }

    .masonry-item h3, .masonry-item p {
        padding: 0; /* Optional: Remove padding inside headings and paragraphs */
        margin: 0; /* Optional: Remove margin inside headings and paragraphs */
    }
}

.masonry-item:not(:first-child) {
    margin-top: 20px; /* Add margin to all items except the first one */
}

.text-center {
    text-align: center;
}

.text-small p {
    font-size: 0.9rem;
    margin: 0 40px;
}

.center-column {
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden; 
    min-height: 0;
    /* min-height: 1000px; */
    /* min-width: 1000px; */
}

.center-column p {
    font-size: 1.1rem;
}

.center-column h5 {
    position: relative;
    text-align: center;
}

.margin-1rem {
    margin-left: 1rem;
    margin-right: 1rem;
}

picture,
img {
    display: block; /* Removes default inline spacing */
    max-width: 100%;
    width: 100%;
    height: auto;
}

.text-block-with-headline {
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: visible; 
    margin: 0;
    padding: 0;
    
}

.phone-number {
    font-size: 0.9rem;
    color: inherit;
    line-height: 1.2;
}

nav[aria-label="breadcrumb"] {
    font-size: 1.2rem;
    /* margin: 10px 40px; */
    margin: 0;
    padding: 6px 0 0 40px;
    height: 40px;
    border-bottom: black solid 2px;
}

nav[aria-label="breadcrumb"] ol {
    list-style: none;
    padding: 0;
    display: flex;
    color: var(--mid-2);
}

nav[aria-label="breadcrumb"] li {
    margin-right: 10px;
    
}

nav[aria-label="breadcrumb"] li a {
    text-decoration: none;
    color: var(--mid-2);
}

nav[aria-label="breadcrumb"] li::after {
    content: ">";
    margin-left: 10px;
    
}

nav[aria-label="breadcrumb"] li:last-child::after {
    content: ""; /* Remove separator after the last item */
}

.current-location {
    text-decoration: underline;
    font-weight: bold;
    color: var(--accent-yellow);
}

figure {
    display: inline-block; /* Changed from inline-flex */
    margin: 0;
    padding: 0;
    text-align: center;
    width: fit-content;
    max-width: 100%;
}

figure img {
    display: block;
    max-width: 100%;
    height: auto;
    margin-bottom: 0;
}

figure.bg-white img {
    width: 1280px !important;
}

/* Adjust the grid layout for wider screens */
@media (min-width: 1024px) {

    .image-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 columns on wide screens */
    }
}

.text-block-with-headline h2 {
    font-size: clamp(1rem, 160px, 4rem) !important;
    margin-bottom: 0;
}

.text-block-with-headline p {
    font-size: clamp(1.2rem, 20px, 1.6rem) !important;
    text-align: center;
    width: 100%;
    max-width: 60ch;
    padding: 0.3rem !important;
    margin: 0 !important;
}

#form-newsletter p {
    font-size: 1rem;
    text-align: left;
    padding: 0;
    margin: 0 0 1rem 0;
}

#form-newsletter .text-image-description p {
    font-size: 0.9rem;
    text-align: center;
    padding: 0;
    margin: 10px 0 0 0;
}

figcaption.text-image-description {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 1rem;
    color: white;
    max-width: 96vw;
    margin: 24px auto;
    padding: 0 16px; /* Ensures inner text doesn't hit the edge */
    text-align: left;
    box-sizing: border-box;
}

.text-dark {
    color: black;
}

.bg-about {
    background-color: #282c38;
}

.text-black {
    color: black;
}

.text-white {
    color: white;
}

.text-blue {
    color: var(--blue-2);
    text-shadow:
        -1px -1px 0 black,
        1px -1px 0 black,
        -1px  1px 0 black,
        1px  1px 0 black;

}

.text-yellow {
    color: var(--accent-yellow);
}

/* Ensure child elements inherit the color */
.text-yellow h2,
.text-yellow p {
    color: inherit;
}

.text-background-box {
    position: relative;
    display: inline-block; /* Ensure the box wraps the text */
    margin: 20px;
    margin-top: 50px;
    margin-bottom: -20px;
    padding: 0 0;
    background-color: var(--dark-2);
    border-radius: 20px;
    border: var(--accent-yellow) solid 3px;
}

/* Add padding to the <p> element to ensure the text has some space */
.text-background-box p {
    position: relative;
    font-size: 1.2rem;
    margin: 0;
    padding: 1rem;
    z-index: 1;
    color: var(--accent-yellow);
}

/*blending images back and forth*/

.scroll-image-container {
    position: relative;
    width: 100%;
    max-width: 1600px; /* Max width of the images */
    margin: 0 auto;
    overflow: hidden;
    background: transparent;
}

.spacer-image-placeholder {
    width: 100%;
    padding-top: 80%;
    min-height: 600px;
    /* padding-top: 91.75%; */
    background-color: transparent;
}



.blended-image {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: auto;
    max-width: 1600px;
    object-fit: cover;
}

#image2 {
    animation: fadeOutIn 10s infinite;
}

#image1 {
    animation: fadeInOut 10s infinite;
}

@keyframes fadeOutIn {
    0%, 20%, 80%, 100% {
        opacity: 1;
    }
    40%, 60% {
        opacity: 0;
    }
}

@keyframes fadeInOut {
    0%, 20%, 80%, 100% {
        opacity: 0;
    }
    40%, 60% {
        opacity: 1;
    }
}

/* Ensure images cover at least half the screen height on small screens */
@media (max-width: 600px) {
    
    .blended-image {
        height: 50vh !important;
        
    }

    .scroll-image-container {
        height: 500px;
    }

    .spacer-image-placeholder {
        
        padding-top: 100%;
        margin-bottom: 100px;
        min-height: 600px;
        /* padding-top: 91.75%; */
        background-color: transparent;
    }

}




/*END of blending images*/



/* image with description */
.image-container {
    position: relative;
    display: inline-block;
    width: 100vw !important;
    /* width: 100%; */
    max-width: 400px !important;
    margin: 0;
    text-align: center;
    padding: 20px;
    
}

.image-container img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    width: 1024px;
}

.image-native-res {
    max-width: 100%;
    width: auto;
}

.image-centered {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding: 0;
    margin: 0;
    /* margin-bottom: 16px; */
}

.image-centered h3,
.text-block-with-headline h3 {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    word-break: normal;
    white-space: normal;
    margin-top: 40px;
    margin-bottom: 2rem;
}

@media (max-width: 600px) {
    .text-block-with-headline h3 {
      max-width: 90vw; /* force it to be narrower on small screens */
      font-size: 1.5rem; /* optional: reduce font size to help it wrap naturally */
    }
}

.height-640 {
    max-height: 640px !important;
}

.image-centered-bottom {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    padding: 0;
    margin: 0;
}

.image-width-100p {
    width: 100%;
    height: auto;
    display: block;
}

.image-width-100p img {
    max-height: 80vh;
    width: 100%;
    object-fit: cover;
    display: block;
}

/* about page about page about page about page*/

.bg-rounded-corner {
    background-color: var(--light-2);
    border: black solid 1px;
    border-radius: 2rem;
    min-width: 30ch;
    margin: 40px 20px;
}

.flex-wrapper {
    display: flex;
    flex-direction: column; /* default: image above text */
    gap: 1rem;
    align-items: flex-start;
}

.flex-image {
    width: 100%;
    height: auto !important;
    max-width: 720px !important; /* Override max-width constraints */
    padding-top: 0;
    margin-top: 0;
    margin-bottom: 2rem;
}

.flex-image img {
    max-width: 100%;
    height: auto;
}

/* For wide screens: image left, text right */
@media (min-width: 768px) {
    .flex-wrapper {
        flex-direction: row;
    }

    .flex-image {
        /* background-color: var(--blue-1); */
        background-color: var(--light-1);
        flex: 1;
        max-width: 40%;
        border-radius: 6rem;
        border: black solid 1px;
    }

    .flex-text-block {
        /* background-color: yellow; */
        min-width: 38ch;
        max-width: 40%;
        flex: 2;
    }
}


.tight-heading {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0.3rem !important;
    line-height: 1.2; /* tighter line spacing */
}



.text-image-columns {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two columns on larger screens */
    gap: 8px !important;
    /* margin-top: 100px; */
    margin: 100px auto 0 auto;
    max-width: 1280px;
    background-color: var(--mid-2);
    border: black solid 1px;
    /* border-radius: 1rem; */
}

.black-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;

    padding: 12px 0; /* creates a black border above/below image */
}

.black-banner img {
    width: 100%;
    height: auto;
    display: block;
}

.black-banner a {
    display: inline-block;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.black-banner a:hover,
.black-banner a:focus {
    transform: scale(1.02);
    opacity: 0.9;
    cursor: pointer;
}

#crowdfunding-banner {
    display: block;
    max-width: 820px;
    width: 100%;
}


#crowdfunding-banner img {
    display: block;
    width: 100%;
    height: auto;
}


.section-button-bar {
    padding-top: 10px;
    padding-bottom: 10px;
    width: 100vw !important;
    /* background-color: var(--dark-3); */
    background-color: var(--dark-1);
}

/*this make the buttons on button bar smaller than usual*/
.section-button-bar button img {
    height: 180px;
    width: auto;
    display: block;
}

/* Override spacing when there are only two buttons */
.two-buttons-close .center-aisle {
    justify-content: center;
    gap: 2rem;
}

.two-buttons-close .center-aisle > * {
    flex: 0 1 auto;
    max-width: none;
}



#blog-welcome {
    display: flex;  
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
    /* height: 100%;  */
    gap: 40px;
    background-color: var(--primary-bg);
    border: var(--dark-2) dotted 2px;
}

#blog-welcome p {
    max-width: 50ch;
    margin-top: 0;
    padding-top: 0;
    text-align: left;
}

#send-images-button {
    display: block;
    width: auto;
    margin: 0 auto;
    padding: 0;
}

#send-images-button img,
#contact-button img,
.button-newsletter img {
    /* display: block; */
    max-height: 300px;
    width: auto;
    margin: 0 auto;
    padding: 0;
}

@media (max-width: 768px) {

    #send-images-button img {
        max-height: 220px;
    }

    #blog-welcome {
        flex-direction: column;
    }


}


.social {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: center; */
    gap: 30px !important;
}

.social .icon-row {
    display: flex;
    gap: 45px;
}

.social .icon-row a {
    display: inline-block;
}

.flex-column {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-between; /* Even spacing across the row */
    align-items: center;
    /* width: 100%; */
    gap: 0 !important;
    padding: 0 !important;
    margin: 0 auto;
}



.center-aisle {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between; /* Even spacing across the row */
    align-items: flex-start; /* Align items at the top */
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.center-aisle > * {
    flex: 1 1 33%;
    max-width: 33%;
}

.center-aisle > .contact {
    text-align: center;

}

.center-aisle > *:nth-child(3) {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 0;
    width: 240px;
}

.center-aisle > *:nth-child(3) p {
    color: var(--light-2);
}

@media (max-width: 480px) {
    .black-banner {
        padding: 8px 0;
    }

    #crowdfunding-banner {
        max-width: 90%;
    }
}

.single-column {
    margin: 20px auto;
    max-width: 1024px;
    padding-top: 20px;
    display: flex;
    flex-direction: column; /* Ensures children stack vertically */
    align-items: center; /* Centers children horizontally */
}




.social-icon {
    display: block;
    width: 24px;
    height: auto;
    margin: 10px 0;
}

.icon-row {
    display: flex;
    margin-top: 20px;
    gap: 40px !important;
    justify-content: center;
    align-items: center;
}

.icon-row a {
    margin: 6px;
}


#bluesky path {
    fill: white; /* Change color to white */
}

.youtube {
    
    height: 24px;
    width: auto;
}

.facebook {
    height: 24px;
    width: auto;
}


.pulsate {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}


@media (max-width: 780px) {
    
    .icon-row {
        display: flex;
        gap: 20px !important;
        justify-content: center;
        align-items: center;
    }

    .icon-row a {
        margin: 6px;
    }
    
    .zur-sammlung-button {
        align-self: center;
        max-width: 200px;
    }
    
}



@media (max-width: 768px) {
        
    
    .social {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px !important;
    }
    
    .social .icon-row {
        display: flex;
        gap: 45px;
    }
    
    .social .icon-row a {
        display: inline-block;
    }
    

    h1.hover-headline {
        font-size: clamp(2.1rem, 40px, 4rem);
        margin: -20px auto;
    }

    .spacer-narrow {
        display: block;
        height: 700px;
        width: 100%;
    }

    .spacer-narrow-100 {
        display: block;
        height: 100px;
        width: 100%;
    }


    nav[aria-label="breadcrumb"] {
        padding: 6px 0 0 10px;
    }

    .text-image-columns {
        grid-template-columns: 1fr;
        border: 0;
    }

    .text-image-columns > * {
        grid-column: span 1; /* Force each item to take a single row */
    }

    /* Alternate items from both columns */
    .text-image-columns > *:nth-child(odd) {
        grid-row: auto; /* Keep odd items in order */
    }
    .text-image-columns > *:nth-child(even) {
        grid-row: auto; /* Keep even items in order */
    }

    .bg-rounded-corner {
        margin: 0;
    }
    
    .center-aisle {
        justify-content: center; /* Center items horizontally */
    }

    /* Social and Send-Images Button in the Top Row */
    .center-aisle > *:nth-child(1) {
        flex: 1 1 50%;
        max-width: 50%;
        order: 1;
        align-self: center;
        margin-bottom: 2rem;
    }

    .center-aisle > *:nth-child(3) {
        flex: 1 1 50%;
        max-width: 50%;
        order: 2;
    }

    /* Contact Moves to the Second Row */
    .center-aisle > *:nth-child(2) {
        flex: 1 1 50%;
        max-width: 100%;
        margin-top: 5px;
        margin-bottom: 4px !important;
        order: 3;
    }

    /* Specific Adjustment for Child with `h4` */
    .center-aisle > *:nth-child(3) h4 {
        margin-bottom: 0;
    }

    .two-buttons-close .center-aisle {
        flex-wrap: nowrap;
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }

    .two-buttons-close .center-aisle > button {
        flex: 1 1 50%;
        max-width: 50%;
        margin: 0;
    }
}

.image-section, .text-section {
    gap: 0;
}

.image-section img {
    border: black solid 1px;
    border-radius: 1.1rem;
    margin: 40px 20px;
    width: 640px;
}

.flex-space-between {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding-bottom: 200px;
    justify-content: space-between; /* Distributes flex items evenly with space between them */
}

.text-section h3, .text-section h2 {
    text-align: center;
    margin: 2rem 0;
}

.text-section h2 {
    text-align: left;
    margin: 2rem 0;
}

.text-section p {
    text-align: left;
    padding: 40px 60px 40px 60px !important;
}

.text-align-left p {
    text-align: left !important;
}

.text-outlined {
    color: transparent;
    -webkit-text-stroke: 2.5px white;
}

.default-sans-serif {
    font-family: sans-serif !important;
}


/* Temporarily unavailable buttons with diagonal stripe overlay */
.temporarily-unavailable {
    position: relative;
    cursor: not-allowed !important;
    opacity: 0.8;
}

.temporarily-unavailable .stripe-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    background: repeating-linear-gradient(
        45deg,
        rgba(255, 232, 31, 0.4),
        rgba(255, 232, 31, 0.4) 15px,
        rgba(40, 44, 57, 0.6) 15px,
        rgba(40, 44, 57, 0.6) 30px
    );
    border-radius: inherit;
    z-index: 10;
}

.temporarily-unavailable:hover .stripe-overlay {
    background: repeating-linear-gradient(
        45deg,
        rgba(255, 232, 31, 0.5),
        rgba(255, 232, 31, 0.5) 15px,
        rgba(40, 44, 57, 0.7) 15px,
        rgba(40, 44, 57, 0.7) 30px
    );
}

.temporarily-unavailable img {
    filter: grayscale(30%) brightness(0.9);
}
