@charset "UTF-8";

@import url("fonts.css");

/* Global Styles from old_design_css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


html {
    scroll-behavior: smooth;  /* Smooth Scroll */
}

html, body {
  overflow-x: hidden;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.01rem;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-size: 18px;
  color: #414141; /* Keep our existing body color */
}

p {
  margin-bottom: 1rem;
}

h1, h2, h3, h4, h6 {
  font-family: "CoFo Kak", sans-serif;
  font-weight: 900;
  font-size: 5em;
  text-transform: uppercase;
  text-align: left;
  color: #000;
  margin-left: 1em;
}

h5{
  font-size: 1em;
  font-family:"Roboto";
}
.full-width{
  width:100vw;
}
@media screen and (max-width: 1200px) {
  h1, h2, h3, h4, h5, h6 {
    font-size: 110px;
    line-height: 100px;
  }
}
@media screen and (max-width: 980px) {
  h1, h2, h3, h4, h5, h6 {
    font-size: 90px;
    line-height: 80px;
  }
}
@media screen and (max-width: 786px) {
  h1, h2, h3, h4, h5, h6 {
    font-size: 70px;
    line-height: 65px;
  }
}
@media screen and (max-width: 586px) {
  h1, h2, h3, h4, h5, h6 {
    font-size: 50px;
    line-height: 50px;
  }
}
.big{
  font-weight: 900;
  font-size: 8em;
  text-transform: uppercase;
  line-height: 0.9;
}

.small{
  font-weight: 800;
  font-size: 4.25em;
  text-transform: uppercase;
  letter-spacing: 2px;
}


.button-link {
  display: block;
  background: #d3d71d;
  padding: 10px 15px;
  color: #414141;
  text-decoration: none;
  font-weight: 500;
  font-size: 2.2em;
  font-family: "CoFo Kak", sans-serif;
}
.button-link:hover {
  background: #3a3a3a;
  color: #d3d71d;
}

.btn, .button, .Button {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #414141;
  color: #fff;
  text-decoration: none;
  font-family: "CoFo Kak", sans-serif;
  font-weight: 500;
  font-size: 2.2em;
}
.btn:hover, .button:hover, .Button:hover {
  background: #6AB024;
  color: #fff;
}
/* ========================================================================= */
/* ---------------- CONSENT - BANNER - STYLES ------------------------------ */
/* ========================================================================= */

#consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
}

#consent-banner.hidden {
    display: none;
}

.consent-content {
    max-width: 1200px;
    margin: 0 auto;
}

.consent-buttons {
    margin-top: 15px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.consent-buttons button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
    font-family: "CoFo Kak", sans-serif;
    font-size: 2.2em;
}
.btn-accept {
    background: #28a745;
    color: white;
}
.btn-accept:hover {
    background: #218838;
}
.btn-decline {
    background: #414141;
    color: white;
}
.btn-decline:hover {
    background: #414141;
}

/* ========================================================================= */
/* ------------------ NAV MENU OFFCANVAS STYLES ---------------------------- */
/* ========================================================================= */

/* Body styles when menu is open */
body.offcanvas-open {
    overflow: hidden;
}

/* Overlay for dimming the page */
.page-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1040; /* Below the menu, above the content */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

body.offcanvas-open .page-overlay {
    opacity: 1;
    visibility: visible;
}

/* The Off-canvas Menu itself */
#offcanvas-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px; /* Or any desired width */
    height: 100%;
    background-color: transparent; /* Make menu background transparent */
    z-index: 1045; /* Above the overlay */
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    
    /* Remove default collapse behavior and make it a flex container for centering */
    display: flex;
    justify-content: center;
    align-items: center;
}

#offcanvas-menu.is-open {
    transform: translateX(0);
}

/* Adjust the inner list */
#offcanvas-menu .navbar-nav {
    width: 100%;
    text-align: center;
}

#offcanvas-menu .nav-item {
    margin: 1rem 0;
}

#offcanvas-menu .nav-link {
    font-family: "CoFo Kak", sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 1.5rem; /* Larger font for the menu */
    color: #fff; /* White text for visibility on dark overlay */
    transition: color 0.2s ease-in-out;
}

#offcanvas-menu .nav-link:hover {
    color: #d3d71d; /* Neon-yellow hover effect */
}

/* Style for the parent item */
.has-submenu > .nav-link {
    position: relative;
    padding-right: 25px; /* Make space for the arrow */
}

/* Arrow indicator for the dropdown */
.has-submenu > .nav-link::after {
    content: '▼';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) scale(0.6);
    font-size: 1rem;
    transition: transform 0.3s ease;
}

/* Rotate arrow when open */
.has-submenu.is-open > .nav-link::after {
    transform: translateY(-50%) scale(0.6) rotate(180deg);
}

/* Submenu list */
.submenu {
    list-style: none;
    padding-left: 1rem; /* Indent submenu items */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
}

.has-submenu.is-open .submenu {
    max-height: 500px; /* A large enough value to show all items */
}

