/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Roboto",  sans-serif;
  --nav-font: "Lato",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #212529; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #2d465e; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #34bf49; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --default-header: #E0E0E0;
  --footer-color: #E0E0E0;
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #212529;  /* The default color of the main navmenu links */
  --nav-hover-color: #34bf49; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #34bf49; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}


/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}


.text-darkblue{
color: var(--dark-blue) !important;
font-weight: 600;
}

.btn-surfinn{color:#28a745;border-color:#28a745}
.btn-surfinn:hover{color:#fff;background-color:#28a745;border-color:#28a745}
.btn-surfinn.focus,
.btn-surfinn:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}
.btn-surfinn.disabled,
.btn-surfinn:disabled{color:#28a745;background-color:transparent}

.roter-text{
    color: #FF0000;
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--default-header);
  padding: 5px 0;
  transition: all 0.5s;
  z-index: 997;
}


.sitename{
  font-size: 30px;
  margin: 0;
  font-weight: 300;
  color: var(--heading-color);
}



.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 32px;
  margin-right: 8px;
}

@media (max-width: 576px) {
  .logo-img {
    max-height: 40px;
  }
}


.scrolled .header {
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.1);
}
#pegel-badge-mobile { line-height: 1; }



/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.footer {
  background-color: var(--footer-color);
  color: var(--default-color);
  padding: 20px 0 10px;
  font-size: 14px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.footer a {
  color: var(--default-color);
}

.footer a:hover {
  color: var(--accent-color) !important;
}
.footer #learn-more-button{
    color: #28a745 !important;
}

.footer #learn-more-button:hover{
    color: #ffffff !important;
}

.footer .text-primary{
    color: var(--dark-blue) !important;
}


.footer .copyright {
  margin-top: 50px;
  position: relative;
  padding-top: 20px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.footer .copyright p,
.footer .copyright .credits {
  margin: 2px 0;
}

.gruenhover:hover {
  color: var(--accent-color) !important;
}






/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
/*--------------------------------------------------------------
# APP APP APP APP APPP
--------------------------------------------------------------*/
/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/


.abstand{
    margin: 8em;
}

/*---- Registrierung/login ----*/
.form-with-validation {
    font-size: 1rem;
    padding: 1rem;
    display: flex;
    flex-flow: column;
    gap: 1rem;
}

.form-with-validation div {
    display: flex;
    flex-flow: column;
    gap: 0.5rem;
}

.form-with-validation input {
    padding: 0.25rem;
    max-width: 300px;
}

.form-submit {
    padding: 0.5rem;
    border-radius: 10px;
    width: 125px;
}

.helptext {
    font-size: 1rem;
    margin-left: 1rem;
}

.helptext ul {
    list-style-type: none;
}

.errorlist {
    color: #F00;
    margin-left: 2rem;
}

.errorlist li::marker {
    content: '🚨 ';
}
/*---- Logout ----*/

.logout {
    display: inline-block;
}

.logout-button {
    font-size: 2.5rem;
    background-color: rgb(0, 0, 0, 0);
    border: none;
}

.logout-button:hover {
    opacity: .85;
}

/*----New Session----*/
.new_session_button{
margin: 1em;

}






/*--------------------------------------------------------------
# Session Page
--------------------------------------------------------------*/
/*Visitenkarte*/
.user-card-hover:hover .user-card-info {
  display: block !important;
}

.session-page-card li{
    padding: 5px;
}


/*--------------------------------------------------------------
# New Session
--------------------------------------------------------------*/


.new-session-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-container {
    background: #fff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 600px;
}


/*--------------------------------------------------------------
# Anwesenheit
--------------------------------------------------------------*/


.anwesenheit-tabelle {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 800px;
}

.anwesenheit-kopf {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    font-weight: bold;
    padding: 8px 16px;
    background-color: #e9ecef;
    border-radius: 10px;
    text-align: center;
}

.anwesenheit-item {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    align-items: center;
    padding: 12px 16px;
    border: 1px solid #dee2e6;
    border-radius: 10px;
    background-color: #f8f9fa;
    transition: background-color 0.2s, border-color 0.2s;
}

.anwesenheit-item.checked {
    background-color: #d1e7dd; /* grün */
    border-color: #badbcc;
}

.anwesenheit-item.no-show {
    background-color: #f8d7da; /* rot */
    border-color: #f5c2c7;
}

.anwesenheit-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.anwesenheit-profil {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.anwesenheit-name {
    font-size: 1rem;
    font-weight: 500;
}

.anwesenheit-checkbox {
    display: flex;
    justify-content: center;
    align-items: center;
}

.anwesenheit-checkbox input[type="checkbox"] {
    appearance: none;
    width: 28px;
    height: 28px;
    border: 2px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
    cursor: pointer;
    position: relative;
}

.anwesenheit-checkbox input[name="anwesenheit"]:checked::before {
    content: "✔";
    position: absolute;
    left: 6px;
    top: 0;
    font-size: 18px;
    color: green;
}

.anwesenheit-checkbox input[name="no_show"]:checked::before {
    content: "✘";
    position: absolute;
    left: 6px;
    top: 0;
    font-size: 18px;
    color: red;
}

/*finlter karten tab3 Profil*/
.kpi-card{
    transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease, background-color .12s ease;
    cursor: pointer;
  }
  .kpi-card:hover{ transform: translateY(-2px); }

  /* aktive Karte leicht hervorheben */
  .kpi-card.is-active{
    border: 2px solid var(--bs-primary) !important;
    background-color: rgba(var(--bs-primary-rgb), .03);
  }

  /* Zahlen/Label optional etwas kräftiger */
  .kpi-card .value{ font-weight: 700; font-size: 1.4rem; }
  .kpi-card .label{ opacity: .8; }







/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
/*--------------------------------------------------------------
# HOMEPAGE
--------------------------------------------------------------*/
/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/





/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  position: relative;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 300;
  margin: 0 0 5px 0;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}




/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}


