/*-----------------------------------------------------------------------------------
Theme Name: Mount Rigi
Version: 1.0.3
Datum: 5.11.2025
-----------------------------------------------------------------------------------*/

@font-face {
  font-family: 'GlamourAbsolute_Condensed';
  src: url('../fonts/glamourabsolute/GlamourAbsolute_Condensed.woff2') format('woff2'),
       url('../fonts/glamourabsolute/GlamourAbsolute_Condensed.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'GlamourAbsolute_Extended';
  src: url('../fonts/glamourabsolute/GlamourAbsolute_Extended.woff2') format('woff2'),
       url('../fonts/glamourabsolute/GlamourAbsolute_Extended.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'GlamourAbsolute_Regular';
  src: url('../fonts/glamourabsolute/GlamourAbsolute_Regular.woff2') format('woff2'),
       url('../fonts/glamourabsolute/GlamourAbsolute_Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'MostraOneBold';
  src: url('../fonts/mostra/MostraOneBold.woff2') format('woff2'),
       url('../fonts/mostra/MostraOneBold.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Univers-CondensedBold';
  src: url('../fonts/univers/Univers-CondensedBold.woff2') format('woff2'),
       url('../fonts/univers/Univers-CondensedBold.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'UniversLTStd-BoldCn';
  src: url('../fonts/univers/UniversLTStd-BoldCn.woff2') format('woff2'),
       url('../fonts/univers/UniversLTStd-BoldCn.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'UniversLTStd-LightCn';
  src: url('../fonts/univers/UniversLTStd-LightCn.woff2') format('woff2'),
       url('../fonts/univers/UniversLTStd-LightCn.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}


/*============================================================
 Base Reset & Variables
============================================================*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-turquoise: #03FAE1;
  --color-dark: #10112E;
  --color-light: #ffffff;
  --color-beige: #B28A64;

  --font-size-base: clamp(1rem, 1vw + 0.5rem, 1.4rem);
  --font-size-sm: clamp(0.875rem, 0.9vw, 1.1rem);
  --font-size-lg: clamp(1.2rem, 1.5vw, 1.8rem);
  --font-size-xl: clamp(1.8rem, 2.5vw, 2.4rem);
}

html, body {
  height: 100%;
  width: 100%;
  background-color: var(--color-light);
  color: var(--color-dark);
  font-family: 'UniversLTStd-LightCn', sans-serif;
  line-height: 1.6;
  text-align: left;
}


/*============================================================
 Headlines
============================================================*/
h1 {
  font-family: 'MostraOneBold';
  font-size: var(--font-size-xl);
  color: var(--color-dark);
  text-align: left;
  letter-spacing: 0.02em;
}

h2 {
  font-family: 'MostraOneBold';
  font-size: var(--font-size-lg);
  color: var(--color-dark);
  font-weight: 600;
}

h3 {
  font-family: 'UniversLTStd-LightCn';
  font-size: clamp(1.1rem, 1.4vw, 1.3rem);
  color: var(--color-dark);
  margin: 25px 0 10px 0;
  font-weight: 700; /* fett */
}

/*========== Mobile Anpassungen  ==========*/
@media (max-width: 768px) {
  h1 {
    font-size: clamp(1.4rem, 5vw, 2rem);
  }
  h2 {
    font-size: clamp(1.2rem, 4vw, 1.6rem);
  }
}


/*============================================================
 Paragraphs & Lists
============================================================*/
p {
  font-family: 'UniversLTStd-LightCn';
  font-size: var(--font-size-base);
  color: var(--color-dark);
  margin: 0 0 30px 0;
  text-align: left;
}

ul {
  list-style-type: disc;
  padding-left: 2.5rem;
  font-size: clamp(1rem, 1.2vw, 1.4rem);
  margin: 0 0 30px 0;
  text-align: left;
}

ol {
  padding-left: 2.5rem;
  font-size: clamp(1rem, 1.2vw, 1.4rem);
  margin: 0 0 30px 0;
  text-align: left;
}

ol li {
  margin-bottom: 1rem;
}

ol li ol {
  list-style-type: decimal;
  margin-top: 0.5rem;
}

ol li ol li {
  margin-bottom: 0.5rem;
}

/* Hervorgehobener Absatz */
.highlight {
  background-color: var(--color-turquoise);
  padding: 15px 20px 10px 20px;
  margin: 25px 0 !important;
  border-radius: 0;
  color: var(--color-dark);
  text-align: left;
  max-width: 100%;
}

/* Screen Reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/*============================================================
 Top Promo Bar
============================================================*/
.top-promo-bar {
	display:none;
  width: 100%;
  overflow: hidden;
  /* animierter Farbverlauf */
  background: linear-gradient(90deg,
    var(--color-turquoise),
    var(--color-turquoise),
    var(--color-turquoise)
  );
  background-size: 400% 400%;
  animation: promoGradientMove 14s ease-in-out infinite;
}

.top-promo-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.4rem 3rem 0.5rem;
  text-align: center;
  position: relative;
  height: 2.4em; /* Höhe für die überblendeten Texte */
}

/* gemeinsame Textbasis */
.top-promo-message {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: 'UniversLTStd-LightCn', sans-serif;
  font-size: clamp(0.75rem, 1vw, 0.95rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-dark);
  white-space: nowrap;
  opacity: 0;
}

/* Nachricht 1 */
.top-promo-message.message-1 {
  animation: promoTextFade 8s infinite;
}

/* Nachricht 2 (startet zeitversetzt) */
.top-promo-message.message-2 {
  animation: promoTextFade 8s infinite;
  animation-delay: 4s;
}

/* Hintergrund-Animation */
@keyframes promoGradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Text-Überblendung */
@keyframes promoTextFade {
  0% {
    opacity: 0;
    transform: translate(-50%, -40%);
  }
  10% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
  40% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
  50% {
    opacity: 0;
    transform: translate(-50%, -60%);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -60%);
  }
}

/* Mobile: etwas kompakter */
@media (max-width: 480px) {
  .top-promo-inner {
    padding: 0.35rem 0.75rem 0.45rem;
  }

  .top-promo-message {
    font-size: 0.7rem;
    letter-spacing: 0.14em;
  }
}


/*============================================================
 Header Style
============================================================*/
.main-header {
  position: absolute;        /* liegt über dem normalen Flow */
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;   /* transparent statt Balkenfarbe */
  padding: 2rem 1rem;
  z-index: 10;               /* höher als .bottle-section (hat z-index: 1/2) */
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Logo */
.header-logo {
  display: inline-block;
}

.header-logo picture,
.header-logo img {
  display: block;
  height: 160px; /* etwas grösser jetzt, da keine Menüpunkte */
  width: auto;
}

/*========== Mobile Anpassungen  ==========*/
@media (max-width: 768px) {
  .main-header {
    padding: 1.2rem 0.75rem;
  }

  .header-logo picture,
  .header-logo img {
    height: 56px;
  }
}

@media (max-width: 480px) {
  .main-header {
    padding: 1rem 0.5rem;
  }

  .header-logo picture,
  .header-logo img {
    height: 100px;
  }
}




/*============================================================
 Snowflakes
============================================================*/
.snowflake {
  position: fixed;
  top: -10px;
  left: 0;
  color: #ffffff;
  pointer-events: none;
  z-index: 99999;
  font-size: 16px;
  opacity: 0;
  animation-name: snow-fall;
  animation-timing-function: linear;
  animation-iteration-count: 1;
}

/* Fall-Animation:
   - 0%  -> oben
   - 50% -> 50vh (noch voll sichtbar)
   - 100% -> unten, aber ausgeblendet
*/
@keyframes snow-fall {
  0% {
    transform: translateY(-10px);
    opacity: 1;
  }
  50% {
    transform: translateY(50vh);
    opacity: 1;
  }
  100% {
    transform: translateY(100vh);
    opacity: 0;
  }
}



/*============================================================
 Hero Bottles Section – Einfach und perfekt zentriert
============================================================*/
.bottle-section {
  width: 100%;
  background: #FAE0C4;
  position: relative;
  padding-bottom: 0;
  z-index: 1;
  overflow: visible; /* wichtig: erlaubt Überlappung */
	
  /*background-image: url("https://www.mountrigi.ch/template/images/Mount-Rigi-Tonic_alt.png");
  background-size: cover;
  background-position: center center; /* zentriert horizontal + vertikal
  background-repeat: no-repeat;*/

  /*background: repeating-linear-gradient(
    169deg,             /* von oben links nach unten rechts */
    #10112E,            /* Farbe 1 */
    #10112E 40px,       /* Ende des ersten Streifens */
    #FAE0C4 40px,       /* Farbe 2 beginnt hier */
    #FAE0C4 80px        /* Ende des zweiten Streifens */
  );*/
}

.bottle-section .container {
  max-width: 1200px;
  margin: 0 auto;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 600px;
  position: relative;
  overflow: visible;
  z-index: 2;

  /* Überlappung nach unten */
  transform: translateY(300px);
}

.bottle-section .container picture {
  position: absolute;
  bottom: auto;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 750px;
}

.bottle-section .container img {
  width: 100%;
  height: auto;
  display: block;
}

/*========== Mobile Anpassungen  ==========*/
@media (max-width: 768px) {
  .bottle-section .container {
    height: 380px;
    transform: translateY(170px);
  }
  .bottle-section .container picture {
    width: 300px;
  }
}

@media (max-width: 480px) {
  .bottle-section .container {
    height: 380px;
    transform: translateY(180px);
  }
  .bottle-section .container picture {
    width: 320px;
  }
}



/*============================================================
 Marquee
============================================================*/
.marquee {
  position: relative;
  z-index: 0; /* liegt hinter dem Bild */
  /* --- Steuer-Variablen (pro Marquee überschreibbar) --- */
  --padY: 1px;
  --gap-text: 20px;
  --gap-img: 60px;
  --text-size: clamp(20px, 6vw, 60px);  /* skaliert auf Mobile runter */
  --text-lh: 1.2;
  --img-h: clamp(80px, 22vw, 200px);    /* Bildhöhe wird responsiv */
  --radius: 12px;

  width: 100%;
  max-width: 100%;
  overflow: hidden;        /* Fallback */
  overflow-x: clip;        /* moderne Browser */
  user-select: none;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
}

/* Track bleibt wie gehabt */
.track {
  display: inline-flex;
  align-items: center;
  gap: 20px;               /* Basis, wird unten je Typ überschrieben */
  white-space: nowrap;
  will-change: transform;
  padding: var(--padY) 0;
  transform: translate3d(0,0,0);
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Cursor */
.m-text {
  background: var(--color-dark);
  cursor: default;
}
.m-images { cursor: default; }
.m-images a:hover { cursor: pointer; }

/* Text-Marquee */
.m-text .track { gap: var(--gap-text); }
.m-text .item {
  font-family: 'MostraOneBold', system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-size: var(--text-size);
  font-weight: 700;
  line-height: var(--text-lh);
  color: #fff;
  letter-spacing: .2px;
}
.m-text .sep { color: #fff; opacity: 1; }

/* Bild-Marquee */
.m-images .track { gap: var(--gap-img); }
.m-images .item { display: inline-flex; align-items: center; }
.m-images a {
  display: inline-flex; text-decoration: none; outline: none;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
}
.m-images img {
  display: block;
  height: var(--img-h);
  width: auto;            /* behält Seitenverhältnis */
  object-fit: cover;
}

/* Motion-Preference */
@media (prefers-reduced-motion: reduce) {
  .track { transform: none !important; }
}
@media (max-width: 768px) {
  .marquee {
    --padY: 6px;
    --gap-text: 14px;
    --gap-img: 28px;
    --text-size: clamp(18px, 7vw, 44px);
    --img-h: clamp(100px, 30vw, 220px);
    --radius: 10px;
  }
  .m-text .item { letter-spacing: .1px; }
}

@media (max-width: 480px) {
  .marquee {
    --padY: 4px;
    --gap-text: 10px;
    --gap-img: 20px;
    --text-size: clamp(18px, 7vw, 44px);
    --img-h: clamp(90px, 34vw, 200px);
    --radius: 8px;
  }
}

/* Logos im Marquee schwarz-weiss */
.m-images img {
  filter: grayscale(100%) brightness(50%) contrast(120%);
  transition: filter 0.3s ease, opacity 0.3s ease;
  opacity: 0.9;
}

.m-images a:hover img {
  filter: grayscale(0%) brightness(100%) contrast(100%);
  opacity: 1;
}


/*============================================================
 Rezept 50/50 Split Section
============================================================*/
.split-section {
  display: flex;
  flex-direction: row;     /* Desktop: nebeneinander */
  width: 100%;
  height: 100vh;           /* gesamte Viewport-Höhe */
  align-items: stretch;
  margin: 0;
}

/* Beide Container gleich breit (Desktop) */
.split-section .container {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-sizing: border-box;
  height: 100vh;           /* jeder Container füllt ganze Höhe */
}

/* === Text-Container === */
.text-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Text auf max. 40 % Breite (Desktop) */
.text-container > * {
  max-width: 60%;
  margin-left: auto;
  margin-right: auto;
}

/* Überschrift */
.text-container h2 {
  font-family: 'GlamourAbsolute_Condensed', sans-serif;
  font-size: clamp(55px, 8vw, 140px);
  line-height: 1;
  color: var(--color-dark);
  margin-bottom: 1rem;
	text-align: center;
}

/* Zutaten */
.text-container p {
  font-family: 'MostraOneBold', sans-serif;
  font-size: clamp(26px, 2.5vw, 40px);
  line-height: 1.1;
  margin: 0;
  color: var(--color-dark);
	text-align: center;
}

/* Anleitung */
.text-container .recipe-instruction {
  font-family: 'GlamourAbsolute_Condensed', sans-serif;
  font-size: clamp(24px, 2vw, 25px);
  line-height: 1.3;
  margin-top: 1rem;
  color: var(--color-dark);
  text-align: center;
}

/* === Bildcontainer === */
.image-container {
  background: transparent;
  overflow: hidden;
}

.image-container picture,
.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.image-container picture,
.image-container.mt-tonic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 0%;
  display: block;
}

.image-container picture,
.image-container.mr-ango img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 0%;
  display: block;
}

.image-transform img {
  transform: scaleX(-1);
}

.img-trans img {
  object-position: center 100% !important; /* war vorher center 30% */
}

/* === Mobile Ansicht (bis 768 px) === */
@media (max-width: 768px) {
  .split-section {
    flex-direction: column-reverse; /* Bild oben, Text unten */
    height: auto;
  }

  .split-section .container {
    flex: 0 0 auto;
    width: 100%;
    height: 100vh;  /* auch mobil volle Höhe */
  }

  /* Text breiter auf Mobile */
  .text-container > * {
    max-width: 80%;
  }
	.text-container {
		height: auto !important;
		padding: 40px 0px !important;
	}
	.image-container  {
		height: auto !important;
		padding: 0px 0px !important;
	}
}


/*============================================================
 Stack Section
============================================================*/
.stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0px;
  padding: 100px 0px;
  background: white;
}

.animated-box {
  opacity: 0;
  width: auto;
  transform: scaleX(0);
  transform-origin: center;
	font-family: 'GlamourAbsolute_Condensed';
	font-family: 'EckhardtSansJNL';
	font-family: 'MostraOneBold';
  font-size: clamp(1.5rem, 5vw, 4rem);
	font-weight:normal;
	margin-top:12px;
	padding: 0px 60px 0px 60px;

  padding: 0.1em 0.5em;     /* weniger oben/unten */
  line-height: 1;           /* verhindert zusätzlich unnötigen Leerraum */
}

.one {
	background: #10112E;
  display: inline-block; /* wichtig für Transformation */
  transform: rotate(-3deg);
	color: var(--color-light);
}
.two {
	background: #FAE0C4;
  display: inline-block; /* wichtig für Transformation */
  transform: rotate(3deg);
	color:var(--color-dark);
}

.three {
	background: white;
  display: inline-block; /* wichtig für Transformation */
  transform: rotate(-2deg);
	color:var(--color-dark);
}

.four {
	background: #10112E;
  display: inline-block; /* wichtig für Transformation */
  transform: rotate(-1deg);
	color:var(--color-light);
}

@media (max-width: 1000px) {
	.stack {
	  padding: 30px 0px;
	}
	.animated-box {
		margin-top:6px;
		padding: 0px 10px 0px 10px;
	}
}


/*============================================================
 Find Section – im Stil der FAQ Section
============================================================*/
.find-section {
  display:none;
	background: #ffffff;
  text-align: center;
  padding: 3rem 1rem; /* wie .faq-header */
}

.find-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px; /* analog .faq-header h2 padding */
}

/* Hauptüberschrift */
.find-container h2 {
  margin: 0;
  font-family: 'GlamourAbsolute_Condensed', sans-serif;
  font-size: clamp(1.5rem, 5vw, 4rem);
  font-weight: normal;
  color: var(--color-dark);
  line-height: 1.1;
}

/* obere Zeile ("Mount Rigi") */
.find-top {
  display: block;
  background: #fff;
  color: var(--color-dark);
  padding: 0 0.25em;
	transform: rotate(0deg) translateX(0em);
}

/* untere Zeile ("findest du...") – gleiches Prinzip wie .faq-bottom */
.find-bottom {
  color: var(--color-light);
  background: var(--color-dark);
  display: inline-block;
  padding: 0.1em 0.5em;
  line-height: 1;
  transform: rotate(-3deg) translateY(0em);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* Mobile-Anpassungen */
@media (max-width: 480px) {
  .find-container h2 {
    font-size: 2rem; /* wie FAQ-Headline auf Mobile */
  }
}



/*============================================================
 FAQ Section
============================================================*/
.faq-header {
  background: #ffffff;
  text-align: center;
  padding: 8rem 1rem 5rem 1rem;
}

.faq-header h2 {
  margin: 0;
  font-family: 'MostraOneBold', sans-serif;
  font-size: clamp(1.5rem, 5vw, 4rem);
	font-weight:normal;
  padding: 0px 60px 0px 60px;
	background: white;
	color:var(--color-dark);
}

/* Mobile speziell pushen */
@media (max-width: 480px) {
  .faq-header h2 {
    font-size: 2.4rem; /* überschreibt clamp() für Smartphones */
  }
}

/* "Frequently Asked" */
.faq-top {
  display: block;
}

/* "Questions" */
.faq-bottom {
  color: var(--color-dark);
  background: #FAE0C4;
  display: inline-block;
  padding: 0.1em 0.5em;     /* weniger oben/unten */
  line-height: 1;           /* verhindert zusätzlich unnötigen Leerraum */
  transform: rotate(-3deg) translateY(-0.4em);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* ===== Akkordeon-Stil ===== */
.faq-content{
  max-width:900px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:1rem;
}

.faq-item{
  background:#fff;
  padding:1.2rem 1rem;
  border-bottom:1px solid #ddd;
}

/* Summary = Frage */
.faq-item summary{
  font-family:'MostraOneBold', sans-serif;
  font-size:clamp(1.6rem, 3vw, 2rem);
  font-weight:600;
  color:var(--color-dark);
  cursor:pointer;
  list-style:none;
  text-align:center;
  position:relative;
}
.faq-item summary::-webkit-details-marker{ display:none; }

/* Nur auf Mobile kleiner */
@media (max-width: 480px) {
  .faq-item summary {
    font-size: 1.4rem; /* z.B. fix kleiner auf Smartphones */
  }
}

/* Antwort */
.faq-item p {
  font-family: 'UniversLTStd-LightCn';
  font-size:clamp(1.1rem, 2.2vw, 1.4rem);
  color:var(--color-dark);
  margin:1rem 0 0 0;
  line-height:1.5;
  text-align:center;
}

/* Visueller Pfeil */
.faq-item summary::after{
  content:"▸";
  font-size:1.4rem;
  position:absolute;
  right:0;
  top:50%;
  transform:translateY(-50%);
  transition:transform .2s ease;
}
.faq-item[open] summary::after{
  transform:translateY(-50%) rotate(90deg);
}




/*============================================================
 Footer
============================================================*/
footer {
	width:100%;
	height:auto;
	background:#080d14; /* 21293F 080d14*/
	margin:0;
	padding:100px 0px 100px 0px;
	float:left;
	text-align: center;

}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0px;
}

.footer-head {
	float:left;
	width:100%;
	margin: 0;
	padding: 0px;
	background: transparent;
}

.footer-head p {
	font-weight:normal;
	font-size:6em;
	text-transform:uppercase;
	color: var(--color-light);
	font-family: 'MostraOneBold', sans-serif;
	text-align:center;
}

.footer1, .footer2, .footer3 {
	float:left;
	margin:50px 0px 0px 0px;
	padding:0px;
	background:transparent;
	width:33.33%;
	text-align:left;
}

.footer2 {
	text-align:center !important;
}

.footer3 h3, .footer3 p {
	float:right !important;
	text-align:right !important;
}

footer h3 {
	font-family: 'MostraOneBold';
	font-weight:normal;
	font-size:25px;
	text-transform:uppercase;
	color: var(--color-light);
	letter-spacing:4px;
	padding:10px 0px 0px 0px;
	line-height:150%;
}

.footer1 p, .footer2 p, .footer3 p {
	font-weight:normal;
	font-size:18px !important;
	text-transform:uppercase;
	color: var(--color-light);
	letter-spacing:1px;
	line-height:160%;
	font-family: 'UniversLTStd-LightCn';
}

.footer1 a, .footer3 a { color: var(--color-light) ; text-decoration:underline; }
.footer1 a:hover, .footer3 a:hover { text-decoration:none; }

.footer2 a { font-size:27px; color: var(--color-light) ; text-decoration:underline; margin-right:30px; }
.footer2 a:hover { text-decoration:none; color: var(--color-turquoise); }
.footer2 .last { margin-right:0px; }

/*========== Mobile Anpassungen  ==========*/
@media (max-width: 991px) {
	footer {
		padding:10px 0px 10px 0px;
	}
	.footer-inner {
		width:100%;
	}
	.footer-head {
		padding: 30px 0px 0px 0px;
	}
	.footer-head p {
		font-size:3em;
	}
	.footer1, .footer2, .footer3 {
		float:left;
		height:auto;
		margin:0 !important;
		padding:2em;
		background:transparent;
		width:100%;
		text-align:left;
	}
	.footer3 h3, .footer3 p {
		float:left !important;
		text-align:left !important;
	}
}


/*============================================================
 Newsletter-Form
============================================================*/
.newsletter-form {
  width: 100%;
  max-width: 100%; /* volle Breite */
  margin-top: 1rem;
  margin-left: 0; /* alles linksbündig */
  text-align: left;
}

/* Input + Button nebeneinander */
.newsletter-form .form-group {
  display: flex;
  align-items: stretch;
  background: #ffffff;
  border-radius: 0; /* keine runden Ecken */
  overflow: hidden;
  width: 100%;
}

/* E-Mail-Feld */
.newsletter-form input[type="email"] {
  flex: 1 1 auto;
  min-width: 0; /* erlaubt flexibles Schrumpfen */
  border: none;
  padding: 1rem 0.6rem; /* etwas mehr Luft */
  font-size: 1rem;
  font-family: 'MostraOneBold', sans-serif;
  color: #080d14; /* dunkler Text */
}

.newsletter-form input[type="email"]::placeholder {
  color: #080d14; /* dezentes Grau */
}

/* Fokusrahmen */
.newsletter-form .form-group:focus-within {
  outline: 2px solid #FAE0C4;
  outline-offset: 2px;
}

/* Button (Türkis, rechts) */
.newsletter-form button {
  flex-shrink: 0;
  width: 60px;
  min-width: 60px;
  border: none;
  background: #FAE0C4;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter-form button i {
  color: var(--color-dark);
  font-size: 1.2rem;
}

.newsletter-form button:hover {
  background: #FFF1E3; /* leicht helleres Türkis beim Hover */
}

/* --- Banner oben, standardmäßig hidden (kein body-padding nötig) --- */
.newsletter-banner {
  width: 100%;
  padding: 1rem;
  text-align: center;
  font-weight: normal;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999999;
  display: none;        /* per JS anzeigen */
  opacity: 0;           /* für Fade-In/Out */
  transition: opacity 0.3s ease;
}

.newsletter-banner p {
  text-align: center;
  margin: 0;
  font-size: 21px;
  font-family: 'Univers-CondensedBold';
}

.newsletter-banner.show { display: block; opacity: 1; }
.newsletter-banner.hide { opacity: 0; } /* wird danach per JS auf display:none gesetzt */

.newsletter-banner.success { background: #03FAE1; }
.newsletter-banner.error   { background: #fe036a; color: #10112E; }

/* Fehlermeldung */
.error-note {
  color: #fff;
  font-size: 17px;
  margin-top: 0.75rem;
  padding: 5px;
  background: #fe036a;
  font-family: 'MostraOneBold';
}

/* Datenschutz-Hinweis */
.privacy-note {
  display: block;
  margin-top: 1rem;
  font-size: clamp(0.5rem, 0.8vw, 1rem);
  color: #ffffff;
  line-height: 1.4;
  text-transform: none;
  max-width: 400px;
}

/* Honeypot unsichtbar */
.hp-wrap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Screenreader-only Text */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/*========== Mobile Anpassungen  ==========*/
@media (max-width: 768px) {
  .newsletter-form {
    width: 100%;
    max-width: 100%;
  }

  .newsletter-form .form-group {
    width: 100%;
  }

  .newsletter-form input[type="email"] {
    font-size: 1rem;
    padding: 1rem 1.6rem; /* mehr Luft auf Mobile */
  }

  .newsletter-form button {
    width: 58px;
    min-width: 58px;
  }

  .newsletter-form i {
    font-size: 1.3rem;
  }
}


/*============================================================
 Age Gate
============================================================*/
.age-gate {
	display: none; /* <- Standardmäßig ausgeblendet */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://www.mountrigi.ch/template/images/agegate.jpg") no-repeat center center;
  background-size: cover;
  z-index: 999999;
  display: flex;
  justify-content: center;
  align-items: center;
}


.age-gate-content {
  background-color: turquoise;
  padding: 2rem;
  text-align: center;
  max-width: 400px;
  border-radius: 0px;
  font-family: 'UniversLTStd-LightCn', sans-serif;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

.age-gate-content h2 {
  font-family: 'MostraOneBold', sans-serif;
  font-weight: normal;
  font-size: clamp(2rem, 3vw, 4rem);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
	color: white !important;
	line-height:1;
}

.age-gate-content p {
  font-family: 'MostraOneBold';
	font-size: clamp(1.25rem, 1.5vw, 2rem);
  margin-bottom: 1.5rem;
  font-weight: normal;
	text-align:center;
}

.age-gate-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.age-gate-buttons button {
  font-family: 'MostraOneBold', sans-serif;
  font-weight: normal;
  background: transparent;
  border: 2px solid white;
  color: white;
  padding: 0.5rem 1.5rem;
  font-size: clamp(1.25rem, 1.5vw, 2rem);
  cursor: pointer;
  transition: all 0.2s ease;
  text-transform: uppercase;
}

.age-gate-buttons button:hover {
  background-color: white;
  color: #00aea9;
}

.age-gate-footer {
  font-family: 'UniversLTStd-LightCn', sans-serif !important;
  font-size: clamp(0.875rem, 0.9vw, 1.2rem) !important;
  color: #10112E;
}

.age-gate-footer a {
  color: #10112E;
  text-decoration: underline;
}



/*============================================================
 Buy Float
============================================================*/
.buy-float {
	display:none !important;
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;

  display: flex;
  flex-direction: column;      /* Text über Icon */
  align-items: center;
  justify-content: center;
  gap: 10px;

  width: 80px;
  height: 180px;
  background: var(--color-dark);
  border-radius: 0;
  cursor: pointer;
  text-decoration: none;
  overflow: hidden;

  transition: all 0.3s ease;
  transform-origin: center right;
}

/* Texte */
.buy-text,
.buy-text-hover {
  font-family: 'MostraOneBold', sans-serif;
  font-size: 16px;
  line-height: 1.2;
  color: #ffffff;
  transition: all 0.3s ease;

  position: absolute;
  top: 28%;                /* etwas über Mitte */
  left: 50%;
  transform: translate(-50%, 0);
  text-align: center;
  white-space: nowrap;
}

/* Hover-Text zunächst versteckt */
.buy-text-hover {
  opacity: 0;
  transform: translate(-50%, 15px);
}

/* Icon */
.buy-float i {
  color: #ffffff;
  font-size: 32px;
  margin-top: 80px;        /* Abstand zwischen Text & Icon */
  transition: all 0.3s ease;
}

/* Hover: Container fährt auf, Farben ändern */
.buy-float:hover {
  width: 120px;
  background: var(--color-turquoise);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.9);
  transform: translateY(-50%) scale(1.15); /* Zoom-Effekt */
}

/* Textwechsel */
.buy-float:hover .buy-text {
  opacity: 0;
  transform: translate(-50%, -15px);
}

.buy-float:hover .buy-text-hover {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* Farben im Hover */
.buy-float:hover i,
.buy-float:hover .buy-text-hover {
  color: var(--color-dark);
}