/* Submenu items */
#offcanvas-menu .submenu-item .nav-link {
    font-family: "Roboto", sans-serif; /* Switch to body font */
    font-size: 0.9rem;
    font-weight: 300; /* Make it light */
    text-transform: none;
    padding: 0.5rem 0;
    text-align: left;
    opacity: 0.8; /* Make it more subtle */
    transition: opacity 0.2s ease-in-out, color 0.2s ease-in-out;
}

#offcanvas-menu .submenu-item .nav-link:hover {
    opacity: 1;
    color: #d3d71d; /* Use consistent hover color */
}

.navbar-brand img {
    width: 187px;
    height: 42px;
}

#main-nav {
    background-color: transparent !important; /* Transparent by default */
    transition: background-color 0.3s ease-in-out, opacity 0.3s ease-in-out;
    box-shadow: none;
    opacity: 1 !important;
    visibility: hidden;
    transform: translateY(0) !important;
}

#main-nav.scrolled {
    background-color: white !important; /* White on scroll */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    opacity: 1;
    visibility: visible;
}

/* Stelle sicher, dass der Menu-Toggle die gleiche Höhe hat */
#menu-toggle-btn {
    height: 40px;
    width: 40px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ========================================================================= */
/* ========================================================================= */
/* ==========================HOME=========================================== */
/* ========================================================================= */

#home.active {
    display: block;
}

#home:not(.active) {
    display: none !important;
}

/* ========================================================================= */
/* =========================VIDEO-HERO-UNIVERSAL-STYLE====================== */
/* ========================================================================= */
#video-hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

#high-quality-video .video-title {
	font-size: 2rem;
	/* font-weight: 600; */
	color: #fff;
	text-transform: uppercase;
	font-family: 'Roboto';
	letter-spacing: 2px;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    transform: translateX(-50%) translateY(-50%);
    background-size: cover;
    transition: 1s opacity;
}

/* ========================================================================= */
/* ==================== Intro - Claim - Section ============================ */
/* ========================================================================= */

#intro-claim {
  background-color: #6AB024;
  padding: 11vh 0 11vh 0;
}

#intro-claim .intro-claim-subtitle {
  font-size: 1.9rem;
  line-height: 1.2;
  letter-spacing: 0.1rem;
  text-align: center;
  font-weight: 600;
  margin-top: -5vh;
  margin-bottom: 3.5rem;
}

#intro-claim .intro-claim-main-text {
    font-size: 6rem; /* Approx. 108px */
    line-height: 1;
    letter-spacing: 0.1rem;
    text-align: center;
}

#intro-claim .intro-claim-sub-text {
    font-size: 7rem;
    line-height: 1;
    letter-spacing: 0.1rem;
    color: #414141;
    text-align: center;
}

@media screen and (max-width: 1200px) {
    #intro-claim .intro-claim-subtitle {
        font-size: 2rem;
    }
    #intro-claim .intro-claim-main-text {
        font-size: 5rem;
    }
    #intro-claim .intro-claim-sub-text {
        font-size: 4rem;
    }
}

@media screen and (max-width: 980px) {
    #intro-claim .intro-claim-subtitle {
        font-size: 1.8rem;
    }
    #intro-claim .intro-claim-main-text {
        font-size: 4rem;
    }
    #intro-claim .intro-claim-sub-text {
        font-size: 3.5rem;
    }
}

@media screen and (max-width: 786px) {
    #intro-claim .intro-claim-subtitle {
        font-size: 1.5rem;
    }
    #intro-claim .intro-claim-main-text {
        font-size: 3rem;
    }
    #intro-claim .intro-claim-sub-text {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 586px) {
    #intro-claim .intro-claim-subtitle {
        font-size: 1.2rem;
    }
    #intro-claim .intro-claim-main-text {
        font-size: 2.5rem;
    }
    #intro-claim .intro-claim-sub-text {
        font-size: 2rem;
    }
}

/* ========================================================================= */
/* ======================= With - You - Section ============================ */
/* ========================================================================= */

#withYou-section {
    background-color: #ffffff;
    padding: 70px 0 130px 0;
    height: 38vh;
}

.withYou-video {
    /* height: 128px; /* Set a fixed height for the container */
    width: 100%; /* Allow width to be flexible */
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Hide overflowing parts of the video */
}

.withYou-video video {
    width: 55%;
    height: 100%;
    object-fit: contain; /* Scale the video to fit within the container */
}

/* ========================================================================= */
/* =============== high - quality - video - Section ======================== */
/* ========================================================================= */
.hqv_container{
  width:90vw;
  margin:auto;
}

.hqv-grid{
  flex: 0 0 auto;
  width: fit-content;
  text-align: center;
}

.hqv-video-cut{
  height: 200px;
  width: 409px;
}

.high-quality-video{
  height: 90vh !important;
}

#high-quality-video .section-title {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 1rem;
    text-align: center;
}

#high-quality-video .section-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #fff;
    line-height: 32px;
}

#high-quality-video .info-text {
    color: #ffffff;
    line-height: 32px;
}

#high-quality-video p {
    font-size: 1.3rem;
    color: #333;
}

#high-quality-video .video-item {
    margin-bottom: 2rem;
}

