
/*---------------------------------------
  FONTS
-----------------------------------------*/


/*---------------------------------------
  VARIABLES
-----------------------------------------*/

:root {
  --blue-color:           #00A6DC;
  --white-color:          #FAEBE7;
  --dark-color:           #ffffff;
  --mood-color:           #0096d1;
  --about-bg-color:       rgba(17, 26, 17, 0.625);
  --green:                #FA6C01;
  --green-dark:           #d45a00;
  --orange:               #FA6C01;

  --text-color:           #fbfffe;
  --link-color:           #FA6C01;
  --link-hover-color:     #333;
  --p-color:              white;

  --h1-font-size-desktop: 48px;
  --h2-font-size-desktop: 36px;
  --h3-font-size-desktop: 24px;
  --h4-font-size-desktop: 16px;
  --h5-font-size-desktop: 14px;
  --h6-font-size-desktop: 12px;
  --p-font-size-desktop: 16px;
  --menu-font-size-desktop: 14px;

  --h1-font-size-mobile: 2.5rem;
  --h2-font-size-mobile: 2rem;
  --h3-font-size-mobile: 1.5rem;
  --h4-font-size-mobile: 1.25rem;
  --h5-font-size-mobile: 1.1rem;
  --h6-font-size-mobile: 1rem;
  --p-font-size-mobile: 1rem;
  --menu-font-size-mobile: calc(1.3vw + 12px);

  --border-radius-large:  100%;
  --border-radius-small:  2px;

  --section-padding: 100px 0;
  --section-padding-mobile: 60px 0;
}

@media (max-width: 767px) {
  :root {
    --h1-font-size: var(--h1-font-size-mobile);
    --h2-font-size: var(--h2-font-size-mobile);
    --h3-font-size: var(--h3-font-size-mobile);
    --h4-font-size: var(--h4-font-size-mobile);
    --h5-font-size: var(--h5-font-size-mobile);
    --h6-font-size: var(--h6-font-size-mobile);
    --p-font-size: var(--p-font-size-mobile);
    --menu-font-size: var(--menu-font-size-mobile);
  }
}

@media (min-width: 768px) {
  :root {
    --h1-font-size: var(--h1-font-size-desktop);
    --h2-font-size: var(--h2-font-size-desktop);
    --h3-font-size: var(--h3-font-size-desktop);
    --h4-font-size: var(--h4-font-size-desktop);
    --h5-font-size: var(--h5-font-size-desktop);
    --h6-font-size: var(--h6-font-size-desktop);
    --p-font-size: var(--p-font-size-desktop);
    --menu-font-size: var(--menu-font-size-desktop);
  }
}


/*---------------------------------------
  GLOBAL / BODY
-----------------------------------------*/

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  background-color: #fff;
  font-family: Arial, sans-serif;
  overflow-x: hidden;
  max-width: 100%;
  color: #333;
}

body, html {
  margin: 0;
  padding: 0;
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

section {
  overflow: hidden;
}

.option {
  color: red;
}

span {
  font-size: 16px;
  font-family: Arial, sans-serif;
}


/*---------------------------------------
  TYPOGRAPHY
-----------------------------------------*/

h1 {
  font-family: "Arial Black", Arial, sans-serif;
  font-weight: 900;
  font-size: var(--h1-font-size);
  letter-spacing: 2px;
  color: #1a1a1a;
  line-height: 1.1;
}

h2 {
  font-family: "Arial Black", Arial, sans-serif;
  color: #1a1a1a;
  font-size: var(--h2-font-size);
  line-height: 1.2;
}

h3 {
  font-family: "Arial Black", Arial, sans-serif;
  color: var(--text-color);
  font-size: var(--h3-font-size);
}

h4 {
  font-family: "Arial Black", Arial, sans-serif;
  color: #1a1a1a;
  font-size: var(--h4-font-size);
}

p {
  font-family: Arial, sans-serif;
  color: #555;
  font-size: var(--p-font-size);
  line-height: 1.7;
}

a {
  font-family: Arial, sans-serif;
  color: var(--link-color);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--link-hover-color);
  text-decoration: none;
}

label {
  font-family: Arial, sans-serif;
  color: #333;
  text-align: left;
}

input {
  font-family: Arial, sans-serif;
  color: #333;
}

textarea {
  font-family: Arial, sans-serif;
  color: #333;
}

option {
  font-family: Arial, sans-serif;
  color: #333;
  font-size: var(--p-font-size);
  background: #fff;
}

select.form-control,
.card-body select.form-control,
.card-body select,
select {
  color: #333 !important;
  -webkit-text-fill-color: #333;
}

.form-option {
  color: #333 !important;
  background: #fff;
}

.above-header {
  font-size: 0.85rem;
  font-weight: 600;
  font-family: Arial, sans-serif;
  color: var(--orange);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.setting-allignment {
  text-align: center;
}


/*---------------------------------------
  BUTTONS
-----------------------------------------*/

.btn3 {
  border-radius: 8px;
  background-color: var(--green);
  border: none;
  padding: 12px 28px;
  cursor: pointer;
  color: #ffffff;
  font-family: Arial, sans-serif;
  font-size: 15px;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(250, 108, 1, 0.3);
}

.btn3:hover {
  background-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(250, 108, 1, 0.4);
  color: white;
}

.btn2 {
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.5);
  padding: 12px 28px;
  cursor: pointer;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 15px;
  transition: all 0.25s ease;
}

.btn2:hover {
  background-color: rgba(255, 255, 255, 0.25);
  border-color: #fff;
  transform: translateY(-2px);
  color: white;
}

.btn-outline {
  border-radius: 8px;
  background: transparent;
  border: 2px solid #1a1a1a;
  padding: 12px 28px;
  cursor: pointer;
  color: #1a1a1a;
  font-family: Arial, sans-serif;
  font-size: 15px;
  transition: all 0.25s ease;
}

.btn-outline:hover {
  background: #1a1a1a;
  color: #fff;
}

.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 24px;
  border: none;
  border-radius: 12px;
  background-color: var(--orange);
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 15px rgba(250, 108, 1, 0.35);
}

.btn-whatsapp:hover {
  background-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(250, 108, 1, 0.45);
}