/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    margin-top: 2em;
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 0;
}

.section-title p {
  font-size: 18px;
  margin-bottom: 10px;
}







#hero {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}

#hero .hero-container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;

}

#hero .hero-logo {
  margin-bottom: 30px;
}

#hero h1 {
  margin: 0 0 30px 0;
  font-size: 48px;
  font-weight: 500;
  line-height: 56px;
  color: #fff;
}

#hero h2 {
  color: #aeaeae;
  margin-bottom: 30px;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
}

#hero .btn-get-started {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 30px;
  border-radius: 3px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
  background: #7cc576;
}

#hero .btn-get-started:hover {
  background: #fff;
  color: #7cc576;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    line-height: 22px;
  }
}

/*about*/
.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: flex-start;
}

.about .content ul i {
  font-size: 24px;
  padding: 2px 6px 0 0;
  color: #7cc576;
}



/*flussurfen*/

.flusssurfen .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
}

.flusssurfen .icon-box i {
  font-size: 48px;
  float: left;
  color: #7cc576;
}

.flusssurfen .icon-box p {
  font-size: 15px;
  color: #959595;
  margin-left: 60px;
}

.flusssurfen .image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 400px;
}
.flusssurfen{
    padding-bottom: 4em;
}


/*Ziele*/



.why-us .video-box {
  background-size: cover;
  background-position: center;
  min-height: 300px;
  border-radius: 8px;
  position: relative;
}

.ziele .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#7cc576 50%, rgba(124, 197, 118, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.ziele .play-btn::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-40%, -50%);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
}

.ziele .play-btn::before {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  animation: pulsate-btn 2s infinite;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(124, 197, 118, 0.7);
  top: -15%;
  left: -15%;
}

.why-us .play-btn:hover::after {
  border-left-color: #7cc576;
  transform: scale(20);
}

.why-us .play-btn:hover::before {
  display: none;
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}


.accordion-list .card-header {
  background-color: #f8f9fa;
  border: none;
}