#high-quality-video .video-item img {
    border: 1px solid #ddd;
    margin-bottom: 1rem;
}

#high-quality-video .video-title {
	font-size: 2rem;
	/* font-weight: 600; */
	color: #fff;
	text-transform: uppercase;
	font-family: 'Roboto';
	letter-spacing: 2px;
}

.hqv_button{
  margin-top: 3vh;
  margin-bottom:1vh;
}

#high-quality-video .btn-primary {
    background-color: #d4ff00;
    border-color: #d3d71d;
    color: #414141;
    font-weight: 500;
    padding: 0.75rem 5rem;
    border-radius: 25px;
    font-family: "CoFo Kak", sans-serif;
    font-size: 1.3em;
}

#high-quality-video .btn-primary:hover {
    background-color: #C8006A;
    border-color: #C8006A;
}

/* ========================================================================= */
/* ================== Ihre - Vorteile - Section ============================ */
/* ========================================================================= */


#ihre-vorteile {
    background-color: #d4ff00;
    font-family: "CoFo Kak";
    color:#414141;
    padding-top: 5vh;
}

.vorteile-content {
    width: 90%;
    margin: auto;
    letter-spacing: normal;
}


#ihre-vorteile .section-title, #ihre-vorteile .section-subtitle {
    text-align: center;
    color: #414141;
    font-size: xx-large;
    font-family: 'CoFo Kak';
    text-transform: none;
    font-weight: 500;
}

#ihre-vorteile .section-title {
    font-size: 2.5rem;
    line-height: 1.2;
    font-family: 'CoFo Kak';
    font-weight: 600;
    text-transform: uppercase;
}


/* --- VORTEIL-KACHEL CONTAINER (.vorteil-item) --- */
.vorteil-item {
    /* Hintergrundfarbe der Vorlage */
    background-color: #d4ff00; 
    /* Innenabstand für den Inhalt */
    padding: 30px; 
    /* Abstand zur nächsten Kachel in der mobilen Ansicht oder falls nicht genügend Platz in der Reihe ist */
    margin-bottom: 2rem;
    /* Vereinheitlicht die Textfarbe */
    color: #414141;
    width: 41em;
}

/* --- PIKTOGRAMM (.vorteil-icon) --- */
.vorteil-icon {
    width: 76px;
    height: auto;
    display: inline-block;
    float: none;
    margin-bottom: 0;
}

/* --- ÜBERSCHRIFT (H4) --- */
#ihre-vorteile .vorteil-item h4 {
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    font-size: 1.5rem;
    font-weight: 700; /* Stärker hervorheben */
    line-height: 1.2;
    
    /* Wichtig: Margins resetten, da der d-flex Container und mb-3 den Abstand steuern */
    margin-top: 0 !important; 
    margin-bottom: 0 !important;
    margin-left: 0;
    
    text-align: left;
    color: inherit; /* Nimmt die Farbe vom .vorteil-item */
    position: static; /* Entfernt unnötiges 'position: relative' */
}

/* --- BESCHREIBUNGSTEXT (P) --- */
.vorteil-item p {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.5rem;
    line-height: 1;
    font-weight: 400;
    margin-bottom: 0;
    color: inherit;
}


/* ========================================================================= */
/* --- VISION VIDEO SECTION STYLES ---------------------------------------- */
/* ========================================================================= */
.vision_video {
    background-color: #414141;
    color: #fff;
    font-family: 'CoFo Kak';
}
.vision-lead {
    font-size: 2.5em;
    font-weight: 500;
}

#vision_video .section-title {
    font-size: 2.8rem;
    color: #fff;
    text-align: center;
}

.video-format-card h1 {
    color: #fff;
    font-size: 1.4em;
    font-family: 'Roboto';
    text-align: center;
    font-weight: 300;
}

/* ========================================================================= */
/* --- READY 4 CONTENT SECTION STYLES -------------------------------------- */
/* ========================================================================= */

.ready_for_content {
  font-family: "CoFo Kak", sans-serif;  
  background-color: #ff8ea7; /* wie im Original */
  text-align: center;
  padding: 4rem 1rem;
}

.ready_for_content .textblock {
  display: inline-block;
  text-align: center;
  line-height: 1;
  padding-bottom: 5vh;
  padding-top: 50px;
}

.ready_for_content .small {
  display: block;
  color: white;
}

.ready_for_content .big {
  display: block;
  color: white;
}
.rfc_button{
  padding-bottom:5vh;
}

.ready_for_content .btn-primary {
    background-color: #d4ff00;
    border-color: #d3d71d;
    color: #414141;
    font-weight: 500;
    padding: 0.75rem 5rem;
    border-radius: 25px;
    font-family: "CoFo Kak", sans-serif;
    font-size: 1.3em;
}

.contact-info{
  width: fit-content;
  text-align: left;
  margin:auto;
}

.contact-label {
    display: inline-block;     
    text-align: left; 
}

.ready_for_content .ready_p {
    font-size: 1.6em;
    color: #fff;
    font-family:Arial, Helvetica, sans-serif;
    font-weight: 300;
}