.btn-whatsapp:active {
  transform: translateY(0);
}

.btn-whatsapp i {
  font-size: 20px;
}

/* Filter/course buttons */
.btn {
  border-radius: 10px;
  border-width: 3px;
  border-color: var(--mood-color);
  border-style: solid;
  outline: none;
  padding: 12px 21px;
  margin: 10px;
  width: 150px;
  background-color: var(--dark-color);
  cursor: pointer;
  color: var(--text-color);
}

.btn:hover {
  border-radius: 10px;
  border-color: var(--dark-color);
  border-style: solid;
  background-color: var(--mood-color);
}

.btn.active {
  border-radius: 10px;
  border-color: var(--mood-color);
  border-style: solid;
}


/*---------------------------------------
  NAVBAR
-----------------------------------------*/

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
  transition: box-shadow 0.3s ease;
}

.site-nav.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 32px;
}

/* Logo */
.nav-logo img {
  height: 40px;
  width: auto;
  transition: opacity 0.2s;
}

.nav-logo:hover img {
  opacity: 0.8;
}

/* Desktop menu */
.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 4px;
}

.nav-menu > li > a {
  font-family: 'Kanit', Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.15s ease;
  letter-spacing: 0.2px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-menu > li > a:hover {
  color: var(--orange);
  background: #FFF7ED;
  text-decoration: none;
}

.nav-menu > li > a i {
  font-size: 9px;
  transition: transform 0.2s ease;
}

/* Explore dropdown */
.nav-has-dropdown {
  position: relative;
}

.nav-mega-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.04);
  padding: 12px;
  min-width: 280px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.nav-has-dropdown:hover .nav-mega-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-has-dropdown:hover > a i {
  transform: rotate(180deg);
}

.mega-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.15s ease;
}

.mega-item:hover {
  background: #FFF7ED;
  text-decoration: none;
}

.mega-item i {
  width: 40px;
  height: 40px;
  background: #FFF7ED;
  color: var(--orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  transition: background 0.15s, color 0.15s;
}

.mega-item:hover i {
  background: var(--orange);
  color: #fff;
}

.mega-item strong {
  display: block;
  font-family: 'Kanit', Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1F2937;
  line-height: 1.3;
}

.mega-item span {
  display: block;
  font-size: 12px;
  color: #9CA3AF;
  line-height: 1.3;
  margin-top: 1px;
}

/* Right side */
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Kanit', Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #6B7280;
  text-decoration: none;
  transition: color 0.15s;
}

.nav-phone:hover {
  color: #374151;
  text-decoration: none;
}

.nav-phone i {
  font-size: 12px;
}

.nav-cta {
  font-family: 'Kanit', Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: var(--orange);
  padding: 10px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(250, 108, 1, 0.25);
  white-space: nowrap;
}

.nav-cta:hover {
  background: #e55e00;
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(250, 108, 1, 0.35);
}

/* Hamburger toggle (mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  transition: background 0.15s;
  z-index: 1001;
}

.nav-toggle:hover {
  background: #f3f4f6;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #374151;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.nav-mobile {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.nav-mobile.open {
  transform: translateX(0);
}

.nav-mobile-inner {
  padding: 16px 24px 32px;
  display: flex;
  flex-direction: column;
}

.nav-mobile-inner > a {
  font-family: 'Kanit', Arial, sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #1F2937;
  text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid #F3F4F6;
  transition: color 0.15s;
}

.nav-mobile-inner > a:hover {
  color: var(--orange);
  text-decoration: none;
}

.nav-mobile-footer {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #E5E7EB;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav-mobile-phone {
  font-family: 'Kanit', Arial, sans-serif;
  font-size: 16px;
  color: #6B7280;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-mobile-phone:hover {
  color: #374151;
  text-decoration: none;
}

.nav-mobile-cta {
  font-family: 'Kanit', Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: var(--orange);
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s;
}

.nav-mobile-cta:hover {
  background: #e55e00;
  color: #fff;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 991px) {
  .nav-menu,
  .nav-right {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

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

@media (min-width: 992px) {
  .nav-mobile {
    display: none;
  }
}

/* Language switcher - desktop */
.nav-lang {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
}

.nav-lang a {
  font-family: 'Kanit', Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #9CA3AF;
  text-decoration: none;
  padding: 4px 6px;
  border-radius: 4px;
  transition: color 0.15s;
}

.nav-lang a:hover {
  color: #374151;
  text-decoration: none;
}

.nav-lang a.active {
  color: var(--orange);
  font-weight: 700;
}

.nav-lang-sep {
  color: #D1D5DB;
  font-size: 12px;
}

/* Language switcher - mobile */
.nav-mobile-lang {
  display: flex;
  gap: 8px;
  padding: 16px 0;
  border-bottom: 1px solid #F3F4F6;
}

.nav-mobile-lang a {
  font-family: 'Kanit', Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #6B7280;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid #E5E7EB;
  transition: all 0.15s;
}

.nav-mobile-lang a:hover {
  text-decoration: none;
  border-color: var(--orange);
  color: var(--orange);
}

.nav-mobile-lang a.active {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}


/*---------------------------------------
  HERO
-----------------------------------------*/

#hero {
  position: relative;
  background: #fff;
}

.hero-split {
  display: flex;
  min-height: 85vh;
}

.hero-text {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 132px 60px 60px;
  background: #fff;
}

.hero-text-inner {
  max-width: 450px;
}

#hero h1::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--orange);
  margin-top: 20px;
  border-radius: 2px;
}

.hero-image {
  flex: 1.2;
  overflow: hidden;
  position: relative;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  margin-left: -140px;
}

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

#hero .above-header {
  color: var(--orange);
  opacity: 1;
  margin-bottom: 12px;
}

#hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 18px;
  line-height: 1.15;
  color: #1a1a1a;
}

#hero p {
  font-size: 15px;
  margin-bottom: 28px;
  line-height: 1.7;
  color: #666;
}

#hero .hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero-split {
    flex-direction: column-reverse;
    min-height: auto;
  }

  .hero-image {
    height: 50vh;
    clip-path: none;
    margin-left: 0;
  }

  .hero-text {
    padding: 50px 25px;
  }
}

