/* ---------------------
   Reset & Grundlagen
---------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Poppins', sans-serif;
  background: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

.backgroundimg {
  background: url('/images/start.webp') center center / cover no-repeat;
  width: 100%;
  min-height: 60vh;
}

@media (max-width: 770px) {
  .backgroundimg {
    min-height: 40vh; /* mehr Platz = besserer Bildausschnitt */
    background-position: 18% center; /* betont linken Bildbereich */
    background-size: cover;
  }
}



/*
@media (max-width: 430px) {
.backgroundimg {
  background: url('/images/start-mobile.webp') center center / cover no-repeat;
  width: 100%;
  min-height: 60vh;
}
}




*/




a {
  text-decoration: none;
  color: inherit;
}

/* ---------------------
   Header & Navigation
---------------------- */


/*-Header */
header {
     background-color: rgba(50, 50, 50, 0.6); /* transparenter Hintergrund */
  backdrop-filter: blur(4px); /* optional für Glassmorphismus */
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease-in-out;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* Logo */
.logo img {
    width: 150px;
    margin-top: 5px;
}

.dsvgo{
    width: 80%;
    margin: 0 auto;
}

.dsvgoimpressum{
    padding-left: 10%;
    width: 60%;
    margin: 0 auto;
}


/* Navigation */
nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li {

    bottom: 10px;

}

#nav-menu{

height: max-content;
margin-top: 0;
    padding-top: 0;
}

nav ul li a {
    color: white;
    font-size: 16px;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background 0.3s, color 0.3s, transform 0.2s;
    text-decoration: none;
    display: flex;
    align-items: center;
}

nav ul li a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

nav ul li a i {
    margin-right: 8px;
    transition: transform 0.3s;
}

nav ul li a:hover i {
    transform: rotate(10deg);
}


.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: white;
    position: absolute;
    top: 15px;
    right: 20px;
    z-index: 1500;
}

.sticker{

    max-width: 150px;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }


    nav {
        position: absolute;
        top: 88px;
        left: 0;
        width: 100%;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
        display: none;
        flex-direction: column;
        border-radius: 5px;
        transform: translateY(-10px);
        opacity: 0;
        transition: transform 0.3s ease-out, opacity 0.3s ease-out;

          background-color: rgba(50, 50, 50, 0.9);
  backdrop-filter: blur(4px);
    }

    nav ul {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 10px 0;
    }

    nav ul li {
        text-align: center;
        margin: 10px 0;
    }

    nav ul li a {
        font-size: 18px;
        padding: 10px 0;
        display: block;
        width: 100%;
    }


    nav.active {
        display: flex;
        transform: translateY(0);
        opacity: 1;
    }
}




/* ---------------------
   Hero Section
---------------------- */
.hero {
  color: white;
  text-align: center;
  padding: 60px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40vh;
  box-sizing: border-box;
  position: relative;
}


@media (max-width: 600px) {
  .hero {
    min-height: 30vh; /* auf Smartphones noch kompakter */
    padding: 40px 10px;
    background-position: center top;
  }
}



.hero-content {
  max-width: 700px;
  margin: 1rem auto;
  background-color: rgba(50, 50, 50, 0.5); /* dezenter dunkler Hintergrund mit Transparenz */
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); /* leichter Schatten für Tiefe */
  color: #fff; /* weiße Schrift auf dunklem Hintergrund */
  transition: all 0.3s ease-in-out;
}

.hero h1 {
  font-size: 2rem; /* ca. 32px */
  margin-bottom: 1rem;
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 1.4rem; /* ca. 24px für kleinere Bildschirme */
    text-align: center; /* optional: zentriert sieht oft besser aus */
  }
}


.hero-tagline {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.cta-button {
  display: inline-block;
  background: white;
  color: #007b5f;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 5px;
  transition: background 0.3s;
}
.link{
    color: #007b5f;
}
.cta-button:hover {
  background: #e0f5ef;
}

/* ---------------------
   Sektionen
---------------------- */
section {
  padding: 60px 20px;
}
.section-inner {
  max-width: 1100px;
  margin: auto;
}

/* ---------------------
   Touren Section
---------------------- */
/* ---------------------
   Touren Section
---------------------- */
.tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.tour-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.3s;

  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Inhalt verteilt, Footer unten */
  height: 100%; /* falls notwendig, z.B. in Grid */
  position: relative; /* für Slider Buttons */
}

.tour-card:hover {
  transform: translateY(-5px);
}

/* ---------------------
   Image Slider Styles
---------------------- */
.tour-card .image-slider {
  position: relative;
  width: 100%;
  max-height: 475px; /* Höhe anpassen je nach Bedarf */
  overflow: hidden;
  border-radius: 10px 10px 0 0; /* Abrundung oben passend zur Karte */
}

.tour-card .image-slider img {
  width: 100%;
  height: 475px; /* Fixe Höhe für konsistente Kartengröße */
  object-fit: cover; /* Bild proportional und ausgefüllt */
  display: none;
  user-select: none;
}