.ready_p a{
  text-decoration: none;
  color: #fff;
}


/* ========================================================================= */
/* ------------- CASES SECTION STYLES -------------------------------------- */
/* ========================================================================= */

.cases-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 5px;
    width: 100%;
}

.casesText h1 {
  font-size: 5em;
  color: #63B22F;
  font-family: "CoFo Kak";
  text-align: left;
  align-items: center;
  position: static;
  margin: 0;
  justify-content: center;
  display: block;
  height: auto;
}

.casesText h2 {
  color:#414141;
  font-size: 6.5em;
  text-transform: uppercase;
  z-index: 2;
  text-align: left;
  /* padding: 20px; */
  line-height: 0.6;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  position: static;
  margin-left: 0;
}

.case-span-6 {
    grid-column: span 6;
}

.case-span-4 {
    grid-column: span 4;
}

.case-item {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background-color: pink;
}

.case-item-content {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.case-item.brand-bg {
    background-color: #6AB024;
}

.cases-image-banner{
  background-color: #414141;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-auto-rows: minmax(150px, auto);
    gap: 15px;
    margin: 0 auto;
}


.bold{
  font-weight: bolder;
}

.case-item-new {
    position: relative;
    background-size: cover;
    background-position: center;
    min-height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.case-item-new .case-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.case-item-new h3 {
    font-family: "CoFo Kak", sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 2rem;
    margin: 0;
}

.case-title-card {
    background-color: #d3d71d;
}

.case-title-card h2 {
    font-family: "CoFo Kak", sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 4rem;
    color: #000;
    line-height: 1;
    margin: 0;
}


/* ========================================================================= */
/* ------------- HOW TO SOCIAL SECTION STYLES ------------------------------ */
/* ========================================================================= */

.how_to_social{
  text-align: center;
  color: #fff;
}

.how_to_social h3{
  text-align: center;
  color: white;
}

.how_to_social h2{
  text-align: center;
  color:white;
  font-size: 7em;
}

.hts-container{
  padding: 50px 0px;
  width: 100%;
  background: #6AB024;
}

/* ========================================================================= */
/* ------------- SOCIAL MEDIA  SECTION STYLES ------------------------------ */
/* ========================================================================= */

.social_header {
  font-size: 3.2em;
  font-family: "CoFo Kak";
  padding: 2vw;
  font-weight: 500;
  text-align: center;
}

.ig_postings {
  display: grid;
  grid-template-columns: repeat(4, 20vw);
  gap: 10px;
  justify-content: center;
  text-align: center;
  position: relative;
  margin: auto;
    margin-bottom: auto;
  margin-bottom: 0px;
}

.post_preview{
  width: 100%;
}

.post_preview img{
  width:100%;
}

.social_we_do{
  background-color: #414141;
  height: 70vh;
}

.social_media{
  text-align: center;
  background-color: #d4ff00;
  color:#414141;
}

.social_media h1 {
  font-size: 5.3em;
  font-family: "CoFo Kak", sans-serif;
  text-align: center;
  color: white;
  margin-top: 5vh;
  text-transform: none;
  z-index: 2;
  text-align: center;
  padding: 20px;
  line-height: 2.1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  font-weight: 500;
  background-color: #414141;
}

.social_media_bottom{
  background-color: #d3d71d;
}

/* ========================================================================= */
/* -------------- SOCIAL WE DO SECTION STYLES ------------------------------ */
/* ========================================================================= */

.swd_header{
  height: 20vh;
}

.swd_brands {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  grid-template-rows: repeat(5, 1fr);
  grid-column-gap: 10vw;
  grid-row-gap: 0px;
  height: 59vh;
  margin: auto;
  background-color: #414141;
}

.swd_brands .div1 { grid-area: 2 / 2 / 4 / 4; }
.swd_brands .div2 { grid-area: 2 / 4 / 4 / 6; }
.swd_brands .div3 { grid-area: 2 / 6 / 4 / 8; }
.swd_brands .div4 { grid-area: 2 / 8 / 4 / 10; }

.swd_icon {
  background-size: cover;
  background-position: center;
  height: 30vh;
}

.swd_icon img{
  height:100%;
}

.hts_social_media_two_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, 1fr);
    grid-column-gap: 3vw;
    grid-row-gap: 0px;
    width: 15vw;
    margin: auto;
}

.tiktok_round_icon{
  grid-area: 1 / 1 / 3 / 3;
}

.ig_round_icon{
  grid-area: 1 / 3 / 3 / 5;
}


/* ========================================================================= */
/* --------------------- UNITY SECTION STYLES ------------------------------ */
/* ========================================================================= */
.unity_header h1 {
  text-align: center;
  color: #ff8ea7;
  font-size: 6.2em;
  text-transform: uppercase;
  padding-bottom: 0vh;
  margin-bottom: -5vh;
  margin-top: 6vh;
}

.unity_header h2 {
  text-align: center;
  color: #d4ff00;
  font-size: 10em;
  text-transform: uppercase;
  font-weight: 700;
  padding-top: 0vh;
}

