@import url("../webfonts/fonts.css");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #ffffff;
  color: #1e1e1e;
  scroll-behavior: smooth;
  line-height: 1.5;
}

/* Scriptfont für H2 und besondere Titel */
h1, h2, .script-title {
  font-family: 'Ananda', cursive;
  font-weight: 400;
  letter-spacing: 1px;
}

h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #80407b;
  position: relative;
  display: inline-block;
}

h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 70px;
  height: 3px;
  background: #ffe467;
  border-radius: 5px;
}

.section {
  padding: 5rem 2rem;
  transition: all 0.3s;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* NAVIGATION – fix, shrink beim Scrollen */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 1rem 2rem;
}

.navbar.scrolled {
  padding: 0.5rem 2rem;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo-text {
  font-family: 'Ananda', cursive;
  font-size: 1.8rem;
  font-weight: 500;
  color: #80407b;
  transition: 0.2s;
}

.navbar.scrolled .logo-text {
  font-size: 1.5rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  font-weight: 600;
  color: #2c2c2c;
  transition: 0.2s;
  font-size: 1rem;
}

.nav-links a:hover {
  color: #80407b;
}

/* HAMBURGER MENU (mobile) */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #80407b;
}

/* HEADER */
.hero {
  margin-top: 70px;
  position: relative;
  width: 100%;
  background: #f6f3ed;
}

.hero-bg {
  width: 100%;
  height: 85vh;
  min-height: 550px;
  background-image: url('../images/hero.jpg');
  background-size: cover;
  background-position: center 40%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Overlay für bessere Lesbarkeit */
.hero-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

/* Willkommenstext mittig auf dem Headerbild */
.hero-welcome {
  position: relative;
  z-index: 5;
  max-width: 850px;
  width: 90%;
  background: rgba(255, 248, 235, 0.8);
  backdrop-filter: blur(3px);
  border-radius: 48px;
  padding: 2rem 2.5rem;
  text-align: center;
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 228, 103, 0.4);
  transition: transform 0.3s ease;
}

.hero-welcome h1 {
  font-size: 3.4rem;
  color: #80407b;
  margin-bottom: 0.8rem;
  font-family: 'Great Vibes', cursive;
}

.hero-welcome p {
  font-size: 1.2rem;
  color: #2c2a27;
  font-weight: 500;
}

/* BILDFENSTER / KACHELN - absolut positioniert, willkürlich verteilt */
.image-tiles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none; /* Damit Klicks auf den Text darunter möglich sind */
}

.tile {
	position: absolute;
	width: 40vw;
	height: 40vw;
	min-width: 120px;
	min-height: 120px;
	max-width: 500px;
	max-height: 500px;
	overflow: hidden;
	cursor: pointer;
	pointer-events: auto; /* Hover-Effekt wieder aktivieren */
	transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
	border: 12px solid #FFFFFF;
}

