/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  overflow-x: hidden;
  font-family: 'Comfortaa', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #faf9f6;
}
h1, h2, h3, h4 {
  font-family: 'Comfortaa', sans-serif;
  color: #2a5555;
}

/* Header & Navigation */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}
header:hover {
  background: rgba(255, 255, 255, 1);
}
.logo {
  display: flex;
  align-items: center;
}
.logo img {
  max-height: 70px;
  display: block;
}
nav {
  display: flex;
  align-items: center;
}
nav a {
  margin-left: 1.8rem;
  text-decoration: none;
  color: #0b2222;
  font-weight: 500;
  position: relative;
  transition: all 0.3s;
  padding: 5px 0;
}
nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #5fabdb;
  transition: width 0.3s ease;
}
nav a:hover {
  color: #5fabdb;
}
nav a:hover::after {
  width: 100%;
}
nav a.active {
  color: #74cd89;
  font-weight: 600;
}
nav a.active::after {
  width: 100%;
  background: #74cd89;
}

/* Hamburger & Mobile Menu (base) */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1100;
  transition: all 0.3s ease;
}
.hamburger div {
  width: 28px;
  height: 3px;
  background: #2a5555;
  margin: 4px 0;
  transition: all 0.3s ease;
}
.mobile-nav {
  display: none;
  flex-direction: column;
  width: 100%;
  background: #fff;
  position: absolute;
  top: 100%;
  left: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-radius: 0 0 10px 10px;
  overflow: hidden;
  transition: max-height 0.3s ease;
  max-height: 0;
}
.mobile-nav.open {
  display: flex;
  max-height: 500px;
}
.mobile-nav a {
  padding: 1rem 2rem;
  border-bottom: 1px solid #eee;
  margin: 0;
  color: #2a5555;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s;
}
.mobile-nav a:hover {
  background-color: #f0f7f7;
  padding-left: 2.3rem;
}