.unity_grid {
  display: grid;
  grid-template-columns: 90vh repeat(4, 9vw);
  grid-template-rows: repeat(4, 16vh);
  grid-column-gap: 3vw;
  grid-row-gap: 5vh;
  width: 90vw;
  margin: auto;
}

.unity_grid_text {
  font-size: 1.50em;
  padding-right: 10em;
}

.unity_grid1 { grid-area: 1 / 1 / 6 / 2; }

.unity_grid2 { 
  grid-area: 1 / 2 / 3 / 4;
  border-radius: 50px;
  overflow: hidden;
 }

.unity_grid3 { 
  grid-area: 1 / 4 / 3 / 6; 
  border-radius: 50px;
  overflow: hidden;
}

.unity_grid4 { 
  grid-area: 3 / 2 / 5 / 4;
  border-radius: 50px;
  overflow: hidden;
 }

.unity_grid5 { 
  grid-area: 3 / 4 / 5 / 6;
  border-radius: 50px;
  overflow: hidden;
}

.neon-yellow{
  color: #d4ff00;
}

/* ========================================================================= */
/* ------------------ OUR TEAM SECTION STYLES ------------------------------ */
/* ========================================================================= */

.team {
  position: relative;      /* wichtig */
  z-index: 0;              /* wichtig */
  font-family: "CoFo Kak", sans-serif;
  height: 98vh;
  overflow: hidden;        /* optional aber sinnvoll */
}


.team video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* New styles for the team section headers */
.team-overlay {
    z-index: 1; /* Ensure overlay is above the video */
    color: white; /* Default color for text within the overlay */
}

.team-h1 {
    color: #63B22F;
    font-size: 6em;
    text-transform: uppercase;
    font-weight: 900;
}

.team-h2 {
    color: #D9FF3D;
    font-size: 9.5em;
    text-transform: uppercase;
    font-weight: 900;
    line-height: 0.6em;
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.job-item {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    text-align: left;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.job-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #4e4e4e;
}

/* Basis für alle Haupt-Pages */
.page-section {
    display: none;
    width: 100%;
    position: relative;
}

.page-section.active {
    display: block;
    animation: pageSlideIn 0.4s ease-out;
}


/* ============================================
   HOME PAGE
   ============================================ */



/* ============================================
   DYNAMIC PAGE (für Partials)
   ============================================ */

#page-dynamic {
    min-height: 100vh;
    background-color: #414141;
    /*padding-top: 80px; /* Für fixed navbar */
}

.partial-camera img {
    max-width: 400px;
}

.partial-content {
    background-color: #fff;
    position: relative;
}

/* ============================================
   FILM-PARTIAL
   ============================================ */

.film-container{
  position: relative;
  background-color: #00000000;
}   


/* ============================================
   PERSISTENT SECTIONS (immer sichtbar)
   ============================================ */

#faq,
#kontakt {
    /* Diese bleiben immer sichtbar */
    display: block;
}


.until_here{
  background-color: #ff8eab;
  color: #fff;
  padding-top:10vh;
}

.uh_container {
    width: 100%;
    margin: auto;
    text-align: center;
}

.uh_container .regular {
  font-size: 2.5em;
  margin: auto;
  width: 100%;
  display: inline-block;
  text-align: center;
}
.uh_container .big{
  font-weight: 900;
    font-size: 5.6em;
    text-transform: uppercase;
    line-height: 0.9;
    width: 100%;
    display: ruby-text;
    font-family: 'CoFo Kak';
}

.uh_container .ultraBig{
  font-size: 10em;
  line-height: 0.5em;
  font-family: 'CoFo Kak';
  text-transform: uppercase;
  font-weight: 800;
}

.uh_container .btn-primary {
  background-color: #d4ff00;
  border-color: #d3d71d;
  color: #414141;
  font-weight: 500;
  padding: 0.75rem 4rem;
  border-radius: 15px;
  font-family: "CoFo Kak", sans-serif;
  margin-bottom: 49px;
  font-size: 1.2em;
}

/* Contact Section */
.dce_contactinfo {
  background-color: #414141;
  color: #fff;
}

.dce_contactinfo .dce_contactinfo_inner {
  padding: 3rem 0 1rem 0;
  margin: 0 auto;
}

.dce_contactinfo .contact-logo-row {
  justify-content: flex-start;
  display: grid;
  grid-template-columns: 25% 30% repeat(2, 19%);
  grid-template-rows: 15vh;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  align-items: end; /* Wichtig: Alle Items am unteren Rand ausrichten */
}

.dce_contactinfo .icon-flow p {
    margin-bottom: 0;
    font-family: 'Roboto';
    font-weight: 100;
    font-size: 1.2em;
}

.contactInfo{
  max-width: 90vw;
  margin: auto;
}

.contact-logo-row1{
  grid-area: 1 / 1 / 2 / 2;
}

.contact-logo-row2{
  grid-area: 1 / 3 / 2 / 4;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* oder center, je nach Wunsch */
}

.contact-logo-row3{
  grid-area: 1 / 4 / 2 / 5;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* oder center, je nach Wunsch */
}