.accordion-list .btn-link {
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  color: #333;
}

.accordion-list .btn-link:hover {
  text-decoration: none;
  color: #7cc576;
}

.accordion-list .card-body {
  background-color: white;
  padding: 20px;
  font-size: 0.95rem;
  color: #555;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  background: #fff;
  padding: 60px 0;
}

.team .member {
  margin-bottom: 20px;
  overflow: hidden;
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  aspect-ratio: 1 / 1;
}

.team .member .member-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team .member .social {
  position: absolute;
  left: 0;
  bottom: -40px;
  right: 0;
  height: 40px;
  opacity: 0;
  transition: bottom ease-in-out 0.4s;
  text-align: center;
  background: rgba(124, 197, 118, 0.8);
}

.team .member .social a {
  transition: color 0.3s;
  color: #fff;
  margin: 0 10px;
  padding-top: 8px;
  display: inline-block;
}

.team .member .social a:hover {
  color: #7cc576;
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin: 15px 0 5px 0;
  font-size: 18px;
}

.team .member .member-info span {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 15px;
  color: #7cc576;
}

.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #888888;
}

.team .member:hover .social {
  bottom: 0;
  opacity: 1;
  transition: bottom ease-in-out 0.4s;
}

/*--------------------------------------------------------------
# Wellenmeister:innen
--------------------------------------------------------------*/
/* YouTube Privacy Thumbnails */
.yt-preview {
  position: relative;
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #000;
}

.yt-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.yt-preview:hover img {
  transform: scale(1.03);
  opacity: 0.85;
}

.yt-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: white;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  transition: transform 0.2s ease;
}

.yt-preview:hover .yt-play-btn {
  transform: scale(1.1);
}

.wellenmeister {
  background: #f8fdf8;
}

.wm-card {
  padding: 1.5rem 1rem;
  border-radius: 16px;
}

.wm-avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(52, 191, 73, 0.35);
}

.wm-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.text-accent {
  color: var(--accent-color);
  font-weight: 500;
}

.wm-bio {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.5;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
#clients h3{
    padding-bottom: 2em;

}
.clients {
  background: whitesmoke;
  padding: 15px 0;
  text-align: center;
    padding-bottom: 2em;
}

.clients img {
  height: 50%;
  -webkit-filter: grayscale(100);
  filter: grayscale(100);
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
}

.clients img:hover {
  -webkit-filter: none;
  filter: none;
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .clients img {
    height: 100%;
  }
}

@media (max-width: 575px) {
  .clients img {
    width: 50%;
  }
}


/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 60px 0;
  background-position: center center;
  background-size: cover;
  position: relative;
}

.testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
}

.testimonials .quote-icon i {
  color: #7cc576;
  font-size: 24px;
  padding: 18px;
  border-radius: 50px;
  border: 2px solid #7cc576;
}

.testimonials .testimonial-item {
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 1; /* über dem dark overlay */
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 30px auto;
  font-size: 20px;
  max-width: 900px;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 10px 0 5px 0;
  color: #fff;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #ddd;
  margin: 0 0 15px 0;
}

/* Carousel Indicators (Dots) im SurfInn-Grün */
#testimonialCarousel .carousel-indicators {
  position: static;   /* nicht mehr absolut */
  margin-top: 30px;   /* Abstand zum Text */
  justify-content: center;
}
#testimonialCarousel .carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
}
#testimonialCarousel .carousel-indicators .active {
  background-color: #7cc576;
}

/* Controls (Pfeile) etwas größer machen */
#testimonialCarousel .carousel-control-prev-icon,
#testimonialCarousel .carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
  background-size: 100% 100%;
}

#testimonialCarousel .carousel-indicators [data-bs-target] {
  padding-top: 12px;
  padding-bottom: 12px;
}

/* Parallax-Effekt nur auf großen Screens */
@media (min-width: 1024px) {
  .testimonials {
    background-attachment: fixed;
  }
}