.hero-content {
  padding-top: 100px;
  margin-top: 100px;
  position: relative;
  left: 5%;
  text-align: left;
  color: var(--text-color);
  width: 90%;
}

.hero-content2 {
  text-align: center;
  position: absolute;
  width: 85vw;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--text-color);
  padding-top: 350px;
}


/*---------------------------------------
  PERMIT BANNER
-----------------------------------------*/

.permit-banner {
  background: #FA6C01;
  padding: 10px 20px;
  text-align: center;
  position: fixed;
  top: 72px;
  left: 0;
  width: 100%;
  z-index: 999;
}

.permit-banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.permit-banner-inner i.fa-exclamation-triangle {
  color: #fff;
  font-size: 14px;
  flex-shrink: 0;
}

.permit-banner-inner span {
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
}

.permit-banner-inner a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  font-size: 14px;
  white-space: nowrap;
}

.permit-banner-inner a:hover {
  color: #FFF7ED;
}

.permit-banner-title {
  font-weight: 700;
}

.permit-banner-toggle {
  background: none;
  border: none;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  padding: 0 0 0 10px;
  opacity: 0.8;
  flex-shrink: 0;
}

.permit-banner-toggle:hover {
  opacity: 1;
}

.permit-icon-open {
  display: none !important;
}

.permit-banner.collapsed {
  cursor: pointer;
}

.permit-banner.collapsed .permit-banner-text,
.permit-banner.collapsed a {
  display: none !important;
}

.permit-banner.collapsed .permit-icon-close {
  display: none !important;
}

.permit-banner.collapsed .permit-icon-open {
  display: inline !important;
}

@media (max-width: 576px) {
  .permit-banner-inner span {
    font-size: 12px;
  }
  .permit-banner-inner a {
    font-size: 12px;
  }
}


/*---------------------------------------
  ACTIVITIES (ANGEBOTE)
-----------------------------------------*/

#angebote {
  padding: 0;
  position: relative;
  background: #fff;
}

.activities-header {
  padding: 80px 0 50px;
  text-align: center;
  background: #fff;
}

.activities-header h2 {
  margin-bottom: 10px;
}

.activities-header p {
  max-width: 450px;
  margin: 0 auto;
}

#angebote .section-intro {
  max-width: 550px;
  margin: 0 auto 60px;
  text-align: center;
}

#angebote .section-intro .above-header {
  margin-bottom: 10px;
}

#angebote .section-intro h2 {
  margin-bottom: 20px;
}

#angebote .section-intro p {
  margin-bottom: 30px;
}

/* Activity panels — full-width tall columns */
.activity-panels {
  display: flex;
  width: 100%;
  min-height: 85vh;
}

.activity-panel {
  flex: 1;
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  overflow: hidden;
  transition: flex 0.5s ease;
}

.activity-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(0,0,0,0.7) 100%);
  transition: background 0.4s ease;
}

.activity-panel:hover {
  flex: 1.5;
}

.activity-panel:hover::before {
  background: linear-gradient(transparent 20%, rgba(0,0,0,0.8) 100%);
}

.activity-panel-content {
  position: relative;
  z-index: 2;
  padding: 40px 25px;
  width: 100%;
}

.activity-panel-content h3 {
  color: #fff;
  font-size: 28px;
  margin: 0 0 8px 0;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.activity-panel-content p {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  margin: 0 0 20px 0;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.activity-panel:hover .activity-panel-content p {
  opacity: 1;
  transform: translateY(0);
}

.activity-panel-content .btn3 {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease 0.1s;
}

.activity-panel:hover .activity-panel-content .btn3 {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .activity-panels {
    flex-direction: column;
    min-height: auto;
  }

  .activity-panel {
    min-height: 300px;
  }

  .activity-panel:hover {
    flex: 1;
  }

  .activity-panel-content p,
  .activity-panel-content .btn3 {
    opacity: 1;
    transform: none;
  }

  .activity-panel-content {
    padding: 30px 20px;
  }
}

@media (max-width: 810px) {
  #angebote {
    padding: var(--section-padding-mobile);
  }
}


/*---------------------------------------
  REVIEWS
-----------------------------------------*/

#reviews {
  padding: 80px 0 100px;
  background: #fff;
}

#reviews .section-intro {
  max-width: 500px;
  margin: 0 auto 50px;
  text-align: center;
}

#reviews .section-intro h2 {
  margin-bottom: 5px;
}

#reviews-summary {
  margin-top: 5px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}

.review-card {
  background: #f9f9f9;
  border-radius: 20px;
  padding: 35px 30px 30px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #f0f0f0;
}

.review-card::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 60px;
  font-family: Arial, sans-serif;
  color: var(--orange);
  opacity: 0.15;
  line-height: 1;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.review-stars {
  margin-bottom: 18px;
}

.review-stars i {
  color: var(--orange);
  font-size: 14px;
  margin-right: 1px;
}

.review-text {
  font-size: 15px;
  color: #555;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 10px;
}

.review-readmore {
  background: none;
  border: none;
  color: var(--orange);
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  margin-bottom: 15px;
  transition: color 0.2s ease;
}

.review-readmore:hover {
  color: var(--green-dark);
}

.review-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 18px;
  border-top: 1px solid #eee;
}

.review-author strong {
  font-family: Arial, sans-serif;
  font-size: 15px;
  color: #1a1a1a;
}

.review-author span {
  font-size: 12px;
  color: #aaa;
  letter-spacing: 0.3px;
}

.review-loading {
  grid-column: 1 / -1;
  text-align: center;
  color: #999;
  font-size: 14px;
  padding: 40px;
}

@media (max-width: 1100px) {
  .review-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .review-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }

  #reviews {
    padding: 60px 0 70px;
  }
}


/*---------------------------------------
  GALLERY
-----------------------------------------*/

/*---------------------------------------
  OUR BASE
-----------------------------------------*/

#our-base {
  display: flex;
  min-height: 500px;
  background: #f8f9fa;
  overflow: hidden;
}

.base-image {
  flex: 2.2;
  overflow: hidden;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 70% 100%, 0 100%);
  margin-right: -140px;
}

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