.contact-logo-row2 span,
.contact-logo-row3 span {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9em; /* Optional: kleinere Schrift für den Text */
}

.dce_contactinfo .logo-footer {
  margin-left: 0;
  margin-right: auto;
}

.dce_contactinfo .icon-flow {
  display: grid;
  grid-template-columns: 2rem auto;
  grid-gap: 0.5rem;
  justify-content: stretch;
  align-items: center;
  margin-bottom: 1rem;
}

.dce_contactinfo .icon-flow img {
  filter: brightness(0) invert(1);
}

.camera-placeholder {
    background-image: url(../img/kamera.png);
    width: 560px;
    height: 320px;
    background-size: contain;
    margin: auto;
}


.dce_contactinfo .sponsors {
  padding-top: 5rem;
}

.dce_contactinfo .sponsors span {
  display: block;
  padding: 0.3rem;
}

.dce_contactinfo .sponsors .logo-sponsor {
  height: 3rem;
  padding: 0 0.5rem;
  object-fit: contain;
}



/* ========================================================================= */
/* ------------------ MAP PLACEHOLDER  STYLES ------------------------------ */
/* ========================================================================= */
.map-placeholder {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e9ecef;
  cursor: pointer;
  transition: background 0.3s;
  min-height: 200px;
  width: 100%;
  height: 200px;
  margin-top: 1rem;
  border-radius:25px;
}

.map-placeholder:hover {
    background: #dee2e6;
}
.map-placeholder-content {
    text-align: center;
    padding: 20px;
}
.map-placeholder-content h4 {
    margin-bottom: 10px;
    font-size: 16px;
    color: #414141;
}
.map-placeholder-content button {
    padding: 8px 16px;
    background: #d4ff00;
    color: #414141;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
    font-family: "CoFo Kak", sans-serif;
    font-weight: 500;
    font-size: 1.5em;
}
.map-placeholder-content button:hover {
    background: #d4ff00;
}

.mapContainer{
  max-width: 90vw;
}

.mapSnip{
  border-radius:25px;
}




/* Footer */
footer {
  background: #000;
  color: #fff;
  padding-top:2em;
}

.footer-logo{
  margin-bottom: 2em;
}

.social-media-icons a img:first-child {
  display: inline-block;
}

.social-media-icons a img:last-child {
  display: none;
}

.social-media-icons a:hover img:first-child {
  display: none;
}

.social-media-icons a:hover img:last-child {
  display: inline-block;
}

@media screen and (max-width: 786px) {
  footer {
    padding: 1rem 1.5rem;
  }
}
footer * {
  color: inherit;
}
footer h2 {
  text-align: left;
  color: #6AB024;
  max-width: 600px;
  padding-top: 4rem;
}

.sitemap {
    background-color: #414141;
    width: 100vw;
    max-width: 100vw;
    color: #fff;
}

@media screen and (max-width: 786px) {
  footer h2 {
    padding-top: 0;
  }
}
footer .social-media-icons {
  text-align: center;
}
@media screen and (min-width: 990px) {
  footer .social-media-icons {
    text-align: right;
  }
}
footer .social-media-icons img {
  margin-right: 0.5rem;
}
footer .social-media-icons a {
  text-decoration: none;
  text-align: center;
}
footer ul.navigation {
  list-style: none;
}
@media screen and (max-width: 990px) {
  footer ul.navigation {
    margin-bottom: 3rem;
  }
}
footer ul.navigation li.item {
  display: inline-block;
}
footer ul.navigation li.item a {
  text-decoration: none;
  display: block;
  padding: 0.3rem 0.8rem 0.3rem 0;
}
@media screen and (max-width: 990px) {
  footer ul.navigation li.item {
    display: block;
    text-align: center;
  }
}
footer ul.navigation-sub {
  list-style: none;
  text-align: center;
  padding-top: 2rem;
}
footer ul.navigation-sub li.item {
  display: inline-block;
}
@media screen and (max-width: 576px) {
  footer ul.navigation-sub li.item {
    display: block;
  }

  .nav-right-group {
    gap: 0.5rem;
  }
  
  .btn-contact {
      padding: 0.4rem 0.8rem;
      font-size: 0.85rem;
  }
}

footer ul.navigation-sub li.item a {
  text-decoration: none;
  display: block;
  text-align: center;
  padding: 0.3rem 0.8rem;
}

footer .btn:hover {
  background: #fff;
  color: #000;
}

.bg-green {
    background-color: #63B22F;
}

.btn-lime-green {
  background-color: #d4ff00;
  border-color: #d3d71d;
  color: #414141;
  font-weight: 500;
  padding: 0.75rem 5rem;
  border-radius: 25px;
  font-family: "CoFo Kak", sans-serif;
  font-size: 1.3em;
  text-decoration: none;
}

.btn-lime-green a{
  text-decoration: none;
}

.btn-lime-green:hover{
  text-decoration: none;
}

.lime-green{
  color: #D9FF3D;
}

.btn-lime-green:hover {
    background-color: #b8c73c;
    color: #000;
    text-decoration: none;
}


