 html {
  scroll-behavior: smooth;
}
 :root {
      --blue: #5199D3;
      --orange: #F28C38;
      --green: #82C45D;
      --dark: #1f2d4d;
      --light: #fdf4e6;
      --font-heading: 'Montserrat regular' , sans-serif;
      --font-base: 'Montserrat', sans-serif;
    --page-padding-desktop: 4rem;
    --page-padding-mobile: 1.2rem;
}


body {
margin: 0;
background: var(--dark);
color: var(--light);
font-family: var(--font-base);
overflow-x: hidden;
margin-bottom: 4rem;
}

h1,h2,h3,h4,h5 {
  font-family: var(--font-heading);
  font-weight: 400; /* regular */
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2rem;
  font-weight: bolder;
   
}

h3 {
  font-size: 1.6rem;
   font-style: italic;
}

h4 {
  font-size: 1.3rem;
}

h5 {
  font-size: 1.1rem;

}

p {
  font-size: 1rem;
  line-height: 1.6;
}

blockquote {
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.6;
  border-left: 4px solid var(--green);
  padding-left: 1rem;
  margin: 0 auto 2rem auto;
  max-width: 1000px;
  margin-top: 2rem;
}




.header {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* sehr wichtig für volle Ausfüllung */
  z-index: 0; /* Hintergrund */

}

.hero-logo-container {
 position: relative;
  top: 50%;
  left: 52%;
  transform: translate(-50%, -50%);
  z-index: 1;
  display: flex;
  flex-direction: column; 
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  text-align: center;
}
.hover-word {
  position: absolute;
  top: -5vw; /* Abstand nach oben responsive */
  

  font-size: clamp(3.0rem, 3vw, 6.8rem);
  font-family: 'Myanmar MN', sans-serif;
  color: #6d6c67;
  z-index: 3;
   pointer-events: none;
   padding-right:50px;
}



.desktop-logo {
  width: 90vw;      /* passt sich Viewport an */
  max-width: 1300px; /* oder was für dich stimmig ist */
  height: auto;
  overflow: visible;
  display: block;
}


.subline {
  position: absolute;
  top: 70%;
  width: 100%;
  max-width: 600px;
  text-align: center;
  font-family: 'Myanmar MN', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 3.2rem);
  color: #6d6c67;
  z-index: 2;
}

.subline h1 {
  font-family: "Myanmar MN", sans-serif;
  font-size: 40px; /* oder was du brauchst */
  color: #6d6c67;  /* z. B. deine Subline-Farbe */
  text-align: center;
  margin: 0;
}

#logo-stories,
#logo-thinking,
#logo-hub {
  display: none;
}
#logo-trails {
  display: inline;
}
#orbit-circle-blue,
#orbit-circle-orange,
#orbit-circle-green {
  animation: float 4s ease-in-out infinite;
  transform-origin: center;
  cursor: pointer;
}
#orbit-circle-orange { animation-delay: 0.4s; }
#orbit-circle-green { animation-delay: 0.8s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}


.amd-logo-container {
  position: absolute; /* z. B. für gezielte Position */
  top: 70%;
  left: 72%;
  transform: translate(-30%, -30%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;

}

.partner-logos {
  margin-top: 140px;
  width: 180%;
  pointer-events: none;
  height: auto;
  margin-bottom: 0.5rem;
}


/* 1) AMD Names */

.amd-names span {
  font-family: 'Montserrat alternates', sans-serif;
  font-weight: 200;
  font-size: 30px;
  color: var(--dark);
}



/* Buchstaben-Span braucht kein display:block mehr */
/* 2) AMD Vertical Menu */

.amd-menu span {
  font-family: 'Montserrat regular', sans-serif;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  align-items: center;      
  text-decoration: none; 
  line-height: 1;
  color: var(--dark)
  /* margin-bottom optional, z.B.: margin-bottom: 0.2rem; */
}


.amd-names span,
.amd-menu span {
  font-size: clamp(0.2rem, 1.8vw, 1.2rem);
}

.amd-menu.visible {
  opacity: 1;
   color: var(--dark);
}

.amd-menu .menu-a:hover span {
  color: var(--green);
}
.amd-menu .menu-m:hover span {
  color: var(--green);
}
.amd-menu .menu-d:hover span {
  color: var(--green);
}


/* Namen exakt unter BY, A, M (innerhalb .amd-container) */


.name-a {
  position: absolute;
  top: 74%;
  left: 13%;              /* unter “A” */
  transform: translate(-50%, -50%);
}

.name-m {
  position: absolute;
  top: 74%;
  left: 70%;              /* unter “M” */
  transform: translate(-50%, -50%);
}

.name-d {
  position: absolute;
  top: 74%;               /* vertikal: 60% vom SVG-Top */
  left: 130%;              /* horizontal unter “BY” */
  transform: translate(-50%, -50%);
}
/* Vertikale Menü-Blöcke ebenfalls exakt platzieren */
.menu-a {
  position: absolute;
  top: 84%;               /* 75% vom SVG-Top, also tiefer als Namen */
  left: -7%;              /* direkt unter “A” */
  transform: translateX(-50%);


}

.menu-m {
  position: absolute;
  top: 84%;
  left: 44%;              /* unter “M” */
  transform: translateX(-50%);

}

.menu-d {
  position: absolute;
  top: 84%;
  left: 96%;              /* unter “D” */
  transform: translateX(-50%);
}

/* >>> AMD Names & Menu zunächst ausblenden */
.name-a,
.name-m,
.name-d,
.menu-a,
.menu-m,
.menu-d {
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* >>> Sobald "visible" drauf ist, werden sie sichtbar */
.name-a.visible,
.name-m.visible,
.name-d.visible,
.menu-a.visible,
.menu-m.visible,
.menu-d.visible {
  opacity: 1;
  text-decoration: none;
}

.slogan {
  position: absolute;
  width: 100%;
  text-align: center;
  font-family: 'Montserrat Alternates', sans-serif;
  font-weight:900;
  font-size: 20px;
  color: #1f2d4d;
  bottom:5%;
}


.mobile-logo {
  display:none;
}
.mobile-logo-trails{
  display:none;
}


/* ==========================
SECTION – Basis
========================== */
/* global für alle Sections */
.section-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  background: var(--dark);
  color: var(--light);
  /* GILT FÜR DESKTOP */
  padding-left: var(--page-padding-desktop);
  padding-right: var(--page-padding-desktop);
}

/* Innerhalb wollen wir die Elemente nebeneinander anordnen */
.section-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-left: 2rem;
  margin-right: 2rem;

}


  /* ========================
   SECTION MENU – DESKTOP
===========================*/
#section-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 100px;
  background: var(--dark);
  border-left: 1px solid var(--green);
  display: none; /* Start: ausgeblendet */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  z-index: 50;
}