/* Textbreite auf Desktop einschränken */
@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/* Mehr Rand auf Mobile */
@media (max-width: 575.98px) {
  .testimonials .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .testimonials .testimonial-item p {
    font-size: 18px;
  }
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

.contact .info {
  background-color: var(--background-color);
  padding: 40px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}





.contact .info i {
  font-size: 20px;
  color: #7cc576;
  float: left;
  width: 44px;
  height: 44px;
  background: #eaf6e9;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #151515;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #484848;
}

.contact .info .email, .contact .info .phone .bank {
  margin-top: 40px;
}

.contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i .bank:hover {
  background: #7cc576;
  color: #fff;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}




/*--------------------------------------------------------------
# Verhaltensregeln
--------------------------------------------------------------*/

.verhaltensregeln .li{
padding:5px;
}

/*--------------------------------------------------------------
# Statuten
--------------------------------------------------------------*/


.paragraph-toggle {
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  margin-bottom: 10px;
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.paragraph-toggle summary {
  padding: 0.75rem 1rem;
  background-color: #e8f0fe;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: #333;
}

.paragraph-toggle summary::marker {
  color: #888;
}

.paragraph-toggle[open] {
  box-shadow: 0 0 8px rgba(0, 123, 255, 0.2);
}

.paragraph-toggle p,
.paragraph-toggle ul {
  padding: 0 1rem 1rem 1rem;
  margin: 0;
}









/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
/*--------------------------------------------------------------
#  MOBILE MENU
--------------------------------------------------------------*/
/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/



/*MENU NEU*/

/* ====================================
   MOBILE MENU TOGGLE BUTTON
   ==================================== */

.mobile-menu-toggle {
  background: transparent;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  z-index: 1100;
  min-height: 44px;
  min-width: 44px;
}

.burger-line {
  width: 28px;
  height: 3px;
  background: var(--accent-color, #34bf49);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover .burger-line {
  background: var(--nav-hover-color, #2a9d3a);
}

/* Animierte Burger → X Transformation */
.mobile-menu-toggle[aria-expanded="true"] .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle[aria-expanded="true"] .burger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}


/* ====================================
   MOBILE MENU OVERLAY
   ==================================== */

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh; /* dynamic viewport height - mobile browser bars */
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  z-index: 1050;
  overflow-y: auto;
  display: flex;
  flex-direction: column;

  /* Schnelle slide-in animation */
  transform: translateX(-100%);
  transition: transform 0.18s ease-out;
}

.mobile-menu-overlay.show {
  transform: translateX(0);
}

/* Backdrop Blur Effect (optional) */
.mobile-menu-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  backdrop-filter: blur(10px);
  z-index: -1;
}


/* ====================================
   CLOSE BUTTON
   ==================================== */

.mobile-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(0, 0, 0, 0.05);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--default-color, #212529);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1100;
}

.mobile-menu-close:hover {
  background: var(--accent-color, #34bf49);
  color: white;
  transform: rotate(90deg);
}


/* ====================================
   MENU CONTENT
   ==================================== */

.mobile-menu-content {
  padding: 4rem 1.25rem 1.25rem;
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
  box-sizing: border-box;
}


/* ====================================
   USER INFO SECTION
   ==================================== */

.mobile-menu-user {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
  margin-bottom: 1rem;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.user-avatar {
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, #34bf49, #2a9d3a);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.user-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
}

.avatar-placeholder {
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  text-transform: uppercase;
}

.user-info h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color, #2d465e);
}

.user-level {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: linear-gradient(135deg, #34bf49, #2a9d3a);
  color: white;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  margin-top: 0.25rem;
}


/* ====================================
   NAVIGATION ITEMS
   ==================================== */

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  overflow-y: auto;
  flex: 1;
  padding-bottom: 0.5rem;
}

.mobile-nav-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.7rem 1rem;
  background: white;
  border-radius: 12px;
  text-decoration: none;
  color: var(--default-color, #212529);
  font-size: 0.95rem;
  font-weight: 500;
  transition: transform 0.15s ease, box-shadow 0.15s ease, color 0.15s ease;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

.mobile-nav-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--accent-color, #34bf49);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.mobile-nav-item:hover,
.mobile-nav-item:active {
  transform: translateX(8px);
  box-shadow: 0 4px 15px rgba(52, 191, 73, 0.2);
  color: var(--accent-color, #34bf49);
}

.mobile-nav-item:hover::before {
  transform: scaleY(1);
}

.mobile-nav-item i {
  font-size: 1.5rem;
  width: 32px;
  text-align: center;
  color: var(--accent-color, #34bf49);
  transition: transform 0.3s ease;
}

.mobile-nav-item:hover i {
  transform: scale(1.1);
}

.mobile-nav-item span {
  flex: 1;
}

/* Highlight Item (für Anmeldung) */
.mobile-nav-item.highlight {
  background: linear-gradient(135deg, #34bf49, #2a9d3a);
  color: white;
  font-weight: 600;
}

.mobile-nav-item.highlight i {
  color: white;
}

.mobile-nav-item.highlight:hover {
  transform: translateX(8px) scale(1.02);
}


/* ====================================
   LOGOUT BUTTON
   ==================================== */

.mobile-menu-footer {
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.mobile-install-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.875rem;
  background: linear-gradient(135deg, #34bf49, #2a9d3a);
  border: none;
  border-radius: 16px;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.mobile-install-btn:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

.mobile-logout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1rem;
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: 16px;
  color: #dc3545;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-logout-btn:hover {
  background: #dc3545;
  color: white;
  border-color: #dc3545;
  transform: scale(1.02);
}

.mobile-logout-btn i {
  font-size: 1.25rem;
}


/* ====================================
   STAGGERED ANIMATION FOR NAV ITEMS
   ==================================== */

/* staggered animations entfernt für sofortiges Öffnen */


/* ====================================
   RESPONSIVE
   ==================================== */

/* Tablet */
@media (max-width: 768px) {
  .mobile-menu-content {
    padding: 4rem 1.5rem 1.5rem;
  }

  .mobile-menu-user {
    padding: 1.25rem;
  }

  .user-avatar {
    width: 50px;
    height: 50px;
  }
}

/* Small Mobile */
@media (max-width: 375px) {
  .mobile-nav-item {
    padding: 0.875rem 1rem;
    font-size: 0.95rem;
  }

  .mobile-nav-item i {
    font-size: 1.25rem;
    width: 28px;
  }

  .user-info h3 {
    font-size: 1rem;
  }
}


/* ====================================
   DARK MODE SUPPORT (Optional)
   ==================================== */

@media (prefers-color-scheme: dark) {
  .mobile-menu-overlay {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  }

  .mobile-menu-user,
  .mobile-nav-item {
    background: #2d2d2d;
    color: #ffffff;
  }

  .mobile-menu-close {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
  }

  .mobile-logout-btn {
    background: #2d2d2d;
    border-color: #404040;
    color: #ff6b6b;
  }

  .mobile-logout-btn:hover {
    background: #ff6b6b;
    color: white;
  }
}/*--------------------------------------------------------------
# Card Overrides – bessere Sichtbarkeit auf Mobile
--------------------------------------------------------------*/
.card {
  border: 1px solid #d0d0d0 !important;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.10) !important;
}

.card.shadow-sm {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.13) !important;
}

/* Hover-Effekt für klickbare Cards */
.card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.16) !important;
  transition: box-shadow 0.2s ease;
}

/* BOOTSTRAP OVERRIDE - CRITICAL! */
.mobile-menu-overlay.collapse {
  display: block !important;
  visibility: hidden;
}

.mobile-menu-overlay.collapsing {
  display: block !important;
  visibility: visible;
  transition: transform 0.35s ease !important;
  height: auto !important;
}

.mobile-menu-overlay.collapse.show {
  display: block !important;
  visibility: visible;
}