.content-section {
    padding: 100px 0;
    position: relative;
}

/* -- Submenu Styles -- */



.limegreen{
  background-color: #d3d71d;
}

.bg-light-gray{
  background-color: whitesmoke;
}

.rosa_white{
  background-color: #ff8eab;
  color: white;
}

.rosa_black{
  background-color: #ff8eab;
  color: black;
}

.dark_grey_white{
  background-color: #414141;
  color: white;
}

.dark_grey_black{
  background-color: #414141;
  color: black;
}

.green_white{
  background-color: #63B22F;
  color:white;
}

.green_black{
  background-color: #63B22F;
  color:black;
}

.home-content-wrapper {
    margin-top: 8em;
    background-color: #414141;
    position: relative;
}

.content-wrapper {
    opacity: 1;
    position: relative;
    margin-top: 8em;
    transition: opacity 0.3s ease-in-out;
    background-color: #414141;
}
.section-subtitle .page-content {
    display: none;
    position: relative;
}

.page-content.active {
    display: block;
    animation: slideInUp 0.4s ease-out;
}


.consent-content h4{
  color: white;
}

/* --- Section: our_force --- */
.force{
  background-color: #414141;
}

.force h2{
  color: #63B22F;
  font-size: 5em;
  text-align: center;
}

.force h3{
  color: #d4ff00;
  font-size: 6em;
  text-align: center;
  padding-bottom:1em;
}

.force-grid {
  display: grid;
  grid-template-columns: repeat(5, 20%);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.force .container{
  margin: auto;
  width:90%;
  max-width: 1600px;
}

.kachel{
  height: 250px;
  width: 250px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center; /* optional */  
  gap: 8px; /* Abstand zwischen Bild und Label */
}

.kachelImg{
  width:100%;
}

.kachel img {
    width: 250px;
    height: 250px;
    object-fit: contain;
    image-rendering: auto;
}

.kachel img{
  width:100%;
  height:100%;
}

.kachel-label {
    font-size: 0.9rem;
    color: #fff; /* oder passend zu deinem Design */
    text-transform: uppercase;
}
/* --- Section: dynamic-content --- */

#dynamic-content {
    position: relative;
    min-height: 100vh;
    background-color: #414141;
}

#dynamic-content.active {
    display: block;
}

#dynamic-content:not(.active) {
    display: none !important;
}

/* --- Section: Steps to Goal --- */ 
.steps_to_goal {
  background-color: #414141;
  height: fit-content;
  padding-top: 60px;
  padding-bottom: 110px;
  margin-bottom: -3em;
}

.steps_to_goal h1 {
  color: #ff8ea7; /* Pink wie im Original */
  font-size: 4.5rem;
  margin-bottom: 60px;
  font-weight: bold;
  text-align: center;
}

.step {
  position: relative;
  margin-bottom: 40px;
  padding-left: 80px; /* Platz für die Zahl links */
  min-height: 100px;
}

.step .step-number {
  position: absolute;
    left: 0;
    top: -10px;
    font-size: 5rem;
    font-weight: bold;
    color: #d4ff00;
    line-height: 0.8;
    font-family: "CoFo Kak", sans-serif;
    min-width: 4vw;
    display: inline-flex;
    justify-content: center;
}

.step .step-content {
  position: relative;
  z-index: 2;
  padding-top: 15px;
  padding-left: 4vw;
  font-size: 1.2em;
}

.step .step-content h3 {
    color: #ff8ea7;
    font-size: 1em;
    letter-spacing: 0;
    margin: 0 0 8px 0;
    text-align: left;
    margin-top: -3vh;
    font-family: 'Roboto';
    font-weight: 500;
    padding-bottom: 3vh;
}

.step .step-content p {
    color: #ffffff;
    font-size: 1.2em;
    line-height: 1.5;
    margin: 0;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 60px;
  max-width: 80vw;
  margin: 0 auto;
  padding-bottom: 10vh;
}