.tile-logo {
  position: absolute;
  width: 40vw;
  height: 40vw;
  min-width: 120px;
  min-height: 120px;
  max-width: 300px;
  max-height: 300px;
  overflow: hidden;
  cursor: pointer;
  pointer-events: auto; /* Hover-Effekt wieder aktivieren */
  transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

/* Mouseover: Kachel wird langsam größer */
.tile-logo:hover {
  transform: scale(1.15);
  z-index: 10;
}

.tile img, .tile-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Mouseover: Kachel wird langsam größer (nur für normale tiles) */
.tile:hover {
  transform: scale(1.15);
  z-index: 10;
}

/* Logo-Kachel: mittig über dem Willkommenstext */
.logo-tile {
  position: absolute;
  top: 4%;
  left: 50%;
  transform: translateX(-50%);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-tile img {
  object-fit: contain;
  padding: 0.2rem;
}

/* Hover für Logo mit BEIDEN Transformationen */
.logo-tile:hover {
  transform: translateX(-50%) scale(1.15);
  z-index: 10;
}


/* Willkürliche Positionierungen der 6 Kacheln (inkl. Logo) */
.tile-1 { top: 5%; left: 5%; }
.tile-2 { top: 15%; right: 5%; }
.tile-3 { bottom: 5%; left: 30%; }
.tile-4 { bottom: 5%; right: 15%; }
.tile-5 { top: 45%; left: 5%; }
/* Logo-Kachel: mittig über dem Willkommenstext */
.logo-tile {
  top: 18%;
  left: 50%;
  transform: translateX(-50%);
}

/* Bei kleinen Bildschirmen: alle Kacheln außer Logo ausblenden */
@media (max-width: 768px) {
  .tile:not(.logo-tile) {
    display: none;
  }
  .logo-tile {
    width: 80px;
    height: 80px;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* Ausstattung - Liste mit Icons + Galerie */
.amenities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}
.amenities-list {
  flex: 2;
  background: #fefaf0;
  padding: 2rem;
  border-radius: 32px;
}
.amenities-list ul {
  columns: 2;
  column-gap: 2rem;
  list-style: none;
}
.amenities-list li {
  margin-bottom: 0.8rem;
  font-weight: 500;
}
.amenities-list i {
  color: #bbb38c;
  width: 1.8rem;
}
.galerie-thumbs {
  flex: 1.2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.galerie-thumbs img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 24px;
  transition: transform 0.3s, filter 0.3s;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
}
.galerie-thumbs img:hover {
  transform: scale(1.02);
  filter: brightness(1.02);
}

/* Preise Cards */
.price-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.price-card {
  background: white;
  border-radius: 32px;
  padding: 1.8rem;
  flex: 1;
  min-width: 260px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
  border-top: 5px solid #ffe467;
  transition: all 0.3s;
}
.price-card:hover {
  transform: translateY(-6px);
}
.price-card h3 {
  font-size: 1.8rem;
  color: #80407b;
}
.price-card .price-row {
  display: flex;
  justify-content: space-between;
  margin: 0.8rem 0;
  border-bottom: 1px dashed #ddd;
}
.small-note {
  font-size: 0.8rem;
  color: #6b5e4a;
  margin-top: 1rem;
}

/* Ausflugsziele - große parallax Section */
.parallax-section {
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: white;
  position: relative;
  padding: 20rem 2rem;
}
.parallax-overlay {
  background: rgba(0, 0, 0, 0.55);
  border-radius: 48px;
  padding: 2.5rem;
  backdrop-filter: blur(2px);
}
.attractions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.attraction-item {
  background: rgba(255, 255, 245, 0.95);
  color: #1f1f1f;
  padding: 1rem 1.5rem;
  border-radius: 28px;
  transition: 0.2s;
  font-weight: 500;
}
.attraction-item i {
  color: #80407b;
  margin-right: 12px;
}

/* Kontakt + Footer */
.contact-wrap {
  display: flex;
  flex-wrap: wrap;
  background: #f5efe3;
  border-radius: 48px;
  padding: 2rem;
  gap: 2rem;
  margin-top: 1.5rem;
}
.contact-info {
  flex: 1;
}
.contact-info i {
  width: 2rem;
  color: #80407b;
}
.footer {
  background: #1e1b16;
  color: #ccc;
  padding: 2rem;
  text-align: center;
  font-size: 0.9rem;
}
.footer a {
  color: #ffe467;
  text-decoration: none;
  margin: 0 1rem;
}

/* Scroll-Animationen (reveal) */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.9, 0.4, 1.1), transform 0.7s ease;
}
.fade-up.revealed {
  opacity: 1;
  transform: translateY(0);
}

button, a {
  transition: all 0.2s;
}



/* Datenschutz-Styles */
.datenschutz-content {
  background: white;
  border-radius: 32px;
  padding: 2.5rem;
  margin-top: 2rem;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
}

.datenschutz-content h4 {
  font-size: 1.8rem;
  color: #80407b;
  margin-bottom: 0.5rem;
  font-family: 'Ananda', cursive;
}

.datenschutz-content h5 {
  font-size: 1.2rem;
  color: #6b5e4a;
  margin-bottom: 2rem;
  font-weight: 500;
}

.datenschutz-content h6 {
  font-size: 1.25rem;
  color: #80407b;
  margin: 1.5rem 0 0.8rem 0;
  font-weight: 600;
}

.datenschutz-content h6 i {
  color: #bbb38c;
  margin-right: 10px;
}

.datenschutz-content p {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: #2c2c2c;
}

.datenschutz-content .icon-list {
  list-style: none;
  margin: 0.5rem 0 1rem 1.5rem;
}

.datenschutz-content .icon-list li {
  margin-bottom: 0.5rem;
}

.datenschutz-content .icon-list li i {
  color: #bbb38c;
  width: 1.8rem;
  margin-right: 0.5rem;
}

.datenschutz-content a {
  color: #80407b;
  text-decoration: none;
  transition: color 0.2s;
}

.datenschutz-content a:hover {
  color: #ffe467;
  text-decoration: underline;
}


@media (max-width: 2453px) {
.tile {
	max-width: 400px;
	max-height: 400px;
}

}
@media (max-width: 2000px) {
.tile {
	max-width: 300px;
	max-height: 300px;
}

.tile-logo {
  max-width: 250px;
  max-height: 250px;

}}
	@media (max-width: 1600px) {
.tile-5 { display: none!important }

}

@media (max-width: 768px) {
  .datenschutz-content {
    padding: 1.5rem;
  }
  
  .datenschutz-content h4 {
    font-size: 1.5rem;
  }
  
  .datenschutz-content h6 {
    font-size: 1.1rem;
  }
}

@media (max-width: 880px) {
  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    margin-top: 1rem;
  }
  .nav-links.active {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
  .navbar.scrolled .nav-links {
    padding-bottom: 0.5rem;
  }
  .hero {
    margin-top: 65px;
  }
  h2 {
    font-size: 2.4rem;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 3rem 1rem;
  }
  .amenities-list ul {
    columns: 1;
  }
  .hero-welcome h1 {
    font-size: 2.2rem;
  }
  .hero-welcome p {
    font-size: 1rem;
  }
}