.base-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 60px 60px 80px;
  max-width: 550px;
}

.base-content h2 {
  margin-bottom: 20px;
}

.base-content p {
  margin-bottom: 25px;
}

.base-details {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.base-details li {
  display: flex;
  align-items: center;
  padding: 10px 0;
  color: #555;
  font-size: 15px;
  font-family: Arial, sans-serif;
}

.base-details li i {
  width: 36px;
  height: 36px;
  background: rgba(250, 108, 1, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 14px;
  margin-right: 14px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  #our-base {
    flex-direction: column;
    min-height: auto;
  }

  .base-image {
    height: 300px;
    clip-path: none;
    margin-right: 0;
  }

  .base-content {
    padding: 40px 25px;
    max-width: 100%;
  }
}


/*---------------------------------------
  GALLERY
-----------------------------------------*/

#gallery {
  padding: 80px 0 100px;
  background: #fff;
}

#gallery .section-intro {
  max-width: 500px;
  margin: 0 auto 50px;
  text-align: center;
}

.gallery-swiper-wrap {
  padding: 0 0 20px;
}

.gallerySwiper {
  padding-bottom: 50px;
}

.gallerySwiper .swiper-slide {
  border-radius: 12px;
  overflow: hidden;
  height: 420px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallerySwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallerySwiper .swiper-slide-active {
  transform: scale(1.03);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.gallerySwiper .swiper-button-next,
.gallerySwiper .swiper-button-prev {
  color: var(--orange);
  background: rgba(255, 255, 255, 0.9);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.25s ease;
}

.gallerySwiper .swiper-button-next:hover,
.gallerySwiper .swiper-button-prev:hover {
  background: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transform: scale(1.1);
}

.gallerySwiper .swiper-button-next::after,
.gallerySwiper .swiper-button-prev::after {
  font-size: 18px;
  font-weight: 700;
}

.gallerySwiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #ccc;
  opacity: 1;
  transition: all 0.3s ease;
}

.gallerySwiper .swiper-pagination-bullet-active {
  background: var(--orange);
  width: 28px;
  border-radius: 5px;
}

@media (max-width: 768px) {
  .gallerySwiper .swiper-slide {
    height: 320px;
  }

  .gallerySwiper .swiper-button-next,
  .gallerySwiper .swiper-button-prev {
    display: none;
  }

  #gallery {
    padding: 60px 0 70px;
  }
}

/* Lightbox */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.gallery-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.gallery-lightbox.active .lightbox-img {
  animation: lightbox-zoom 0.3s ease forwards;
}

@keyframes lightbox-zoom {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
  z-index: 10;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  color: #fff;
  transform: scale(1.15);
}

.lightbox-close {
  top: 25px;
  right: 30px;
  font-size: 28px;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-counter {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-family: Arial, sans-serif;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .lightbox-close {
    top: 15px;
    right: 20px;
  }
}


/*---------------------------------------
  BOOKING
-----------------------------------------*/

#booking {
  background-image: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.5)), url('../img/slideshow/8.webp');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: var(--section-padding);
}

#booking h1 {
  color: white;
  font-size: clamp(2rem, 4vw, 3rem);
}

#booking p {
  color: rgba(255,255,255,0.9);
}

#booking .above-header {
  opacity: 1;
}

@media (max-width: 768px) {
  #booking {
    padding: var(--section-padding-mobile);
    background-attachment: scroll;
  }
  .booking-column {
    margin-left: 0 !important;
    margin-top: 30px;
  }
}

/* Booking form card */
.card {
  margin-top: 0;
  background-color: transparent;
  border: none;
}

.card-body {
  background-color: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.booking-column {
  margin-left: 50px;
}

.card-body h4 {
  font-size: 12px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--green);
  border-bottom: none;
}

.card-body h4:first-child {
  margin-top: 0;
}

.card-body .form-group {
  margin-bottom: 16px;
}

.card-body .form-group label {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #555;
  display: block;
}

.card-body .form-control {
  border-radius: 10px;
  border: 2px solid #e8e8e8;
  box-shadow: none;
  padding: 12px 16px;
  font-size: 14px;
  color: #333 !important;
  -webkit-text-fill-color: #333 !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background-color: #fafafa;
}

.card-body .form-control:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(250, 108, 1, 0.15);
  background-color: #fff;
  outline: none;
}

.card-body textarea.form-control {
  height: 90px;
  font-size: 14px;
  resize: none;
}

.card-body .personal-information {
  border-bottom: none;
  padding-bottom: 4px;
}

.card-body .activity-information {
  padding-top: 4px;
}


/*---------------------------------------
  CONTACT
-----------------------------------------*/

#contact {
  position: relative;
  padding: var(--section-padding);
  background: #f8f9fa;
}

#contact .section-intro {
  max-width: 650px;
  margin: 0 auto 50px;
  text-align: center;
}

#contact .section-intro h2 {
  margin-bottom: 20px;
}

.contact-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 5px 30px rgba(0,0,0,0.08);
  height: 100%;
}

.contact-card h3 {
  color: #1a1a1a;
  font-size: 22px;
  margin-bottom: 25px;
}

.contact-card .contact-item {
  display: flex;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}

.contact-card .contact-item:last-child {
  border-bottom: none;
}

.contact-card .contact-item i {
  width: 40px;
  height: 40px;
  background: rgba(250, 108, 1, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 16px;
  margin-right: 15px;
  flex-shrink: 0;
}

.contact-card .contact-item a {
  font-size: 15px;
  color: #555;
  line-height: 1.4;
}

.contact-card .contact-item a:hover {
  color: var(--orange);
}

.contact-card iframe {
  border-radius: 12px;
  margin-top: 15px;
  width: 100%;
  height: 200px;
}

#contact form {
  padding: 0;
}

#contact .form-group {
  margin-bottom: 16px;
}

#contact .form-group label {
  font-size: 13px;
  font-weight: 600;
  color: #555;
  margin-bottom: 6px;
}

#contact .form-control {
  border-radius: 10px;
  border: 2px solid #e8e8e8;
  padding: 12px 16px;
  font-size: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background-color: #fafafa;
}