/* Hamburger “X” Animation */
.hamburger.active div:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active div:nth-child(2) {
  opacity: 0;
}
.hamburger.active div:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.4));
  z-index: 0;
}
.hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.hero-content {
  z-index: 1;
  position: relative;
  max-width: 90%;
  padding: 2rem;
  background: rgba(65, 146, 200, );
  border-radius: 10px;
  backdrop-filter: blur(5px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transform: translateY(0);
  transition: transform 0.5s ease;
}
.hero:hover .hero-content {
  transform: translateY(-10px);
}
.hero-content h1 {
  font-size: 3.5rem;
  margin: 1rem 0;
  color: white;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.hero-content p {
  font-size: 1.4rem;
  margin: 1rem 0;
  font-weight: 500;
}
.line {
  width: 0;
  height: 3px;
  background: #fff;
  margin: 0 auto;
  opacity: 0.8;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
@keyframes slideInLeft {
  from { width: 0; }
  to { width: 60%; }
}
@keyframes slideInRight {
  from { width: 0; }
  to { width: 60%; }
}
.line-top {
  animation: slideInLeft 1.2s forwards;
  margin-bottom: 1.5rem;
}
.line-bottom {
  animation: slideInRight 1.2s forwards;
  margin-top: 1.5rem;
}
.cta-button {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 12px 30px;
  background: rgb(89, 183, 89);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.cta-button:hover {
  background: rgb(47, 116, 47);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

/* About Section */
.about {
  padding: 5rem 2rem;
  text-align: center;
  background-color: #fff;
  position: relative;
  z-index: 1;
}
.about:hover {
  background-color: #f8f8f8;
  transition: background-color 0.5s;
}
.section-title {
  position: relative;
  display: inline-block;
  margin-bottom: 2.5rem;
  padding-bottom: 15px;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #2a5555, #5f9ea0);
}
.about p {
  max-width: 800px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  color: #444;
}
.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}
.feature {
  flex: 1;
  min-width: 250px;
  max-width: 350px;
  text-align: center;
  padding: 1.5rem;
  background: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s;
}
.feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #5f9ea0;
}
.feature h3 {
  margin-bottom: 1rem;
  color: #2a5555;
}

/* Accommodations */
.accommodations {
  padding: 5rem 2rem;
  background-color: #f0f7f7;
  text-align: center;
}
.accommodations h2 {
  margin-bottom: 3rem;
}
.accommodation-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}
.accommodation {
  width: 350px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: transform 0.4s, box-shadow 0.4s;
}
.accommodation:hover {
  transform: translateY(-12px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}
.img-container {
  height: 250px;
  overflow: hidden;
  position: relative;
}
.accommodation img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s;
}
.accommodation:hover img {
  transform: scale(1.05);
}
.img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0.4));
}
.location-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.9);
  color: #2a5555;
  padding: 5px 15px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.accommodation-content {
  padding: 1.8rem;
  text-align: left;
}
.accommodation-content h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}
.accommodation-features {
  display: flex;
  margin: 1rem 0;
  padding: 10px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.feature-item {
  flex: 1;
  text-align: center;
  font-size: 0.85rem;
  color: #666;
}
.feature-item span {
  display: block;
  color: #2a5555;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.accommodation-content p {
  margin: 1rem 0;
  font-size: 0.95rem;
  color: #555;
}
.price {
  color: #2a5555;
  font-weight: bold;
  font-size: 1.2rem;
  margin: 1rem 0;
}
.price span {
  font-size: 0.9rem;
  color: #777;
  font-weight: normal;
}
.details-button {
  display: inline-block;
  width: 100%;
  padding: 12px;
  background: #5f9ea0;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
  text-decoration: none;
}
.details-button:hover {
  background: #2a5555;
}

/* Contact Form */
.contact-form {
  padding: 5rem 2rem;
  background-color: #fff;
  text-align: center;
}
.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
  justify-content: center;
  align-items: flex-start;
}
.contact-info {
  flex: 1;
  min-width: 300px;
  text-align: left;
}
.contact-info h3 {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}
.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}
.contact-icon {
  width: 40px;
  height: 40px;
  background: #f0f7f7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: #2a5555;
  font-size: 1.2rem;
}
.contact-text {
  color: #444;
}
.contact-text strong {
  display: block;
  color: #2a5555;
  margin-bottom: 3px;
}
.form-container {
  flex: 1;
  min-width: 300px;
  background: #f9f9f9;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.form-container form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.input-group {
  position: relative;
}
.form-container input,
.form-container textarea,
.form-container select {
  width: 100%;
  padding: 12px 15px;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  color: #333;
  transition: all 0.3s;
}
.form-container input:focus,
.form-container textarea:focus,
.form-container select:focus {
  border-color: #5f9ea0;
  outline: none;
  box-shadow: 0 0 0 3px rgba(95,158,160,0.1);
}
.form-container label {
  display: block;
  margin-bottom: 8px;
  color: #2a5555;
  font-weight: 500;
  text-align: left;
}
.form-container button {
  padding: 14px;
  background: #2a5555;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 1rem;
}
.form-container button:hover {
  background: #5f9ea0;
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Footer */
footer {
  background: #2a5555;
  color: #fff;
  padding: 3rem 2rem;
  text-align: center;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}
.footer-section {
  flex: 1;
  min-width: 250px;
  text-align: left;
}
.footer-section h3 {
  color: #fff;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}
.footer-section p {
  margin-bottom: 1rem;
  color: #ccc;
  line-height: 1.7;
}
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 1rem;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s;
}
.social-links a:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-3px);
}
.footer-buttons {
  margin-top: 1.5rem;
  text-align: center;
}
.footer-button {
  background: #fff;
  color: #2a5555;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  margin: 0 0.5rem;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}
.footer-button:hover {
  background: #ccc;
}
.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  color: #aaa;
  font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background-color: #222;
  color: #fff;
  padding: 16px;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  font-size: 14px;
}
.cookie-banner p {
  margin: 0;
  max-width: 80%;
}
.cookie-banner a {
  color: #fff;
  text-decoration: underline;
}
.cookie-banner button {
  background-color: #4CAF50;
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 5px;
  cursor: pointer;
}

/* Social Icon */
.social-link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  overflow: hidden;
  transition: background 0.3s, transform 0.3s;
}
.social-link-icon:hover {
  background: rgba(255,255,255,0.2);
  transform: scale(1.05);
}
.social-link-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 3rem;
  }
  .hero-content p {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  header {
    padding: 1rem;
  }
  nav {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .hero-content p {
    font-size: 1.1rem;
  }
  .features {
    gap: 1rem;
  }
  .feature {
    min-width: 100%;
  }
  .accommodation-container {
    gap: 2rem;
  }
  .contact-container {
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
}

.content-section {
  max-width: 800px;
  margin: 2rem auto;
  padding: 1rem 2rem;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.content-section h2 {
  margin-bottom: 1rem;
  color: #2a5555;
}
.content-section p {
  margin-bottom: 1rem;
}
.content-section h3 {
  margin-top: 1rem;
  color: #2a5555;
}

.content-section.impressum {
  position: relative;
}

.content-section.impressum .impressum-image {
  position: absolute;  
  top: 50%;               
  right: 2rem;            
  transform: translateY(-50%);
  width: 150px;          
  height: 150px;
  border-radius: 50%;     
  overflow: hidden;        
  box-shadow: 0 2px 8px rgba(0,0,0,0.2); 
}

.content-section.impressum .impressum-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}