#section-menu.visible {
  display: flex !important;
}

#section-menu .menu-link {
  text-decoration: none;
  color: var(--light);
  font-weight: bold;
  font-size: 1.5rem;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-family: var(--font-heading);
  cursor: pointer;
}

#section-menu .menu-link.active {
  color: var(--green);
}



/* ==========================
About
========================== */
/* 2.1 Intro */
.about-intro .about-text {
  flex: 1 1 300px;
}

.about-portrait {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 20%;
  display: block;
  margin: 0 auto;
}



/* 2.2 Diary */
.about-diary {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.about-diary .diary-text {
  flex: 1;
  text-align: right;    /* Text im Block rechtsbündig */
  font-style: italic;
}
.about-diary .diary-swiper {
  flex: 0 0 400px; /* feste Breite */
}

.diary-swiper {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
  overflow: hidden;
}

/* Slide-Bilder */
.diary-swiper .swiper-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* Pagination zentriert unten im Bild */

.diary-swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--green);
  opacity: 0.4;
  transition: opacity 0.3s ease;
}

.diary-swiper .swiper-pagination-bullet-active {
  opacity: 1;
}

/* Navigation-Pfeile – dezenter, zentriert vertikal */
.diary-swiper .swiper-button-prev,
.diary-swiper .swiper-button-next {
  color: var(--green);
  width: 20px;
  height: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  z-index: 30;
}

.diary-swiper .swiper-button-next {
  right: 5px;
}

.diary-swiper .swiper-button-prev {
  left: 5px;
}

.diary-swiper .swiper-button-prev:hover,
.diary-swiper .swiper-button-next:hover {
  background: var(--green);
  color: var(--dark);
}


/* 2.3 Flip-Cards */



.roles-intro {
  font-size: 1.3rem;
  justify-content: center;
  text-align: center;
}


.roles-grid {
  justify-content: space-between;
  margin-top: 2rem;;
  gap: 2rem;
}
.role-card {
  perspective: 1000px;
  cursor:pointer
}
.card-inner {
  width: 380px;
  height: 350px;
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
}
.role-card.flipped .card-inner {
  transform: rotateY(180deg);
}

.card-front, .card-back {
  backface-visibility: hidden;
  border-radius: 8px;
  overflow: hidden;
  background: var(--light);
  color: var(--dark);
  flex-direction: column;
  display:flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: flex;
  padding-bottom:2rem;
}
.card-back {
  transform: rotateY(180deg);
}
.card-front img {
  width: 100%;
  height: auto;
  margin-bottom: .5rem;
}
.role-card.flipped .card-inner {
  transform: rotateY(180deg);
}
@media (min-width: 769px) {
  .role-card:hover {
   transform: scale(1.5);
   transition: transform 0.3s ease;
   z-index: 10;
  }
}



/* das durchgestrichene Error */
.error {
  color: red;
  text-decoration: line-through;
}

/* das Bild daneben */
.about-instagram {
  display: flex;
  align-items: center;       /* Text und Bild mittig ausrichten */
  justify-content: center;
  font-style: italic;
  font-size: 1.5rem;
  text-align: center;
  /* border-left hier entfernen */
  padding-left: 0;
}
.motto-img {
  width: 400px;
  height: 250px;
  border-radius: 70%;
  object-fit: cover;
  /* entfernt padding-left aus Desktop-Flow */
}



