/* standart*/
body {
  margin: 0;
  background-color: #f2e8cf; /* vanilla */
  font-family: system-ui, sans-serif;
}

.site-header {
  background-color: #386641; /* hunter green */
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 24px;
}

.logo {
  height: 40px;
  width: auto;
  margin-right: 16px;
}

.site-title {
  color: #f2e8cf; /* vanilla */
  font-size: 1.6rem;
}

.nav-buttons {
  margin-left: auto; /* push to the right */
  display: flex;
  gap: 16px;
}

.nav-btn {
  text-decoration: none;
  color: #f2e8cf; /* vanilla */
  padding: 6px 12px;
  border: 2px solid transparent;
  border-radius: 6px;
  transition: all 0.2s ease;
  font-weight: 500;
}

.nav-btn:not(.account-btn):hover {
  border-color: #f2e8cf;
  background-color: rgba(242, 232, 207, 0.1); /* subtle highlight */
}

.account-btn {
  border-color: #f2e8cf; /* vanilla*/
}

.hamburger-btn {
  background: none;
  border: none;
  padding: 6px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
}

.hamburger-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #f2e8cf; /* vanilla */
  border-radius: 2px;
}

.image-card .image-title {
  position: absolute;
  bottom: 8px;
  left: 8px;
  color: #f2e8cf; /* vanilla */
  background-color: rgba(56, 102, 65, 0.7); /* hunter green with transparency */
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 0.9rem;
  opacity: 0;          /* title hidden by default */
  transition: opacity 0.3s ease;
}

.image-card:hover .image-title {
  opacity: 1;          /* title fade in on hover */
}

/* IMAGE BAR */
.image-bar {
  display: flex;
  align-items: center;
  overflow-x: auto; /* allows horizontal swipe/scroll */
  gap: 0;
  padding: 0;
  background-color: #386641; /* hunter green */
  scroll-behavior: smooth;
}

.image-card {
  position: relative;
  flex: 0 0 auto; /* prevent shrinking */
  width: 160px; /* Größe anpassen hiieeeeeer <---------------------------------------- */
  min-width: 80px; /* Mindestgröße auf schmalen screens testen, potential issue here*/
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.image-card img {
  width: 100%;
  height: 120px; /* Größe anpassen hieeeer Part 2 <------------------------------------ */
  object-fit: cover;
  display: block;
}

.image-card .image-title {
  position: absolute;
  bottom: 8px;
  left: 8px;
  color: #f2e8cf; /* vanilla */
  background-color: rgba(56, 102, 65, 0.7); /* hunter green transparent */
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 0.9rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-card:hover .image-title {
  opacity: 1; /* show title on hover */
}

.image-card:hover {
  transform: scale(1.05); /* subtle zoom */
}

.carousel-container {
  padding: 0;
  position: relative;  
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(56, 102, 65, 0.7); /* hunter green transparent */
  color: #f2e8cf; /* vanilla */
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  cursor: pointer;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.carousel-arrow:hover {
  background-color: rgba(56, 102, 65, 0.9);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.carousel-arrow.left {
  left: -12px;
}

.carousel-arrow.right {
  right: -12px;
}


/* WELCOME SECTION*/
.welcome-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 24px;
  gap: 24px;
  background-color: #f2e8cf; /* vanilla background for the section */
}

.welcome-text {
  flex: 1;
  max-width: 50%; /* text on left half */
  color: #386641; /* hunter green text */
}

.welcome-text h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.welcome-text p {
  font-size: 1.1rem;
  line-height: 1.5;
}

.welcome-image {
  flex: 1;
  max-width: 50%;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.welcome-image img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0.85); /* slightly darker */
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.welcome-image:hover img {
  transform: scale(1.05);
  filter: brightness(0.9);
}
/* Shadow gradient at bottom */
.welcome-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.25) 100%);
  pointer-events: none;
}

/* INTENTION SECTION */

.intention-section {
  padding: 60px 24px;
  background-color: #f2e8cf; /* vanilla */
}

.intention-title {
  text-align: center;
  font-size: 2rem;
  color: #386641; /* hunter green */
  margin-bottom: 40px;
}

.intention-cards {
  display: flex;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
}

.intention-card {
  flex: 1;
  display: flex;
  gap: 16px;
  padding: 24px;
  background-color: #f2e8cf; /* vanilla */
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  align-items: flex-start;
}

.intention-card svg {
  transition: transform 0.2s ease;
}

.intention-card:hover svg {
  transform: scale(1.05);
}

.intention-icon {
  flex-shrink: 0;
  margin-top: 4px;
  color: #386641; /* dark green */
  
}

.intention-icon svg {
  display: block;
}

.intention-text h3 {
  margin: 0 0 8px;
  color: #386641;
  font-size: 1.2rem;
}

.intention-text p {
  margin: 0;
  color: #333;
  line-height: 1.4;
  font-size: 0.95rem;
}