#contact .form-control:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(250, 108, 1, 0.15);
  outline: none;
}

@media (max-width: 810px) {
  #contact {
    padding: var(--section-padding-mobile);
  }
}


/*---------------------------------------
  PARTNERS
-----------------------------------------*/

#partner {
  padding: var(--section-padding);
  background-color: #1a1a1a;
  position: relative;
}

#partner h2 {
  color: white;
  margin-bottom: 20px;
}

#partner p {
  color: rgba(255,255,255,0.85);
  max-width: 700px;
  margin: 0 auto 50px;
}

#partner .partner-logo {
  background: rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 30px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
}

#partner .partner-logo:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-5px);
}

#partner .partner-logo img {
  max-height: 80px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

#partner .partner-logo:hover img {
  opacity: 1;
}

@media (max-width: 810px) {
  #partner {
    padding: var(--section-padding-mobile);
  }
}


/*---------------------------------------
  FOOTER
-----------------------------------------*/

footer {
  background: #1a1a1a;
  color: #ccc;
  padding: 4rem 0 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

/* Top section */
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

/* Brand */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-brand-title {
  color: white;
  font-family: Arial, sans-serif;
  font-size: 14px;
  letter-spacing: 2px;
  margin: 0;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  max-width: 300px;
  margin: 0;
}

/* Nav columns */
.footer-nav-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-nav-col h6 {
  font-family: Arial, sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.2rem;
}

.footer-nav-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-nav-col ul li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-nav-col ul li i {
  width: 20px;
  color: rgba(255, 255, 255, 0.3);
}

.footer-nav-col ul li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s ease;
  text-decoration: none;
}

.footer-nav-col ul li a:hover {
  color: var(--orange);
}

/* Divider */
.footer-divider {
  border: none;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 0 2rem;
}

/* Bottom section */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

/* Social links */
.footer-social {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  transition: all 0.2s ease;
  text-decoration: none;
}

.footer-social a:hover {
  background: var(--orange);
  color: white;
  transform: translateY(-2px);
}

/* Impressum */
.footer-impressum {
  text-align: center;
  flex: 1;
}

.footer-impressum p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin: 0.15rem 0;
  line-height: 1.5;
}

/* Copyright */
.footer-copyright p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  margin: 0;
  white-space: nowrap;
}

/* Footer Mobile */
@media (max-width: 768px) {
  footer {
    padding: 3rem 0 2rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-nav-columns {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .footer-impressum {
    order: 1;
  }

  .footer-social {
    order: 0;
  }

  .footer-copyright {
    order: 2;
  }
}

@media (max-width: 400px) {
  .footer-nav-columns {
    grid-template-columns: 1fr 1fr;
  }
}


/*---------------------------------------
  FLOATING ACTION BUTTONS
-----------------------------------------*/

.button-container {
  display: flex;
  flex-direction: column;
  position: fixed;
  right: 25px;
  bottom: 25px;
  z-index: 50;
  gap: 10px;
}

.float-button {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  text-decoration: none;
}

.float-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.float-button i {
  font-size: 24px;
  color: white;
}

.float-button span {
  display: none;
}

.phone-btn {
  background-color: #333;
}


/*---------------------------------------
  MISC / UTILITY IMAGES
-----------------------------------------*/

.img-info {
  width: 10vw;
  object-fit: cover;
}

.card-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
}

.tag {
  background-color: #f2f2f2;
  border-radius: 10px;
  padding: 5px 10px;
  margin-right: 10px;
  margin-bottom: 10px;
}

.card-description h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.card-description p {
  margin-bottom: 10px;
}

.btn-image {
  width: 50%;
}

.images {
  width: 50vw;
}


/*---------------------------------------
  HERO VARIANTS (subpages)
-----------------------------------------*/

#thankyou {
  position: relative;
  background-image: url('../img/bg-thank-you.webp');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 100vh;
}

.white {
  color: white;
}

.height {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60vh;
}

#slideshow {
  margin-top: 150px;
  min-height: 100vh;
}

.waves {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  position: absolute;
  top: 0;
  width: 100vw;
}

.waves3 {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  height: 7.5vh;
  position: absolute;
  top: 0;
  width: 100vw;
}

.waves2 {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  position: absolute;
  bottom: 0;
  height: 15vw;
  width: 100vw;
}

#hero-safety {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../img/hero/hero-safety.webp');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 100vh;
}

#hero-frankreich {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../img/hero/hero-france.webp');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 100vh;
}

#hero-ostereich {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../img/hero/hero-austria.webp');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 100vh;
}

#photo {
  background-image: linear-gradient(#00000063, rgba(0, 0, 0, 0.393)), url('../img/slideshow/8.webp');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  padding-top: 100px;
}

#info {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../img/parralax/parralax-fort.webp');
  min-height: 100vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

#info-saf {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../img/parralax/parralex-safety.webp');
  min-height: 100vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

#info-an {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../img/parralax/parralax-an.webp');
  min-height: 100vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

#info-river {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../img/parralax/parralax-river.webp');
  min-height: 100vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

#info-fa {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../img/parralax/parralax-france.webp');
  min-height: 100vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

#info-privat {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../img/parralax/parralax-fort.webp');
  min-height: 100vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

#info-os {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../img/parralax/parralax-austria.webp');
  min-height: 100vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

#vorauszetsen {
  position: relative;
  min-height: 100vh;
  background: var(--mood-color);
}

#courseview {
  position: relative;
  margin-top: 100px;
}

#wer {
  margin-top: 100px;
  min-height: 100vh;
  background: transparent;
}

