@font-face {
  font-family: "Termina";
  src: url("assets/fonts/TerminaTest-Regular.woff2") format("woff2");
  font-weight: 400;
}

@font-face {
  font-family: "Termina";
  src: url("assets/fonts/TerminaTest-Bold.woff2") format("woff2");
  font-weight: 700;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Termina", Arial, sans-serif;
  background: #eee;
  color: #050505;
}

img,
video,
iframe {
  display: block;
}

img,
video {
  object-fit: cover;
}

.project {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  padding: 4.2vh 3.4vw;
  margin-bottom: 18vh;
}

h1 {
  margin: 0;
  font-size: clamp(32px, 3vw, 56px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.025em;
}

h2 {
  margin: 0;
  font-size: clamp(20px, 1.3vw, 26px);
  line-height: 1;
  font-weight: 700;
}

p {
  margin: 0 0 0.25rem;
  font-size: clamp(16px, 1.28vw, 27px);
  line-height: 1.08;
  font-weight: 400;
}

.text-block {
  width: 66vw;              /* gleiche Breite wie Slider */
  margin: 6vh auto 0;       /* 👉 zentriert den ganzen Block */
  text-align: center;
}

.text-block p + h2 {
  margin-top: 1.5vh;
}

/* COLORS */
.surselva { background: #e7e7e7; }
.funsaver { background: #242455; color: white; }
.mini { background: #a43232; color: white; }
.lemonews { background: #fff45c; }
.weissenstein {
  background: #328eff; color: rgb(0, 0, 0);}
.berlin { background: #003f09; color: white; }
.ankara { background: #ffad32; }

.site-header {
  position: relative; /* statt fixed */
  width: 100%;
  height: 90px;

  background: #1e1e1e;
  color: #eaeaea;

  display: flex;
  align-items: center;
}

.header-inner {
  width: 100%;
  padding: 0 3vw;

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

.logo {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  color: inherit;
}



.info {
  font-size: 28px;
  font-weight: 400;
  opacity: 0.8;
  color: inherit;
  text-decoration: none;
}

/* SURSELVA */
.surselva h1 {
  margin-left: 0.1vw;
}

.surselva-grid {
  display: grid;
  grid-template-columns: 66vw 27vw;
  gap: 5.2vw;
  margin-top: 6vh;
  align-items: start;
}

.surselva-grid img:first-child {
  width: 66vw;
  height: 30.5vw;
}

.surselva-grid img:last-child {
  width: 27vw;
  height: 30.5vw;
}

.surselva-text {
  margin-top: 5.3vh;
  width: 76vw;
}

.slider {
  position: relative;
  width: 66vw;
  height: 30.5vw;
  margin: 6vh auto 0;
  overflow: hidden;
  background: transparent;
}

.slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease;
}

.slides img,
.slides video {
  width: 100%;
  height: 100%;
  flex: 0 0 100%;
  object-fit: contain;
  background: transparent;
}

.slider-btn {
  position: absolute;
  top: 50%;
  z-index: 10;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  color: #050505;
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

.prev {
  left: 30px;
}

.next {
  right: 30px;
}

.slider-btn:hover {
  opacity: 0.5;
}

.more-link {
  position: absolute;
  bottom: 2.5vh;
  right: 3vw;

  font-size: clamp(14px, 1vw, 18px);
  font-weight: 500;

  text-decoration: none;
  color: inherit;

  opacity: 0.7;
  transition: 0.2s ease;
}

.more-link:hover {
  opacity: 1;
}

/* FUN SAVER */
.funsaver-grid {
  width: 66vw;            /* wieder wie surselva */
  margin: 6vh auto 0;     /* weniger Abstand oben */

  display: grid;
  grid-template-columns: 1fr 180px;
  gap: 5vw;
  align-items: center;
}

/* grosses Bild */
.funsaver-screen {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top center;

  box-shadow: 0 25px 60px rgba(0,0,0,0.35);
  border-radius: 6px;
}

/* Person */
.funsaver-person {
  width: 180px;
  height: 340px;

  object-fit: contain;

  box-shadow: 0 25px 60px rgba(0,0,0,0.35);
  border-radius: 4px;
}

/* Text */
.funsaver-text {
  width: 66vw;
  margin: 4.5vh auto 0;   /* vorher zu gross → jetzt enger */
  text-align: center;
}

/* MINI */
.mini-video {
  width: 52vw;
  height: 29.25vw;
  margin: 5vh auto 0;
}

.mini-text {
  width: 66vw;
  margin: 4vh auto 0;
}

/* YOUTUBE */
.youtube {
  background: rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.youtube iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* LEMONEWS */
.lemon-grid {
  width: 76vw;
  margin: 5vh auto 0;

  display: grid;
  grid-template-columns: 28vw 1fr;
  grid-template-rows: auto auto;

  column-gap: 6vw;
row-gap: 1vh;
  align-items: start;
}

/* Video links */
.lemon-video {
  width: 24vw;
  height: 42.6vw;
  grid-row: 1 / 3;
  justify-self: center;
}

/* Text oben rechts */
.lemon-text {
  width: 100%;
}

/* Bild unten rechts */
.lemon-img {
  width: 36vw;   /* vorher 32vw → jetzt grösser */
  height: 20vw;

  object-fit: cover;

  grid-column: 2;
  justify-self: center;

  margin-top: -2vh;  /* weniger Abstand nach oben */
}


.weissenstein-video {
  object-fit: cover;
  background: black;
}

.weissenstein-account-link {
  grid-column: 2;
  justify-self: center;
  display: block;
  text-decoration: none;
}

.weissenstein-account-link .lemon-img {
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.weissenstein-account-link:hover .lemon-img {
  transform: scale(1.015);
  opacity: 0.9;
}

/* BERLIN + ANKARA */
.wide-media {
  width: 56vw;
  height: 31.5vw;
  margin: 7.8vh auto 0;
}

.wide-text {
  width: 72vw;
  margin: 8vh auto 0;
}

.berlin .wide-media {
  margin-top: 8vh;
}

.berlin-text {
  margin-top: 8vh;
}

/* TEXT SEITEN (Impressum + Datenschutz) */
.text-block {
  line-height: 1.4; /* mehr Luft zwischen Zeilen */
}

/* Abstand Titel → Text */
.text-block h1 {
  margin-bottom: 4vh;
}

/* Abstand zwischen Absätzen */
.text-block p {
  margin-bottom: 1.2vh;
}

.legal-section {
  min-height: calc(100vh - 90px);
  padding: 8vh 3.4vw;
  background: #e7e7e7;

  display: flex;
  justify-content: center;
  align-items: center;

  overflow: hidden;
}

.legal-section .text-block {
  width: 66vw;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.legal-section h1 {
  margin-bottom: 4vh;
}

.legal-section p {
  line-height: 1.35;
}

/* INFOS SEITE – isoliert */
.info-section {
  display: flex;
  flex-direction: column;
  gap: 10vh;
}

.info-section {
  align-items: center;
}

/* Block */
.info-section .info-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6vw;
}

/* Text */
.info-section .info-text {
  max-width: 520px;
}

/* Titel */
.info-section .info-text h1 {
  margin-bottom: 3vh;
}

/* Paragraphen */
.info-section .info-text p {
  line-height: 1.4;
  margin-bottom: 1.2vh;
}

/* Reverse */
.info-section .info-block.reverse {
  flex-direction: row-reverse;
}

.info-section .info-block img,
.info-section .info-video {
  width: 28vw;
  height: auto;
  object-fit: cover;
  border-radius: 6px;
}

.project:last-of-type {
  margin-bottom: 0;
}

/* RESPONSIVE */
/* RESPONSIVE / MOBILE */
@media (max-width: 900px) {
  .site-header {
    height: 72px;
  }

  .header-inner {
    padding: 0 20px;
  }

  .logo {
    font-size: 22px;
  }

  .info {
    font-size: 20px;
  }

.project {
  min-height: auto;
  padding: 28px 20px 36px;
}

  h1 {
    font-size: 28px;
    line-height: 1.05;
    margin-bottom: 28px;
  }

  h2 {
    font-size: 17px;
  }

  p {
    font-size: 14px;
    line-height: 1.25;
  }

  .text-block,
  .surselva-text,
  .funsaver-text,
  .mini-text,
  .wide-text,
  .lemon-text {
    width: 100%;
    max-width: 100%;
    margin: 28px auto 0;
    text-align: center;
  }

  /* SURSELVA SLIDER */
  .slider {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    margin: 28px auto 0;
  }

  .slider-btn {
    font-size: 34px;
  }

  .prev {
    left: 12px;
  }

  .next {
    right: 12px;
  }

  /* FUN SAVER */
  .funsaver-grid {
    width: 100%;
    margin: 28px auto 0;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .funsaver-screen {
    width: 100%;
    aspect-ratio: 16 / 9;
  }

  .funsaver-person {
    width: 58vw;
    height: auto;
    max-height: 420px;
    margin: 0 auto;
  }

  /* VIDEOS */
  .mini-video {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    margin: 28px auto 0;
  }

  /* LEMONEWS */
  .lemon-grid {
    width: 100%;
    margin: 28px auto 0;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .lemon-video {
    width: 72vw;
    height: auto;
    aspect-ratio: 9 / 16;
    grid-row: auto;
    justify-self: center;
  }

  .lemon-img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    grid-column: auto;
    margin-top: 0;
  }

  /* MORE INFOS */
  .more-link {
    position: static;
    display: block;
    margin-top: 28px;
    text-align: center;
    font-size: 14px;
  }

  /* FOOTER */
  .site-footer {
    padding: 28px 20px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .footer-left {
    font-size: 24px;
  }

.footer-inner {
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-left {
  text-align: center;
  width: 100%;
}

.footer-links {
  width: 100%;
  display: block;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 6px;
}

.footer-row a {
  font-size: 13px;
}

  /* LEGAL + INFOS */
  .legal-section {
    min-height: calc(100vh - 72px);
    padding: 48px 20px;
    overflow: visible;
  }

  .legal-section .text-block {
    width: 100%;
  }

  .info-section {
    gap: 56px;
  }

  .info-section .info-block,
  .info-section .info-block.reverse {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .info-section .info-block img,
  .info-section .info-video {
    width: 82vw;
    max-width: 420px;
  }

  .info-section .info-text {
    max-width: 100%;
  }
}

.site-footer {
  width: 100%;
  padding: 3vh 3vw;
  background: #1e1e1e;
  color: #eaeaea;
}

.footer-inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left {
  font-size: 28px;
  font-weight: 700;
}

.footer-links {
  display: flex;
  gap: 2vw;
  align-items: center;
}

.footer-row {
  display: flex;
  gap: 2vw;
}

.footer-row a,
.site-footer a {
  color: inherit;
  text-decoration: none;
  font-family: "Termina", Arial, sans-serif;
}



/* =========================
   FINAL MOBILE (REPLACE ALL)
   ========================= */
@media (max-width: 900px) {

  /* HEADER */
  .site-header {
    height: 72px;
  }

  .header-inner {
    padding: 0 20px;
  }

  .logo {
    font-size: 21px;
  }

  .info {
    font-size: 18px;
  }

  /* SECTIONS */
  .project {
    position: relative;
    height: auto;
    min-height: 100vh;
    margin-bottom: 0;
    padding: 24px 20px 36px;
    overflow: visible;
  }

  /* TYPO */
  h1 {
    font-size: 26px;
    line-height: 1.05;
    margin-bottom: 22px;
  }

  h2 {
    font-size: 16px;
  }

  p {
    font-size: 14px;
    line-height: 1.3;
  }

  /* TEXT BLOCKS */
  .text-block,
  .surselva-text,
  .funsaver-text,
  .mini-text,
  .wide-text,
  .lemon-text {
    width: 100%;
    max-width: 100%;
    margin: 22px auto 0;
    text-align: center;
  }

  /* MEDIA SPACING */
  .slider,
  .funsaver-grid,
  .mini-video,
  .lemon-grid {
    margin-top: 22px;
  }

  /* SLIDER */
  .slider {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .slider-btn {
    font-size: 32px;
  }

  .prev { left: 10px; }
  .next { right: 10px; }

  /* FUN SAVER */
  .funsaver-grid {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .funsaver-screen {
    width: 100%;
    aspect-ratio: 16 / 9;
  }

  .funsaver-person {
    width: 56vw;
    height: auto;
    max-height: 360px;
    margin: 0 auto;
  }

  /* VIDEOS */
  .mini-video {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  /* LEMONEWS */
  .lemon-grid {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .lemon-video {
    width: 70vw;
    aspect-ratio: 9 / 16;
    margin: 0 auto;
  }

  .lemon-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    margin-top: 0;
  }

  /* MORE LINK */
  .more-link {
    position: static;
    display: block;
    margin-top: 22px;
    text-align: center;
    font-size: 13px;
  }

  /* FOOTER */
  .site-footer {
    padding: 22px 20px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .footer-left {
    font-size: 20px;
    text-align: center;
  }


  .footer-row {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 6px;
  }

  .footer-row a {
    font-size: 13px;
    text-decoration: none;
    color: inherit;
    font-family: "Termina", Arial, sans-serif;
  }

  /* INFOS PAGE */
  .info-section {
    padding: 36px 20px;
    gap: 48px;
  }

  .info-section .info-block,
  .info-section .info-block.reverse {
    flex-direction: column;
    gap: 22px;
    text-align: center;
  }

  .info-section .info-block img,
  .info-section .info-video {
    width: 84vw;
    max-width: 340px;
  }

  .info-section .info-text {
    max-width: 100%;
  }

  .info-section .info-text h1 {
    font-size: 26px;
    margin-bottom: 18px;
  }

  .info-section .info-text p {
    font-size: 14px;
    line-height: 1.3;
  }

  /* LEGAL */
  .legal-section {
    min-height: calc(100vh - 72px);
    padding: 40px 20px;
  }

  .legal-section .text-block {
    width: 100%;
  }

  .legal-section h1 {
    font-size: 26px;
  }

  .legal-section p {
    font-size: 14px;
    line-height: 1.3;
  }

    .surselva,
  .mini,
  .berlin,
  .ankara {
    min-height: auto;
    padding-bottom: 28px;
  }

  .footer-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .footer-row a:first-child {
    justify-self: start;
  }

  .footer-row a:last-child {
    justify-self: end;
  }
}


.site-footer a {
  color: inherit;
  text-decoration: none;
  font-family: "Termina", Arial, sans-serif;
}

/* FOOTER MOBILE FINAL FIX */
@media (max-width: 900px) {
  .footer-links {
    width: 100%;
    display: block;
  }

  .footer-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    margin-top: 8px;
  }

  .footer-row a:first-child {
    justify-self: start;
  }

  .footer-row a:last-child {
    justify-self: end;
  }
}

/* SUBPAGES FINAL */
.info-section {
  background: #e7e7e7;
}

.info-section .info-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6vw;
}

.info-section .info-block.reverse {
  flex-direction: row-reverse;
}

.info-section .info-block img,
.info-section .info-video {
  width: 28vw;
  height: auto;
  object-fit: cover;
  border-radius: 6px;
}

.info-section .info-text {
  max-width: 520px;
}

.info-section .info-text p {
  line-height: 1.4;
}

/* SUBPAGES MOBILE FINAL */
@media (max-width: 900px) {
  .legal-section {
    min-height: auto;
    padding: 40px 20px;
  }

  .info-section {
    gap: 48px;
  }

  .info-section .info-block,
  .info-section .info-block.reverse {
    flex-direction: column;
    gap: 22px;
    text-align: center;
  }

  .info-section .info-block img,
  .info-section .info-video {
    width: 84vw;
    max-width: 340px;
  }

  .info-section .info-text {
    max-width: 100%;
  }

  .info-section .info-text h1 {
    font-size: 26px;
    margin-bottom: 18px;
  }

  .info-section .info-text p {
    font-size: 14px;
    line-height: 1.35;
  }
}

@media (max-width: 900px) {

  .legal-section .text-block {
    width: 100%;
    max-width: 100%;
  }

  .legal-section h1 {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .legal-section p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 12px;
  }

}

/* FINAL LEGAL MOBILE FIX */
@media (max-width: 900px) {
  body .legal-section .text-block h1,
  body .legal-section h1 {
    font-size: 30px !important;
    line-height: 1.05 !important;
    margin-bottom: 24px !important;
  }

  body .legal-section .text-block p,
  body .legal-section p {
    font-size: 17px !important;
    line-height: 1.55 !important;
    margin-bottom: 16px !important;
  }

  body .legal-section .text-block {
    width: 100% !important;
    max-width: 100% !important;
  }
}

body.legal-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body.legal-page .legal-section {
  flex: 1;
}

@media (max-width: 900px) {
  .weissenstein-account-link {
    grid-column: auto;
    width: 100%;
  }
}