/* 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: #f8f9fa; /* 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 */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  --dark-blue: #32455c;
--header-color: #dce1e0 ; /* #cad3d1   #b9c4c1;*/
   --footer-color: #dce1e0;
}

/* 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. */
}

/*--------------------------------------------------------------
# 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);
}

.btn-surfinn{
    color:#28a745;
    border-color:#28a745
}

.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}
.btn-surfinn(:disabled):not(.disabled).active,
.btn-surfinn(:disabled):not(.disabled):active,.show>.btn-outline-success.dropdown-toggle{color:#fff;background-color:#28a745;border-color:#28a745}
.btn-surfinn(:disabled):not(.disabled).active:focus,.btn-outline-success:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}

.roter-text{
    color: #FF0000;
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.sitename{
  font-size: 30px;
  margin: 0;
  font-weight: 300;
  color: var(--heading-color);
}

.header {
  color: var(--background-color);
  background-color: var(--header-color);
  padding: 10px 0;
  transition: all 0.5s;
  z-index: 997;
}

.logo-img {
  max-height: 60px;
  height: auto;
}

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


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


/*--------------------------------------------------------------
# NAV
--------------------------------------------------------------*/

  .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 li:last-child a {
    padding-right: 0;
  }

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

  .navmenu .hover-red:hover{
  color: red;}

.burger{
color: var(--nav-color);
}


#mobileMenu{
     width: 80vw;
     height: 60vh;
     z-index: 1050;
     overflow-y: auto;
}

#mobileMenu .nav-link{
font-size: 1.3em;
}
/* Öffnen/Schließen ohne Animation nur für das mobile Menü */
#mobileMenu,
#mobileMenu.collapsing {
  transition: none !important;
}
#mobileMenu .btn-close {
  transform: scale(1.6);
}
/*--------------------------------------------------------------
# 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;
}
/*--------------------------------------------------------------
# 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;
}
/*--------------------------------------------------------------
# HOMEPAGE
--------------------------------------------------------------*/



#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;
}

.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;
}

/*--------------------------------------------------------------
# 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: url("../img/testimonials-bg.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}

.testimonials::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
}

.testimonials .quote-icon {
  text-align: center;
  margin-bottom: 30px;
}

.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;
}

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

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto;
}

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

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

.testimonials .owl-nav, .testimonials .owl-dots {
  margin-top: 5px;
  text-align: center;
}

.testimonials .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4) !important;
}

.testimonials .owl-dot.active {
  background-color: #7cc576 !important;
}

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

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}



/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  height: 100%;
  background: #fff;
  padding: 20px;
  border-radius: 5px;
}

.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);
  }
}

/*--------------------------------------------------------------
# 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;
}

/*--------------------------------------------------------------
# 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;
}