.instagram-btn {
  margin:2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: 'Montserrat', sans-serif;
  text-decoration: none;
  color: var(--light);
  background-color:  #F28C38;
  padding: 0.8em 1.2em;
  border-radius: 2em;
  border: #fdf4e6 1px solid;
  font-size: 1.2rem;
  transition: background-color 0.3s ease;
}
.btn-text-mobil {
  display:none;
}
.btn-text {
  display:inline;
}

.instagram-btn:hover {
  background-color:transparent;
}

.insta-icon {
  width: 3em;
  height: 3em;
  fill: var(--light);
}




/* ==========================
Mission
========================== */
/* --- Mission Intro --- */
.mission-intro .mission-text {
  flex: 1 1 300px;
}


 .mission-icon {
  flex: 0 0 500px;
  width: 500px;
  height: 500px;
 
 
}

.inline-icon{
  width: 60px;
  height: 60px;
  vertical-align: middle;
  margin: 0 .25em;
}

/* --- Mission Accordion --- */

.mission-accordion p {


  text-align: center;
  margin-top:-10rem;
}

.mission-accordion {
  max-width: 700px;
  margin: 2rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mission-accordion .mission-sub {
  text-align: center;
  font-style: italic;
 
}

/* Grund-Styles für alle Panels */
.mission-accordion details {
  border-radius: 8px;
  overflow: hidden;
  background: var(--light);

}

/* Summary-Kopf (geschlossen) */
.mission-accordion summary {
  font-size:20px;
  font-weight: bolder;
  position: relative;
  padding: 1rem 2rem;
  cursor: pointer;
  background: var(--orange);
  color: var(--dark);
  list-style: none;   /* native Pfeile entfernen */
}

/* Native Pfeil verstecken */
.mission-accordion summary::-webkit-details-marker {
  display: none;
}

/* Eigenes Pfeil-Icon via Pseudoelement */
.mission-accordion summary::before {
  content: "▸";
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  transition: transform .2s ease;
}

/* Geöffneter Zustand: Pfeil drehen & Farbe ändern */
.mission-accordion details[open] summary {
  background: var(--orange);
  color: var(--light);
}
.mission-accordion details[open] summary::before {
  transform: translateY(-50%) rotate(90deg);
}

/* Inhalt (geöffnet) */
.mission-accordion details li {
  margin: 0;
  font-size:18px;
  padding: .5rem 1.5rem;
  list-style: disc inside;
  background: var(--light);
  color: var(--dark);
}




/* ==========================
Dimensions
========================== */
.dimensions-intro .dimensions-text {
  flex: 1 1 300px;
}

/* --- 1) Intro --- */
.dimensions-intro .dimensions-text {
  flex: 1 1 300px;
  text-align: left;
}


.dimensions-lead {
  font-size: 1.3rem;
  justify-content: center;
  text-align: center;
}

/* --- 2) Grid mit runden Cards --- */
.dimensions-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.dimensions-card {
  background: var(--light);
  color: var(--dark);
  border-radius: 50%;
  width: 250px;
  height: 250px;
  padding: 1.2rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.dimensions-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}
.card-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
.card-title {
  margin: 0.5rem 0;
  font-size:18px;
  font-weight: bold;
}
.card-desc {
  margin: 0;
  font-size: 1rem;
  line-height: 1.4;
  text-align: center;
}

/* --- 3) Call-to-Action --- */
.dimensions-cta {
  text-align: center;
  margin-top: 3rem;
}
.dimensions-note {
  font-style: italic;
  margin: 0 0 1rem;
  margin-bottom: 2rem;
}
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}
.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 24px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}
.btn-primary {
  background: var(--green);
  border: 1px solid var(--light);
   color: var(--light);
}
.btn-primary:hover {
 background: transparent;
  color: var(--light);
}
.btn-secondary {
  background: var(--orange);
  border: 1px solid var(--light);
  color: var(--light);
}
.btn-secondary:hover {
  background: transparent;
  color: var(--light);
}






/* ======================
   Footer
====================== */

.footer {
  font-family: 'Montserrat Alternates', sans-serif;
  font-size: 16px;
  text-align: center;
  color: #fdf4e6;
  margin-top: auto;
  padding: 1.5rem;
  background-color: #1f2d4d;
   border-top: 1px solid; color: #82C45D;
}


.footer a {
  color: #fdf4e6;
  text-decoration: none;
  margin: 0 8px;
 
}
.footer a:hover {
  text-decoration: underline;
  color: var(--green)
}

/* Sticky Footer */
footer.sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}


#scrollTopBtn {
  position: fixed;
  bottom: 0.7rem;
  right: 1.6rem;
  z-index: 99;
  font-size: 1.2rem;
  background-color: var(--green);
  color: var(--dark);
  border: none;
  border-radius: 50%;
  padding: 0.7rem 1rem;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  display: none;
  transition: background-color 0.3s ease;
  font-family: var(--font-heading);
}

#scrollTopBtn:hover {
  background-color: var(--light);
  color: var(--dark);
}
