@charset 'UTF-8';

/* Philosopher einbinden */
@font-face {
    font-family: 'Philosopher';
    src: url('/fonts/Philosopher-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Alex Brush einbinden */
@font-face {
    font-family: 'Alex Brush';
    src: url('/fonts/AlexBrush-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Open Sans einbinden */
@font-face {
    font-family: 'Open Sans';
    src: url('/fonts/OpenSans-Light.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Alex Brush einbinden */
@font-face {
    font-family: 'Futura';
    src: url('/fonts/ufonts.com_futura_medium.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Links */
a {
    color: #666;
    text-decoration: none;
}
a:visited {
    color: #999;
}
a:hover {
    color: #b5a191;
}
a:active {
    color: #222;
}

/* Überschriften */
h1 {
    font-family: 'Philosopher', Futura, 'ufonts.com_futura-medium', Helvetica, Arial, sans-serif;
    font-size: x-large;
    letter-spacing: 0.15em;
    font-weight: 400;
    color: #b5a191;
    text-align: center;
    text-transform: uppercase;
}

h2, h3, h6 {
    font-family: 'Philosopher', Futura, 'ufonts.com_futura-medium', 'Helvetica Neue Ultra Light', Arial, sans-serif;
    color: #b5a191;
    text-align: center;
    text-transform: uppercase;
}

h2 {
    font-size: medium;
    font-weight: 300;
}

h3 {
    font-size: large;
    font-weight: 200;
    letter-spacing: 0.12em;
}

h4 {
    font-family: 'Alex Brush', Tangerine;
    color: #b5a191;
    font-size: xx-large;
    font-stretch: condensed;
    text-align: center;
    margin-top: 0;
}

h5 {
    font-family: 'Alex Brush', Tangerine;
    color: #d9cdc1;
    font-size: x-large;
    text-align: center;
    margin-top: 0;
}

h6 {
    font-size: xx-large;
    font-weight: 100;
    color: #b5a191;
    text-align: center;
    margin-top: 0;
}

/* Header */
#mainheader {
    background-color: #FFF;
    opacity: 0.7;
    clear: both;
}

#header,
#header2,
#header3 {
    background-color: #FFF;
}

/* Box Shadow */
.box-shadow {
    box-shadow: 0px 10px 5px black;
}

/* Buttons */
.button {
    background-color: transparent;
    border: none;
    color: white;
    padding: 8px 16px;
    font-size: 14px;
    transition-duration: 0.4s;
    text-transform: uppercase;
    cursor: pointer;
}

.button6 {
    background-color: transparent;
    color: #555;
    border: 1px solid #555;
}
.button6:hover {
    background-color: #b5a191;
    color: white;
}

.button7 {
    background-color: transparent;
    color: white;
    border: 1px solid #b5a191;
}
.button7:hover {
    background-color: #b5a191;
}

.button8 {
    background-color: #FFF;
    border: none;
    color: #FFF;
    padding: 8px 12px;
    min-width: 160px;
    min-height: 45px;
    font-size: 14px;
    transition-duration: 0.4s;
    cursor: pointer;
}

.button9 {
    background-color: #FFF;
    color: #555;
    border: 1px solid #b5a191;
}
.button9:hover {
    background-color: #b5a191;
    color: white;
}

/* Container für Bilder */
.container {
    position: relative;
    width: 50%;
}
.container img {
    width: 100%;
    height: auto;
}
.container .button {
    position: absolute;
    top: 7%;
    left: 90%;
    transform: translate(-50%, -50%);
}

/* Figure Styles */
figure {
    text-align: center;
    font-size: 0.875em;
}
figcaption {
    display: inline-block;
    text-align: left;
}

/* Body – zart rosa Hintergrund */
html, body {
    margin: 0;
    padding: 0;
}

body {
    background-color: #f8ecef; /* zart rosa */
    background-image: none;
    background-attachment: fixed;
    max-width: 1000px;
    margin: 0 auto;
}

/* Wrapper */
#wrapper {
    width: 100%;
    height: 100%;
    display: center;
    background-color: #f8ecef; /* an rosa Hintergrund angepasst */
}

/* Animation */
@keyframes move {
    from { opacity: 0.1; }
    to { opacity: 1; }
}
@keyframes fade {
    0% { opacity: 1; }
    30% { opacity: 0.8; }
    70% { opacity: 0.4; }
    100% { opacity: 1.0; }
}

/* Hover Box */
.hover-box {
    border: 10px solid #fc6;
    display: none;
    position: absolute;
    text-decoration: none;
    top: 40px;
}
a:hover .hover-box {
    display: block;
}

/* Cursor Styles */
.cursor,
.cursor2,
.cursor3,
.cursor4 {
    font-family: 'Futura', 'Helvetica';
    color: #fff;
    cursor: pointer;
    padding: 10px;
    background-color: #b5a191;
}
.cursor2 {
    font-size: small;
}
.cursor3 {
    color: #666;
    background-color: #fff;
}
.cursor4 {
    padding: 20px 10px;
}

/* Divider Line */
.linie {
    border: 0;
    height: 1px;
    background-image: linear-gradient(
        to right,
        rgba(0, 0, 0, 0),
        rgba(0, 0, 0, 0.75),
        rgba(0, 0, 0, 0)
    );
}

/* Box Styles */
.rahmen {
    border: 7px outset #969696;
    padding: 10px;
    background-color: #f1eae4;
}
.rahmen2 {
    border: 4px outset #ccc;
    padding: 0;
}

/* Sections */
#main,
#main2,
#main3,
#next,
#textblock1,
#textblock2,
#textblock3,
#textblock4,
#textblock5,
#textblock6,
#textblock7,
#newsblock1,
#newsblock2 {
    background-color: #fff;
    text-align: center;
    border: 20px;
}

/* News Block */
#newsblock3 {
    background-color: #ccc6c1;
}

#newsblock4 .image-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
}

#newsblock4 img {
    width: 100%;
    height: auto;
    display: block;
}

/* Overlay-Text */
#newsblock4 .overlay-text {
    font-family: 'AlexBrush', cursive;
    font-size: 48px;             
    color: white;
    position: absolute;
    bottom: 10%;               
    left: 50%;
    transform: translateX(-50%);
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    pointer-events: none;
}