.tour-card .image-slider img.active {
  display: block;
}

/* Slider Buttons */
.tour-card .image-slider button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 123, 95, 0.6);
  border: none;
  color: white;
  font-size: 24px;
  padding: 6px 12px;
  cursor: pointer;
  border-radius: 50%;
  user-select: none;
  transition: background-color 0.3s;
  z-index: 10;
}

.tour-card .image-slider button:hover {
  background-color: rgba(0, 123, 95, 0.9);
}

.tour-card .image-slider .prev {
  left: 10px;
}

.tour-card .image-slider .next {
  right: 10px;
}

/* ---------------------
   Tour Card Content
---------------------- */
.tour-card h3 {
  font-size: 1.2rem;
  color: #007b5f;
  margin: 1rem;
}

.tour-description {
  color: #555;
  font-size: 0.95rem;
  margin: 0 1rem 1rem;
}

.tour-info {
  list-style: none;
  display: flex;
  justify-content: space-around;
  padding: 0.75rem 1rem;
  background: #f4f4f4;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  margin-top: auto; /* schiebt die tour-info ganz nach unten */
  color: #333;
}

.tour-info li {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.9rem;
}

.tour-card .cta-button {
  margin: 1rem;
  width: calc(100% - 2rem);
  text-align: center;
  background-color: #007b5f;
  color: white;
  padding: 0.5rem 0;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s;
}

.tour-card .cta-button:hover {
  background-color: #00583f;
}

.tour-card img {
  width: 100%;        /* Bild füllt Breite der Karte */
  max-height: 475px;  
  object-fit: cover;  /* Bild proportional beschneiden, füllt Container */
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  display: block;
}


/* ---------------------
   Kontaktformular
---------------------- */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.contact-form label {
  font-weight: 600;
}
.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: inherit;
}
.contact-form textarea {
  min-height: 120px;
}
.contact-form button {
  background: #007b5f;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}
.contact-form button:hover {
  background: #005f4b;
}
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}
.contact-form a {
  color: #007b5f;
  text-decoration: underline;
}

/* ---------------------
   Footer
---------------------- */
footer {
  background: #222;
  color: white;
  padding: 30px 20px;
  text-align: center;
}
.footer-inner {
  max-width: 1000px;
  margin: auto;
}
footer nav a {
  color: #aaa;
  margin: 0 10px;
  font-size: 0.9rem;
}
footer nav a:hover {
  color: white;
}













.logo img {
    width: 150px;
    margin-top: 5px;
}

.dsvgo{
    width: 80%;
    margin: 0 auto;
}

.dsvgoimpressum{
    padding-left: 10%;
    width: 60%;
    margin: 0 auto;
}

.custom-tour-info {
  background-color: #f0fdf9;
  padding: 1.5rem;
  margin: 2rem auto;
  max-width: 800px;
  border-radius: 8px;
  text-align: center;
}

.custom-tour-info h3 {
  color: #007b5f;
  margin-bottom: 0.5rem;
}

.custom-tour-info p {
  color: #444;
  font-size: 1rem;
  line-height: 1.5;
}
@media (max-width: 600px) {
  .custom-tour-info {
    padding: 1rem;
  }
}



/* Section*/

.section-about {
  background-color: #ffffff;
  padding: 4rem 1.5rem;
}

.section-about .section-inner {
  max-width: 800px;
  margin: 0 auto;
  background: #fdfdfd;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08); /* schwebender Effekt */
  text-align: center;
}

.section-about h2 {
  font-size: 1.7rem;
  margin-bottom: 1rem;
  color: #222;
}

.section-about p {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.6;
}


.section-pickup {
  background-color: #fff;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  max-width: 1100px;
  margin: 2rem auto;
}

#iframe{
  width: 100%;
  max-width: 600px;
}


#rikscha{
  max-width: 600px;
  border-radius: 7px;
  width: 100%;
  margin: 0 auto;
}




/* gallery */

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  padding: 10px;
}

.gallery img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* gallery */









/*textcontainer*/

.textcontainer{


  margin-top: 20px;
	background: white;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 2px 6px rgba(0,0,0,0.1);
width: 100%;
  max-width: 1100px;
  margin: 0 auto;
padding-top: 25px;
  padding-bottom: 25px;

}

.textnormal{

    font-size: 1.2rem;
}
.textcontainer p{
  font-size: 1.2rem;
  color: #555;
  line-height: 1.6;
}

.textbig{
width: 80%;
  margin: 0 auto;
}


/* RESPONSE */

#response-message {
    display: none;
    padding: 15px;
    margin-top: 15px;
    border-radius: 5px;
    font-size: 16px;
}




#response-message.visible {
    display: block;
}
#response-message.success {
    background-color: #d4edda;
    color: #155724;
}
#response-message.error {
    background-color: #f8d7da;
    color: #721c24;
}