#hero-fort {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/sit-on-top/sit-on-top1(1).webp");
  min-height: 100vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero-an {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/hero/hero-anfanger.webp");
  min-height: 100vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

#hero-raft {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/slideshow/5.webp");
  min-height: 100vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero-canyoning {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/canyoning/canyoning2.webp");
  min-height: 100vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero-river {
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("../img/hero/hero-river.webp");
  min-height: 100vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

#hero-privat {
  background-image: linear-gradient(rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.19)), url("../img/hero/hero-privat.webp");
  min-height: 100vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}


/*---------------------------------------
  ANIMATIONS
-----------------------------------------*/

.jumping-dots span {
  display: inline;
  animation: slide-in 2s infinite;
}

.jumping-dots .dot-1 { animation-delay: 200ms; }
.jumping-dots .dot-2 { animation-delay: 400ms; }
.jumping-dots .dot-3 { animation-delay: 800ms; }

@keyframes slide-in {
  20% { opacity: 1; }
  80% { opacity: 0; }
}

.scroll-arrow {
  position: fixed;
  bottom: 20px;
  right: 20px;
  opacity: 1;
  transition: opacity 5s ease-out;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-30px); }
  60% { transform: translateY(-15px); }
}

.scroll-arrow:hover {
  animation-play-state: paused;
}

@keyframes hide-arrow {
  0% { transform: scale(1); }
  50% { transform: scale(1.5); opacity: 1; }
  100% { transform: scale(0); opacity: 0; }
}

.scroll-arrow.hide {
  animation: hide-arrow 1s ease forwards;
}

.hero-text {
  font-style: bold;
  font-family: Arial, sans-serif;
  font-size: 2.5vw;
}

.orange {
  color: var(--mood-color);
}


/*---------------------------------------
  SLIDER (CAROUSEL)
-----------------------------------------*/

.carousel-images {
  position: relative;
  overflow: hidden;
}

.carousel-images img {
  display: block;
  width: 100%;
  height: auto;
}

.carousel {
  position: relative;
}

.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  outline: none;
  font-size: 24px;
  cursor: pointer;
}

.previous {
  left: 0;
  padding: 16px;
  z-index: 50;
}

.next {
  right: 0;
  padding: 16px;
  z-index: 50;
}

.header2 {
  color: var(--mood-color);
  font-size: 120px;
}

.header5 {
  color: var(--dark-color);
}

.header6 {
  color: var(--mood-color);
}

@media (max-width: 767px) {
  .header2 { font-size: 6.5vw; margin-top: auto; }
  .header3 { font-size: 7.5vw; }
  .header4 { font-size: 6.5vw; margin-top: auto; }
  .header5 { font-size: 6.5vw; color: var(--dark-color); margin-top: auto; }
}

.card-text-orange {
  color: var(--mood-color);
}

.card-text-dark {
  color: var(--dark-color);
}


/*---------------------------------------
  SLIDER COMPONENT
-----------------------------------------*/

.slider-container {
  display: block;
  height: 270px;
  width: auto;
  margin: 0 auto;
  position: relative;
  max-width: 100vw;
}

.slider-container .arrow-left {
  position: absolute;
  left: 0%;
  bottom: -125%;
  transform: translate3d(0, -50%, 0);
  color: var(--text-color);
  font-size: 28px;
  cursor: pointer;
  z-index: 9;
  border-top: 15px solid transparent;
  border-right: 30px solid var(--text-color);
  border-bottom: 15px solid transparent;
}

.slider-container .arrow-right {
  position: absolute;
  right: 0%;
  bottom: -125%;
  transform: translate3d(0, -50%, 0);
  color: var(--text-color);
  font-size: 28px;
  cursor: pointer;
  z-index: 9;
  border-top: 15px solid transparent;
  border-left: 30px solid var(--text-color);
  border-bottom: 15px solid transparent;
}

@media (max-width: 1552px) {
  .slider-container .arrow-left { bottom: -25%; }
  .slider-container .arrow-right { bottom: -25%; }
}

.slider-container .dots {
  display: inline-block;
  width: 100%;
  text-align: center;
  margin: 30px 0;
  user-select: none;
}

.slider-container .dots span {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 2px;
  cursor: pointer;
  user-select: none;
  padding: 10px 0;
  position: relative;
}

.slider-container .dots span:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background-color: var(--text-color);
  opacity: 0.6;
}

.slider-container .slider {
  display: block;
  width: 40em;
  height: 100%;
  margin: 0 auto;
  position: relative;
  text-align: center;
  line-height: 270px;
  color: var(--text-color);
}

.slider-container .slider .slide {
  display: inline-block;
  min-width: 10vh;
  height: 270px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0) scale3d(0.4, 0.4, 1);
  transition: transform 0.3s ease-in-out 0s, z-index 0.2s ease-in-out 0.1s;
}

.slider-container .slider .slide.prev-2 {
  transform: translate3d(-105%, -50%, 0) scale3d(0.4, 0.4, 1);
  z-index: 1;
  opacity: 0.5;
}
.slider-container .slider .slide.prev-1 {
  transform: translate3d(-85%, -50%, 0) scale3d(0.6, 0.6, 1);
  z-index: 2;
}
.slider-container .slider .slide.next-1 {
  z-index: 2;
  transform: translate3d(-15%, -50%, 0) scale3d(0.6, 0.6, 1);
}
.slider-container .slider .slide.next-2 {
  z-index: 1;
  transform: translate3d(5%, -50%, 0) scale3d(0.4, 0.4, 1);
  opacity: 0.5;
}
.slider-container .slider .slide.active {
  z-index: 3;
  transform: translate3d(-50%, -50%, 0) scale3d(1, 1, 1);
  box-shadow: 0px 5px 15px 3px rgba(0, 0, 0, 0.3);
}

.slide a img {
  width: 750px;
}

@media (max-width: 1560px) {
  .slide a img {
    width: 500px;
    height: 250px;
  }
}

@media (max-width: 768px) {
  .slider-container .dots span {
    width: 23px;
    margin-bottom: 300px;
  }
}

.angeboten {
  text-align: center;
}


/*---------------------------------------
  COURSE TABLE / FILTERS
-----------------------------------------*/

.containerCourses {
  overflow: hidden;
  padding: 0px;
  width: 100vw;
}

.overview-button {
  background: transparent;
  border: transparent;
  width: 100%;
}

.overview-img {
  width: 100%;
}

.filterDiv {
  float: left;
  line-height: 10px;
  text-align: center;
  margin: 0px;
  display: none;
  transition: all .2s ease-in-out;
}

.show {
  display: block;
}

.filterDiv:hover {
  cursor: pointer;
  transform: scale(0.75);
}