/* Special Styles */
#specials {
    background-color: #fff;
    text-align: center;
}

/* Footer */
#footer {
    opacity: 1;
    text-align: center;
    background-color: #EFEFEF;
}

/* Shadow Effect */
.shadow {
    box-shadow: 0px 3px 5px 3px rgba(212, 183, 108, 0.64);
}

/* CSS3 Fade Effect */
.css3fade:hover {
    animation-name: fade;
    animation-duration: 0.3s;
}

/* Herz Animation */
#herz {
    animation-name: herzschlag;
    animation-duration: 1s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
}
@keyframes herzschlag {
    from { width: 16px; }
    to { width: 20px; }
}

/* Kreis Styles */
#kreis {
    background-color: red;
    position: absolute;
    width: 200px;
    height: 200px;
    top: 100px;
    left: 250px;
    border: 1px solid black;
    text-align: center;
    border-radius: 100px;
}

/* Blockquote Link Color */
#wrapper .gridContainer.clearfix #main #newsblock blockquote p a {
    color: #940000;
}

/* Design-Tokens */
:root {
    --radius: 16px;
    --shadow: 0 6px 24px rgba(0,0,0,.12);
}

.image-wrapper {
    position: relative;
    overflow: hidden; /* wichtig */
}
/* Hover-Zoom Image */
.image-wrapper img {

    transition: transform 0.4s ease;
}

.image-wrapper:hover img {
    transform: scale(1.1); /* zoom in */
}

/* Hover-Zoom */
.zoom-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.zoom-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .28s ease;
    will-change: transform;
    display: block;
}
@media (hover:hover) and (pointer:fine) {
    .zoom-card:hover img {
        transform: scale(1.06);
    }
}
@media (prefers-reduced-motion: reduce) {
    .zoom-card img {
        transition: none;
    }
}

/* Modal */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    z-index: 9999;
}
.modal-backdrop.show {
    display: flex;
}
.modal {
    position: relative;
    width: min(640px, 100%);
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 18px 60px rgba(0,0,0,.25);
    overflow: hidden;
}
.modal .wrap {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}
.hero {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}
.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.content {
    padding: 24px;
}
.modal h2 {
    margin: 0 0 12px;
    font-size: 1.6rem;
}
.modal p {
    margin: 0 0 16px;
}
.modal form {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}
.modal input[type="email"] {
    flex: 1 1 260px;
    padding: 12px 14px;
    border: 1px solid #ccc;
    border-radius: 12px;
    font-size: 1rem;
}
.modal button {
    padding: 12px 16px;
    border: 0;
    border-radius: 12px;
    background: #111;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}
.consent {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    font-size: .9rem;
    margin-top: 8px;
}
.consent input {
    margin-top: 3px;
}
.modal.fine {
    font-size: .85rem;
    color: #666;
    margin-top: 8px;
}
.close-x {
    position: absolute;
    top: 10px;
    right: 12px;
    cursor: pointer;
    font-size: 22px;
    line-height: 1;
    border: 0;
    background: transparent;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0,0,0,.6);
}
.success,
.error {
    margin-top: 10px;
    font-size: .95rem;
    display: none;
}
.success.show {
    display: block;
    color: #0a7a36;
}
.error.show {
    display: block;
    color: #b00020;
}
@media (min-width: 760px) {
    .modal.wrap {
        grid-template-columns: 1.2fr 1fr;
    }
    .hero {
        aspect-ratio: auto;
        min-height: 100%;
    }
}
#xmas-popup {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.55);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }

  #xmas-popup .box {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    max-width: 380px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    animation: fadeIn .4s ease;
  }

  @keyframes fadeIn {
    from {opacity: 0; transform: scale(0.95);}
    to {opacity: 1; transform: scale(1);}
  }