/* Responsive */
@media (max-width: 768px) {
  .steps-container {
    grid-template-columns: 1fr;
  }
  
  .step {
    padding-left: 60px;
  }
  
  .step .step-number {
    font-size: 4rem;
  }

  .btn-contact {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

}



/* --- Section: news --- */
.news{
  background-color: #d4ff00;
}

.news h1{
  color:white;
  text-align: center;
  font-size: 2.3em;
}

.news img{
  width: 100%;
  height: 100%; 
}


/* --- SECTION FAQ (FAQ Akkordeon-Stile) --- */

.faq-section {
    /* Basierend auf deiner vorhandenen .faq Sektion */
    background-color: #414141; /* Etwas dunkler als #3a3a3a für den tieferen Ton im Bild */
    padding: 60px 20px 80px 20px; /* Padding angepasst */
    font-family: "Roboto", sans-serif; /* Standard-Textschrift */
}

.faq-container {
    max-width: 75vw;
    margin: 0 auto;
    padding-top: 7vh;
}

/* Überschrift "Noch Fragen?" */
.faq-heading {
    font-family: "CoFo Kak", sans-serif;
    font-size: 7rem;
    font-weight: 900;
    color: #6AB024;
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.2;
    text-transform: none;
}

/* Akkordeon-Styling */
.accordion {
    /* Die Trennlinien sind das Akzentgrün, wie im Bild */
    border-top: 2px solid #6AB024; 
}

.faq-item {
    list-style: none;
    margin: 0;
    padding: 0;
    /* Die Trennlinien zwischen den Items */
    border-bottom: 2px solid #6AB024;
}

/* Frage-Element (Summary) */
.faq-question {
    display: block;
    cursor: pointer;
    padding: 18px 0;
    font-size: 1.1rem;
    font-weight: 400; /* Roboto Standard-Gewicht */
    color: #ffffff; /* Weißer Text auf dunklem Hintergrund */
    position: relative;
    list-style: none; 
}

/* Entfernt den Standard-Details-Pfeil */
.faq-question::marker,
.faq-question::-webkit-details-marker {
    display: none;
}

/* Das benutzerdefinierte Chevron-Icon */
.faq-question::after {
    content: '⌵'; /* Kleiner Pfeil nach unten */
    font-size: 1.5rem;
    color: #ffffff; /* Der Pfeil ist im Bild Weiß */
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    transition: transform 0.3s ease-out;
}

/* Zustand: Geöffnet (Pfeil dreht sich) */
.faq-item[open] > .faq-question::after {
    transform: translateY(-50%) rotate(180deg);
}

/* Antwort-Bereich (wird per JS animiert) */
.faq-answer {
    overflow: hidden; 
    padding: 0 0 15px 0;
    color: #ffffff;
    font-size: 1rem; /* Etwas kleiner als die Frage */
}

.faq-answer p {
    margin: 0;
    line-height: 1.6;
    padding-right: 20px;
    color: #ffffff;
}

/* This file contains CSS blocks that were removed from other stylesheets for cleanup purposes.
   They are stored here for recovery if needed. */

/* Removed from css/style.css on 2025-11-24 */
.jobs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.job-item {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    text-align: left;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.job-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #414141;
}

.job-item p {
    font-size: 1rem;
    color: #414141;
}


.nav-right-group {
    display: flex;
    align-items: center;
    gap: 1rem; /* Abstand zwischen Button und Toggle */
}

.btn-contact {
  background-color: #d4ff00;
  color: #414141;
  border: none;
  border-radius: 50px;
  padding: 0.5rem 1.5rem;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  height: 40px;
  transition: background-color 0.3s ease;
  font-size: 1em;
}

.btn-contact:hover {
    background-color: #8BB82D; /* Etwas dunkler beim Hover */
    color: #fff;
    text-decoration: none;
}

/* --- Section: contact-form-section --- */
#contact-form-section {
    background-image: url('./img/contact_dummy.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    padding: 80px 20px;
    margin: 80px 0;
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-form-container {
    width: 90%;
    max-width: 550px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
    background: rgba(80, 70, 80, 0.85);
    border: 3px solid rgba(255, 20, 147, 0.6);
    border-radius: 20px;
    padding: 40px 30px;
    backdrop-filter: blur(5px);
}
.contact-form-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-form-icon img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}
.contact-form-title {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 5px;
    color: #d4ff00;
    text-transform: uppercase;
    line-height: 1.3;
}
.contact-form-subtitle {
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-weight: 500;
    color: white;
}
.contact-form-input-wrapper {
    max-width: 100%;
    margin: 0 auto 20px;
    position: relative;
    background: white;
    border-radius: 50px;
    padding: 6px 6px 6px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.contact-form-input-wrapper input {
    flex: 1;
    border: none;
    outline: none;
    padding: 10px 10px;
    font-size: 13px;
    text-transform: uppercase;
    background: transparent;
    color: #333;
}
.contact-form-input-wrapper input::placeholder {
    color: #999;
    text-transform: uppercase;
}
.contact-form-btn {
    background: #ff1493;
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 2.2em;
    white-space: nowrap;
    flex-shrink: 0;
    font-family: "CoFo Kak", sans-serif;
}
.contact-form-btn:hover:not(:disabled) {
    background: #d4ff00;
    color: #333;
    transform: scale(1.05);
}
.contact-form-btn:disabled {
    background: #999;
    cursor: not-allowed;
    opacity: 0.6;
}
.contact-form-privacy {
    margin-top: 15px;
    font-size: 12px;
    color: white;
}
.contact-form-privacy label {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    max-width: 100%;
    margin: 0 auto;
    text-align: left;
}
.contact-form-privacy input[type="checkbox"] {
    margin-top: 2px;
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: #ff1493;
    flex-shrink: 0;
}
.contact-form-privacy a {
    color: #ff1493;
    text-decoration: none;
}
.contact-form-privacy a:hover {
    color: #d4ff00;
}
.contact-info-block {
    margin-top: 25px;
    font-size: 15px;
    color: white;
}
.contact-info-block a {
    color: #ff1493;
    text-decoration: none;
    font-weight: 600;
}
.contact-info-block a:hover {
    text-decoration: none;
    color: #d4ff00;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pageSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}