@font-face {
    font-family: 'apaluregular';
    src: url('../fonts/apalu/apalu.woff2') format('woff2'),
         url('../fonts/apalu/apalu.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'amarante';
    src: url('../fonts/amarante/amarante-regular.woff2') format('woff2'),
         url('../fonts/amarante/amarante-regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'papyrus';  
    src: url('../fonts/papyrus/papyrus.woff2') format('woff2'),
         url('../fonts/papyrus/papyrus.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'spicy-rice'; 
    src: url('../fonts/spicy-rice-v28-latin/spicy-rice-v28-latin-regular.woff2') format('woff2'),
         url('../fonts/spicy-rice-v28-latin/spicy-rice-v28-latin-regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* ==================================================
   1. ROOT / CSS VARIABLES
   ================================================== */

:root {
    /* Typography */
    --cassiopeia-font-family-body: "Roboto", sans-serif;
    --cassiopeia-font-family-headings: "Roboto", sans-serif;
    --cassiopeia-font-weight-headings: 300;
    --cassiopeia-font-weight-normal: 300;

    /* Base Layout */
    --body-font-size: 1.2rem;
    --body-font-weight: 300;
    --body-bg: inherit;
    

    /* === DEINE HAUPTFARBEN (HEX) === */
    --color-primary: #002432;      /* rgb(0, 36, 50) */
    --color-secondary: #022e3f;    /* rgb(2, 46, 63) */
    --color-intro: #001923;        /* rgb(0, 25, 35) */
    --color-success: #006575;      /* rgb(0, 101, 117) */
    --color-tertiary: #d9d4d47a;  
    --color-accent: #35ffe8;       /* rgb(53, 255, 232) */

    /* === RGB für Cassiopeia === */
    --color-primary-rgb: 0, 36, 50;
    --color-secondary-rgb: 2, 46, 63;
    --color-intro-rgb: 0, 25, 35;
    --color-success-rgb: 0, 101, 117;
    --color-tertiary-rgb: 217, 212, 212;
    --color-accent-rgb: 53, 255, 232;

    /* === Cassiopeia Mapping === */
    --cassiopeia-color-primary: var(--color-primary);
    --cassiopeia-color-primary-rgb: var(--color-primary-rgb);

    --cassiopeia-color-link: var(--color-secondary);
    --cassiopeia-color-hover: var(--color-accent);

    --cassiopeia-color-success: var(--color-success);
    --cassiopeia-color-success-rgb: var(--color-success-rgb);

    --cassiopeia-color-info: var(--color-tertiary);
    --cassiopeia-color-info-rgb: var(--color-tertiary-rgb);

    /* Links */
    --link-color: var(--color-secondary);
    --link-hover-color: var(--color-accent);

    /* Buttons */
    --cassiopeia-btn-primary-bg: var(--color-primary);
    --cassiopeia-btn-primary-border: var(--color-primary);
    --cassiopeia-btn-primary-hover-bg: var(--color-success);

    /* Header */
    --cassiopeia-header-background: var(--color-primary);
    --cassiopeia-header-color: #ffffff;

    /* Cards / Inhalte */
    --cassiopeia-card-bg: #ffffff;
    --cassiopeia-card-border: var(--color-tertiary);

    /* Misc */
    --border-radius: 0.375rem;
}


/* ==================================================
  2. BODY / TYPOGRAPHY / ELEMENTS
  ==================================================  */
 html, body {
    height: auto !important; 
    min-height: 100%;
    overflow-x: hidden;
    background-color: var(--color-primary);
    color: #ffffff;
}
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    text-transform: uppercase;
}
    img {
    max-width: 100%;
    height: auto;
    display: block;
}

    ul {
    list-style-type: none;
    padding-left: 0rem;
}

    a:not([class]) {text-decoration: none;}

.fa-linkedin-in,
.fa-youtube, .fa-instagram, 
.fa-x-twitter,
.fa.fa-facebook-f
 {
    color: var(--white) !important;
}
.fa-eye, .fa-coins {color: var(--color-accent);}

/* ==================================================
   4. UTILITIES / COLORS
   ================================================== */


.no-events { pointer-events: none; }

/* Hintergrund-Farben (Utilities) */
.bg-color-primary { background-color: var(--color-primary);}
.bg-color-secondary { background: var(--color-secondary);}
.bg-color-intro { background-color: var(--color-intro);}
.bg-color-success { background-color: var(--color-success);}
.bg-color-tertiary { background-color: var(--color-tertiary);}
.bg-color-accent { background-color: var(--color-accent);}
.bg-color-black { background-color: var(--black);}

/* Text-Colors */
.text-white { color: var(--white); }
.text-dark { color: var(--color-secondary);}
.text-success { color: var(--color-success)!important;}
.intro-text{ color: var(--color-intro);}
.text-accent { color: var(--color-accent);}
.text-tertiary { 
  --text-opacity: 1;
    color: #ffffffba !important;
}
  
.text-bg-color-primary { color: var(--white); background-color: var(--color-primary);}
.text-bg-color-secondary { color: var(--white); background: var(--color-secondary);}
.text-bg-color-intro { color: var(--white); background-color: var(--color-intro);}
.text-bg-color-success { color: var(--white); background-color: var(--color-success);}
.text-bg-color-tertiary { color: var(--color-dark); background-color: var(--color-tertiary);}
.text-bg-color-accent { color: var(--white); background-color: var(--color-accent);}

.border-tertiary { border: 1px solid var(--color-tertiary);}
.border-lightgrey { border-bottom: 1px solid #464e56;}
/* Modul-Titel Effekt - mit js */
.custom-title-split .first-word {
      color: var(--color-accent); 
      font-weight: bold;
      text-transform: uppercase;
}
.box {
   color: var(--color-tertiary);
   text-align: center;
  
   display: block; /* Sicherstellen, dass es ein Block-Element ist */
}


.py-6 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.topbar-container {
    min-height: 45px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.social-icon {
    width: 32px;  /* Feste Breite */
    height: 32px; /* Feste Höhe */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary); /* Deine Variable */
    color: var(--white);
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s ease-in-out; /* Sanfter Übergang statt Sprung */
    font-size: 14px;
}

.social-icon:hover {
    background-color: var(--color-accent);
    color: var(--white) !important;
    transform: translateY(-2px); /* Eleganter kleiner Lift statt Wackeln */
}

/* Icons innerhalb der Info-Texte fixieren */
.topbar-info i {
    width: 16px;
    text-align: center;
    display: inline-block;
}

/* Verhindert, dass Bootstrap-Standard-Styles dazwischenfunken */
.topbar-socials .social-icon i {
    line-height: 1;
    margin: 0;
    padding: 0;
}
/*carousel*/
.carousel-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    min-height: 40vh;
    padding: 2rem;
    margin: auto;
    color: var(--text-primary);
}
.stars {
    color: var(--color-accent);
    font-size: 2rem;
    margin-bottom: 1.3rem;
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}
.blockquote {
    margin-bottom: 1rem;
    font-size: var(--body-font-size);
    font-style: italic;
    padding: 1rem;
    margin: 1.5rem 0;
    border-left: 4px solid var(--color-accent);
}

/*logo-slider*/
.logo-img {
    max-width: 100%;
    height: auto;
    display: inline-block;
    object-fit: contain;
}
/*Ausstellungen-Timeline und icons*/
.timeline-date {
            color: var(--color-success);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .timeline-text {
            margin: 0 0 0 40px; /* Einrückung unter dem Icon */
            color: var(--white);
        }
.icon-box {
    background-color: var(--color-accent);
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--kupfer);
    font-size: 18px;
    padding: 6px;
}

.border-y{
  border-top: 1px solid var(--color-info);
  border-bottom: 1px solid var(--color-info);
}

/*bilderdetails-artwork*/
/* Bildbereich */
.artwork-image-stage {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Bild selbst */
.artwork-canvas {
    display: block;
    max-width: 100%;
    max-height: 420px;   /* Bild bewusst kleiner halten */
    width: auto;
    height: auto;
    object-fit: contain;
    
}

/* Optional: Tags etwas luftiger */
.artwork-tags {
    text-align: center;
}
/*soul auf leinwand*/
.big-title-bg {
    font-family: 'spicy-rice';
    text-transform: uppercase;
    -webkit-text-fill-color: transparent;
    background-image: url(/images/system/seelenblick-bg.webp);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    /* -webkit-background-clip: text; */
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: white;
    background-clip: text;
    font-size: 10.5vw;
    font-weight: 900;
    line-height: 1.1em;
    text-align: center;
}


/* Container für das Ribbon */
.corner-wrapper { position: relative; overflow: hidden; }
.corner-ribbon {
    position: absolute; top: 0; right: 0; width: 70px; height: 70px;
    background: linear-gradient(45deg, transparent 50%, #35ffe8 50%); z-index: 10;
}
.corner-ribbon span {
    position: absolute; display: block; width: 100px; color: #05161d;
    font-size: 10px; font-weight: bold; text-transform: uppercase; text-align: center;
    right: -22px; top: 15px; transform: rotate(45deg);
}

/* ==================================================
   5. BUTTONS
   ================================================== */
/* Standardzustand des Buttons */
.btn.btn-dark {
    border-color: var(--color-accent);
    color: var(--white);
    background-color: var(--color-primary);
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
}

.btn.btn-dark:hover,
.btn.btn-dark:focus,
.btn.btn-dark:active {
    background-color: var(--color-secondary);
    border-color: var(--color-primary);
    color: var(--white);
}

.btn.btn-light {
    border-color: var(--color-accent);
    background-color: var(--color-accent);
    color: var(--color-primary);
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
}

/* Hover / Focus / Active */
.btn.btn-light:hover,
.btn.btn-light:focus,
.btn.btn-light:active {
    background-color: var(--color-primary);
    border-color: var(--color-accent);
    color: var(--white);
}
/* ==================================================
   6. TABLES
   ================================================== */
 .pricing-section {
    padding: 20px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.pricing-card {
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: transform 0.3s ease;
    background-color: #fff;
}
.pricing-card .card-header {
    background-color: var(--color-accent);
    color: #fff;
    padding: 30px;
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.pricing-card .card-body {
    padding: 40px;
    text-align: center;
}
.pricing-card .pricing {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 30px;
    color: #007bff;
}

.pricing-card .pricing sup {
    font-size: 3rem;
    top: -30px;
}

.pricing-card .features {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.pricing-card .features li {
    margin-bottom: 15px;
    font-size: 18px;
}

.pricing-card .features li i {
    color: var(--color-accent);
    margin-right: 10px;
}

.list-container {
    /* Der Container wird nur so breit wie die längste Zeile */
    width: fit-content; 
    
    /* Zentriert den gesamten Block innerhalb der Sidebar */
    margin-left: auto;
    margin-right: auto;
    
    /* Sorgt dafür, dass der Text innerhalb des Blocks linksbündig bleibt */
    text-align: left;
}

/* Optional: Falls die Icons nicht perfekt untereinander stehen */
.list-container p {
    display: flex;
    align-items: center;
}

/*Tabelle Sendetermine*/

.Gruppe div {
    background-color: #eecfd2;
    color: var(--dark);
    text-align: center;
    display: inline-block;
    width: 18%;
    margin: 2px 0;
    padding: 2px 0;
    /* Hier die Größe für 375px */
    font-size: 10px; 
}


.Monat div {
   background-color: #520f15; 
color:#fff;
}
div.Beschr { 
width: 10%;
 }

/* Modul Aktuelle Termine */
.termine-wrapper {padding: 10px;}
.termine-item {padding-top: 20px; padding-bottom: 20px; height: 100%; display:block;}
.termine-item h4 {margin: 0 0 5px; color: var(--color-accent); }
.termine-item p {margin: 0; color: var(--white);}

/* ==================================================
   7. COMPONENTS & CONTENT
   ================================================== */
 /* Schlagschatten - Einleitungs- & Hauptbild */
.artwork-canvas {
    display: inline-block;
    background: #fff;

    /* simulierte Leinwandkante + Schatten */
    box-shadow:
        /* weiße Leinwandkante rechts */
        1px 0 0 #ffffff,
        /* weiße Leinwandkante unten */
        0 1px 0 #ffffff,

        /* kräftiger Schlagschatten */
        10px 10px 15px rgba(0, 0, 0, 0.35),
        18px 18px 30px rgba(0, 0, 0, 0.45);
}

.icon-container {
            width: 70px;
            height: 70px;
        }
.img-limit-500 {
  max-height: 500px;
  max-width: 100%;
  height: auto;
  width: auto;
}

/* Galerie – Masonry */
.gallery {
  column-count: 4;
  column-gap: 1rem;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  overflow: hidden;
}

.gallery-img {
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.04);
  opacity: 0.85;
}

/* Filter */
.filter-menu .btn.active {
  background-color: #000;
  color: #fff;
}

/*counter-modul*/
.counter-wrapper {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.counter-box {
  background: rgba(255,255,255,0.15);
  padding: 2.5rem 2rem;
  width: 220px;
  text-align: center;
  border-radius: 6px;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.6s ease;
}

.counter-box.visible {
  transform: translateY(0);
  opacity: 1;
}

.counter-number {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
}

.counter-label {
  margin-top: 0.5rem;
  font-size: 1.1rem;
  color: #fff;
  opacity: 0.85;
}

/*modul aktuelle termine titel*/
.border-left{
  border-left: 4px solid var(--color-accent);
   }
.border-bot {
    border-bottom: 1px solid var(--color-intro) !important;
}

/* Angebote Jasmin */
.angebote-section {
  padding: 40px 0;
  background: #faf9f7;
}

.angebote-card {
  background: #ffffff;
  border: 1px solid #e8e3dc;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.angebote-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.angebote-image-wrap {
  position: relative;
  padding: 20px 20px 0 20px;
}

.angebote-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}

.angebote-badge {
  position: absolute;
  top: 34px;
  left: 34px;
  background: rgba(200, 169, 126, 0.92);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 12px;
  letter-spacing: 0.02em;
}

.angebote-body {
  padding: 26px 28px 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.angebote-title {
  font-size: 2rem;
  line-height: 1.15;
  color: #2a2927;
  margin-bottom: 10px;
  font-family: Georgia, "Times New Roman", serif;
}

.angebote-subtitle {
  font-size: 1.2rem;
  color: #5f5a54;
  margin-bottom: 22px;
}

.angebote-price {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.4rem;
  color: #1f6f78;
  margin-bottom: 20px;
  line-height: 1;
}

.angebote-price small {
  font-size: 0.58em;
  color: #4e7d84;
}

.angebote-divider {
  border: 0;
  border-top: 1px solid #ece7e1;
  margin: 20px 0;
}

.angebote-note {
  color: #5f5a54;
  font-size: 1.08rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.angebote-list {
  list-style: none;
  padding: 0;
  margin: 0 0 26px 0;
  flex-grow: 1;
}

.angebote-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: #3e3b37;
  font-size: 1.12rem;
  line-height: 1.45;
}

.angebote-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #1f6f78;
  font-weight: 700;
}

.angebote-btn {
  background: #1f6f78;
  border: none;
  border-radius: 14px;
  padding: 15px 24px;
  font-size: 1.2rem;
  font-weight: 700;
  width: 100%;
  color: #fff;
  transition: background 0.2s ease, transform 0.2s ease;
}

.angebote-btn:hover,
.angebote-btn:focus {
  background: #195b62;
  color: #fff;
  transform: translateY(-1px);
}

.angebote-link {
  display: inline-block;
  margin-top: 18px;
  color: #1f6f78;
  text-decoration: none;
  font-size: 1.08rem;
  font-weight: 500;
}

.angebote-link:hover,
.angebote-link:focus {
  color: #174d53;
  text-decoration: underline;
}

/* ===== Angebote Detailseite ===== */

.spiegel-sec{
  background:var(--dunkelblau);
  color:#ffffff;
}

/* Layout */

.spiegel-wrap{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
}

/* Bild */

.spiegel-img{
  width:100%;
  height:520px;
  object-fit:cover;
  display:block;
}

/* Inhalt */

.spiegel-content{
  padding:40px;
}

/* kleine Überschrift */

.spiegel-kicker{
  color:var(--hellblau);
  margin-bottom:10px;
}

/* Titel */

.spiegel-title{
  color:var(--hellblau);
  margin-bottom:20px;
}

/* Liste */

.spiegel-list{
  list-style:none;
  padding:0;
}

.spiegel-list li{
  position:relative;
  padding-left:24px;
  margin-bottom:10px;
}

.spiegel-list li::before{
  content:"✓";
  position:absolute;
  left:0;
  color:var(--hellblau);
  font-weight:700;
}

/* Preis */

.spiegel-preis{
  margin-top:20px;
  color:var(--hellblau);
}




/* ==================================================
   8. ACCESSIBILITY / HIGH CONTRAST
   ================================================== */


/* ==================================================
   9. TEMPLATE LAYOUT / CONTAINERS / GRID
   ================================================== */
.full-width-container-inner {
    max-width: 1400px; 
    margin-left: auto; 
    margin-right: auto;
   }

.module-flex-container {
    display: flex;
    flex-wrap: wrap; 
    gap: 1rem; 
    justify-content: space-around;
}
.module-flex-container > div {
    flex: 1 1 0px; 
    min-width: 250px; /* Mindestbreite, bevor sie in die nächste Zeile rutschen */
    padding-left: 20px;
    padding-right: 20px;
}

.container-header .container-nav {
    padding-bottom: 0 !important;
   }
.container-nav {
   background-color:var(--bg-color-intro) !important;
}
.bottom-i {
  background-color: var(--dark-grey);
  color: var(--light-grey);
}
.bottom-i h1 {color: var(--white); }

/* ==================================================
   10. HEADER / MENU / BANNER
   ================================================== */

.container-header {
    background-color: var(--color-primary);
    box-shadow: none;
    background-image:none;
   
}

/*headerbild*/
.hero-banner {
    position: relative;
    width: 100%;
}

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


.hero-content {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    
    width: 40%;
    padding: 2rem;

    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border-radius: 10px;
    z-index: 2;
}

.hero-content h2 {
    font-size: clamp(1.5rem, 3vw, 3rem);
    line-height: 1.2;
}

.hero-content span {
    color: #00d1c1;
}

.hero-content p {
    font-size: clamp(0.9rem, 1.2vw, 1.2rem);
}

.hero-buttons {
    margin-top: 1rem;
}

.hero-buttons .btn {
    margin-right: 10px;
}


/* ==================================================
   11. FOOTER
   ================================================== */
 .bottom-nav h3 {
    color: var(--white);
    text-transform: uppercase;
}
.bottom-nav p{
  color: var(--color-intro);
}
/* Basis-Links und aktiver Link */
.bottom-nav .mod-menu a,
.bottom-nav .mod-menu .active > a {
    color: var(--white);
    text-decoration: none !important;
}

.bottom-nav .mod-menu a:hover,
.bottom-nav .mod-menu a:focus,
.bottom-nav .mod-menu a:active {
    color: var(--color-accent); 
    text-decoration: none !important;
    
  }
/* Fokus-Zustand (für Barrierefreiheit/Tab-Taste) */
.bottom-nav .mod-menu a:focus {
    outline: 2px solid #ffcc00;
}


.bottom-nav ul.social_icons li a {
    height: 40px;
    width: 40px;
    line-height: 38px;
    text-align: center;
    font-size: 13px;
    border-radius: 3px;
}
ul.social_icons li {
    list-style: none;
    padding: 0 0px 0 0px;
    line-height: 0;
}
.bottom-nav ul.social_icons {
    display: flex;
    list-style: none;
    margin-top: 20px;
    padding-left: 0;
    gap: 5px;
}

.bottom-nav .metismenu.mod-menu .metismenu-item {
    padding-left: 0em;
    
}
.bottom-nav {
    z-index: 1;
    position: relative;
    background-color: var(--bg-color-intro);
    /* Entweder 'background' nutzen, um alles in einer Zeile zu haben: 
    background: url(../images/system/footer-bg.webp) no-repeat center center / auto; */
}



/* ==================================================
   12. RESPONSIVE / MEDIA QUERIES
   ================================================== */

/* --- Media Query für Mobilgeräte (unter 768px) --- */
@media (max-width: 767.98px) {
    /* 1. Container-Inhalte untereinander stapeln und zentrieren */
    .topbar-container .container {
        flex-direction: column !important;
        gap: 12px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    /* 2. Kontaktdaten zentrieren und Abstände anpassen */
    .topbar-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px; /* Abstand zwischen Mail und WhatsApp */
        width: 100%;
    }

    .topbar-info .me-4 {
        margin-right: 0 !important; /* Bootstrap-Margin rechts entfernen */
    }

    /* 3. Social Icons zentrieren */
    .topbar-socials {
        justify-content: center;
        width: 100%;
        margin-top: 5px;
    }

    /* 4. Optional: Icons etwas größer für Touch-Bedienung */
    .social-icon {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
}



/* --- Media Queries für die Schriftgrößen --- */

/* --- TABLET: Ab 768px --- */
@media (min-width: 768px) {
    .Gruppe div {
        font-size: 14px;
        padding: 5px 0;
    }
}

/* --- DESKTOP: Ab 992px --- */
@media (min-width: 992px) {
    .Gruppe div {
        font-size: 16px;
    }
}

/* Deine restlichen Styles bleiben gleich */
.Monat div {
    background-color: #520f15; 
    color: #fff;
}
div.Beschr { 
    width: 10%;
}

/*galerie masonry*/
@media (max-width: 992px) {
  .gallery { column-count: 3; }
}
@media (max-width: 768px) {
  .gallery { column-count: 2; }
}
@media (max-width: 480px) {
  .gallery { column-count: 1; }
}
/*Jasmin angebote*/
@media (max-width: 991.98px) {
  .angebote-title {
    font-size: 1.8rem;
  }

  .angebote-price {
    font-size: 2.1rem;
  }
}

@media (max-width: 575.98px) {
  .angebote-section {
    padding: 24px 0;
  }

  .angebote-body {
    padding: 22px 20px 24px;
  }

  .angebote-image-wrap {
    padding: 16px 16px 0 16px;
  }

  .angebote-image {
    height: 200px;
  }

  .angebote-badge {
    top: 28px;
    left: 28px;
  }
}

/*Jasmin angebote detailseite*/
@media(max-width:991px){

.spiegel-img{
  height:380px;
}

.spiegel-content{
  padding:30px 0;
}

}




/*headerbild*/
@media (max-width: 768px) {

    .hero-content {
        position: absolute !important;
        top: 50%;
        left: 5%;
        transform: translateY(-50%);
        
        width: 90%;
        padding: 0.8rem;
    }

    /* 👉 Deutlich kleinere Schrift */
    .hero-content h2 {
    /* Minimum: 0.8rem, Skalierung: 3vw, Maximum: 1.2rem */
    font-size: clamp(0.8rem, 3vw, 1.2rem);
    line-height: 1.2; /* Etwas mehr Zeilenabstand für bessere Lesbarkeit */
}

    .hero-content p {
        font-size: clamp(0.7rem, 3.5vw, 0.9rem);
        margin-bottom: 0;
    }

    
}