/*---------------------------------------
  SUBSCRIBE
-----------------------------------------*/

.subscribe {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--text-color);
  width: 945px;
  height: 474px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(61, 159, 255, 0.2);
}

.subscribe__title {
  font-weight: bold;
  font-size: 26px;
  margin-bottom: 18px;
}

.subscribe__copy {
  max-width: 450px;
  text-align: center;
  margin-bottom: 53px;
  line-height: 1.5;
}

.form-row {
  margin-bottom: 25px;
}

.form__email {
  padding: 20px 25px;
  border-radius: 5px;
  border: 1px solid #CAD3DB;
  width: 431px;
  font-size: 18px;
  color: #0F121F;
}

.form__email:focus {
  outline: 1px solid #3D9FFF;
}

.form__button {
  background: transparent;
  border: 5px solid var(--mood-color);
  padding: 10px;
  width: 244px;
  height: 65px;
  border-radius: 5px;
  font-size: 18px;
  color: var(--text-color);
}

.form__button:hover {
  box-shadow: 0 10px 20px var(--mood-color);
}


/*---------------------------------------
  MODAL
-----------------------------------------*/

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  min-height: 100vh;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
}

.modal-content {
  background-color: var(--text-color);
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: var(--dark-color);
  text-decoration: none;
  cursor: pointer;
}

video {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

#nav {
  transition: top 0.3s;
  position: fixed;
  z-index: 10;
}

#myBtn {
  border: none;
  text-decoration: none;
  position: fixed;
  padding: 10px 15px;
  bottom: 100px;
  right: 30px;
  color: #fff;
  background-color: var(--dark-color);
  border: 2px solid var(--mood-color);
  border-radius: 5px;
  z-index: 100;
  font-size: 17px;
}

#myBtn:hover {
  background-color: var(--mood-color);
}


/*---------------------------------------
  DETAILS / FAQ
-----------------------------------------*/

details {
  width: 100%;
  min-height: 5px;
  max-width: 700px;
  padding: 30px 50px 30px 30px;
  margin-top: 50px;
  position: relative;
  text-align: center;
  font-size: 22px;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 15px;
  box-sizing: border-box;
  transition: all 0.3s ease;
  background: var(--mood-color);
}

details + details {
  margin-top: 30px;
}

details:hover {
  background-color: #31A4C9;
}

details[open] {
  background-color: var(--dark-color);
  border: 3px solid #31A4C9;
}

details[open] p {
  color: var(--text-color);
  font-weight: 300;
}

details p {
  color: var(--dark-color);
  font-weight: 300;
}

summary {
  fill: var(--text-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  cursor: pointer;
  color: var(--text-color);
}

summary:focus {
  outline: none;
}

summary::-webkit-details-marker {
  display: none;
}

.control-icon {
  fill: var(--dark-color);
  transition: .3s ease;
  pointer-events: none;
}

.control-icon-close {
  display: none;
}

details[open] .control-icon-close {
  fill: #31A4C9;
  display: initial;
}

details[open] .control-icon-expand {
  fill: #31A4C9;
  display: none;
}


/*---------------------------------------
  PHOTO WALL
-----------------------------------------*/

.col-text {
  padding: 0;
  margin: 50px;
  text-align: center;
  width: 500px;
}

.img-kurse {
  width: 400px;
  height: 367px;
  border-radius: 10px;
  padding-left: 7.5px;
}

#photos {
  margin-top: 150px;
  width: 100vw;
  overflow: hidden;
}

#photos img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 1200px;
  margin-top: 9px;
}

@media (min-width: 500px) {
  #photos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 6px;
    margin-top: 0;
  }
}

@media (min-width: 900px) {
  #photos {
    grid-template-columns: repeat(3, 1fr);
  }
}


/*---------------------------------------
  CARDS (ORANGE/BLACK)
-----------------------------------------*/

form {
  padding: 0;
}

#orange-card {
  border: 5px solid var(--green);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: background-image 4s ease-in-out;
  padding: 25px;
  height: 575px;
  border-radius: 0px 25px 25px 0px;
}

#orange-card2 {
  background-color: var(--green);
  border: 5px solid var(--green);
  padding: 25px;
  border-radius: 0px 25px 25px 0px;
}

.black-card {
  border: 5px solid var(--green);
  padding: 25px;
  border-radius: 25px 0px 0px 25px;
}

@media (max-width: 991px) {
  #orange-card { border-radius: 25px; }
  #orange-card2 { border-radius: 0 0 25px 25px; }
  .black-card { border-radius: 25px 25px 0 0; }
}


/*---------------------------------------
  FLAGS / LANGUAGE
-----------------------------------------*/

.flag {
  width: 2.5vw;
  top: -75px;
  right: 85%;
  display: inline-block;
  position: relative;
  margin: 15px;
}

.flag-menu {
  left: 200%;
  position: relative;
  width: 10vw;
}

@media (min-width: 900px) {
  .flag-menu { display: none; }
}

@media (max-width: 900px) {
  .flag { display: none; }
}

.dropdown {
  padding-top: 15px;
  position: relative;
  display: inline-block;
}

.dropbtn {
  background-color: transparent;
  border: none;
}

.dropdown-content {
  display: none;
  position: absolute;
  z-index: 1;
}

.dropdown-content a {
  display: block;
  padding: 10px;
}

.dropdown-content a img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
  vertical-align: middle;
}

.dropdown:hover .dropdown-content {
  display: block;
}


/*---------------------------------------
  COOKIE CONSENT
-----------------------------------------*/

#cookie-consent {
  text-align: center;
  border-radius: 16px;
  display: none;
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  z-index: 100;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 350px;
  padding: 25px;
}

@media (max-width: 1000px) {
  #cookie-consent {
    width: calc(100vw - 40px);
    right: 20px;
  }
}

#cookie-consent p {
  padding: 0;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
}

#cookie-consent button {
  display: inline-block;
  margin: 8px 4px 0;
  background-color: var(--green);
  border: none;
  border-radius: 8px;
  text-align: center;
  padding: 10px 20px;
  color: white;
  font-family: Arial, sans-serif;
  cursor: pointer;
  transition: all 0.2s ease;
}

#cookie-consent button:hover {
  background-color: var(--green-dark);
}

.cookie-text {
  text-align: center;
  font-size: 17.5px;
}

.cookie-header {
  font-family: Arial, sans-serif;
  text-align: center;
  font-size: 20px;
}


/*---------------------------------------
  MISC LAYOUT
-----------------------------------------*/

.setting-width {
  width: 100%;
}

.left-container {
  padding-top: 50px;
  float: left;
  width: 50%;
}

.right-container {
  padding-top: 50px;
  padding-right: 25px;
}

.image-grid {
  display: flex;
  flex-wrap: wrap;
  margin: -5px;
}

.image-grid img {
  width: 100%;
  height: auto;
  margin: 5px;
  box-sizing: border-box;
}

.container-row {
  border: #3D9FFF;
}

.hey {
  color: orange;
}

#contactForm {
  width: 100vw;
}

.notice {
  width: 250px;
}

.header-top-2 {
  padding-top: 0;
  margin-bottom: 15px;
}

@media (min-width: 767px) {
  .hide { display: none; }
}

.slider-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  opacity: 0;
  align-items: center;
  justify-content: center;
  z-index: 100;
}

.slider:hover .slider-overlay {
  opacity: 1;
}

.slider-overlay p {
  color: white;
  font-size: 36px;
}

.technic-item {
  font-family: Arial, sans-serif;
  font-size: 21px;
  color: white;
  padding: 2.5px;
  float: left;
}

.technic-list {
  margin-top: 25px;
  margin-left: 20%;
}

.text-stroke {
  text-decoration: underline;
  text-decoration-color: #0096d1;
  -webkit-text-stroke: 4.5px #0096d1;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.887);
}

.text-stroke3 {
  text-decoration-color: var(--mood-color);
  -webkit-text-stroke: 4px var(--mood-color);
  -webkit-text-fill-color: rgba(0, 0, 0, 0.339);
}

@media (max-width: 767px) {
  .text-stroke {
    -webkit-text-stroke: 2px #0096d1;
  }
}

.text-stroke2 {
  text-decoration: underline;
  text-decoration-color: var(--dark-color);
  -webkit-text-stroke: 4px var(--dark-color);
  -webkit-text-fill-color: rgba(0, 0, 0, 0.339);
}

.river-list {
  position: relative;
  align-items: center;
  font-family: Arial, sans-serif;
  color: var(--text-color);
}

.card-item {
  font-size: 25px;
}

.card-item:hover {
  color: #31A4C9;
  font-size: 25px;
}

.btn-image {
  width: 25vw;
  padding: 50px;
}

.numberCircle {
  border-radius: 50%;
  width: 36px;
  height: 36px;
  padding: 8px;
  background: #fff;
  border: 2px solid #666;
  color: #666;
  text-align: center;
  font: 32px Arial, sans-serif;
}

.fab {
  color: var(--green);
  font-size: 48px;
}

.fab:hover {
  color: #007bff;
}

.text-reset {
  color: var(--green);
  font-size: 16px;
}

.text-uppercase {
  font-family: Arial, sans-serif;
}

#activity::placeholder {
  font-family: Arial, sans-serif;
}

.datepicker .form-control,
.timepicker .form-control,
.datetimepicker .form-control {
  background: #fff;
}

.datepicker {
  border-radius: 8px;
  border: 1px solid #ced4da;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.datepicker table {
  font-family: Arial, sans-serif;
}

.datepicker th,
.datepicker td {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  padding: 8px;
}

.datepicker th {
  text-align: center;
  font-weight: 700;
  color: #333;
  background-color: #f8f8f8;
  border-bottom: 1px solid #eee;
}

.datepicker td {
  text-align: center;
  color: #333;
  background-color: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 4px;
}

.datepicker td:hover,
.datepicker td:focus {
  background-color: rgba(250, 108, 1, 0.1);
  cursor: pointer;
}

.datepicker .today {
  font-weight: 700;
  color: #fff;
  background-color: var(--orange);
  border-color: var(--orange);
}

.datepicker .disabled,
.datepicker .disabled:hover,
.datepicker .disabled:focus {
  color: #ccc;
  background-color: transparent;
  border-color: transparent;
  cursor: default;
}


/*---------------------------------------
  HIDE SLIDER ON MOBILE
-----------------------------------------*/

@media (max-width: 767px) {
  .slider-container { display: none; }
  .flags { display: none; }
}

@media (min-width: 767px) {
  div .dropdown { display: none; }
}

@media screen and (max-width: 767px) {
  #myBtnContainer { display: none; }
  select { display: block; }
}

@media screen and (min-width: 768px) {
  #myBtnContainer { display: block; }
  select { display: none; }
}


/*---------------------------------------
  RESPONSIVE OVERRIDES
-----------------------------------------*/

@media (max-width: 810px) {
  .move-down {
    margin-top: 150px;
  }
  .container {
    margin: 0;
  }
  .setting-allignment {
    text-align: left;
  }
  .technic-item {
    font-size: 18px;
    line-height: 27px;
  }
  .mission_text {
    font-size: 18px;
    color: var(--text-color);
    line-height: 27px;
  }
  .header-top {
    padding-top: 25vw;
  }
  .header-top-2 {
    padding-top: 15vw;
  }
}

@media (max-width: 900px) {
  .form__email {
    width: 75vw;
  }
}

@media (max-width: 572px) {
  .topnav a.icon {
    left: 75%;
    top: 5.5px;
  }
}


/*---------------------------------------
  LIST STYLES (CONTACT)
-----------------------------------------*/

ul {
  list-style: none;
  padding: 0;
}

li {
  display: flex;
  align-items: center;
  color: var(--dark-color);
}

li i {
  font-size: 1.2em;
  margin: 0.75em;
}

li a {
  font-size: 15px;
  color: #555;
  line-height: 1.4;
}

li a:hover {
  color: var(--orange);
}

.btn-social-icon {
  color: var(--text-color);
  margin: 50px;
}

.scroll-arrow-2 {
  position: relative;
  left: 250px;
  opacity: 1;
  transition: opacity 5s ease-out;
  animation: bounce 2s infinite;
}
