/* =========================
   SECTION BASIS
========================= */

.fisch-section {
  padding: 100px 20px;
  background: #f9fbfc;
}

.fisch-section .container {
  max-width: 1200px;
  margin: 0 auto;
}


/* =========================
   HEADER (MARITIM)
========================= */

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.main-title {
  font-size: 42px;
  font-weight: 400;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.sub-title {
  color: ##7a8a90;
  margin-top: 10px;
  font-size: 15px;
  letter-spacing: 1px;
}

/* ELEGANTER DIVIDER */
.elegant-divider {
  width: 260px;
  height: 2px;
  margin: 25px auto;
  position: relative;

  background: linear-gradient(
    to right,
    transparent,
    #0a6c74,
    transparent
  );
}

.elegant-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: #0a6c74;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 6px rgba(10,108,116,0.4);
}

/* kleiner Akzentpunkt */
.elegant-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  background: #0a6c74;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

/* =========================
   BLOCK LAYOUT
========================= */

.fisch-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 80px;
  align-items: center;
}

.fisch-block.reverse .fisch-text {
  order: 2;
}

.fisch-block.reverse .fisch-image-placeholder {
  order: 1;
}


/* =========================
   TEXT
========================= */

.fisch-text p {
  font-size: 15px;
  color: #444;
}

.fisch-text h3 {
  margin-top: 20px;
}

.highlight-list {
  font-weight: 500;
  margin: 15px 0;
}

.highlight {
  margin-top: 15px;
  font-weight: 600;
  color: #0a6c74;
}


/* =========================
   IMAGES
========================= */


.fisch-image-placeholder {
  width: 100%;
  height: 300px;
  background: #eaeaea;
  border-radius: 16px;
  overflow: hidden;
}

.fisch-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.fisch-image-placeholder:hover img {
  transform: scale(1.05);
}

/* PLACEHOLDER IMAGE */

.image-placeholder {
  width: 100%;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  background: linear-gradient(
    135deg,
    rgba(15, 76, 92, 0.08),
    rgba(15, 76, 92, 0.02)
  );

  font-family: 'Inter', sans-serif;
  letter-spacing: 1px;
  color: rgba(0,0,0,0.5);
}

.image-placeholder i {
  font-size: 22px;
  margin-bottom: 10px;
  opacity: 0.5;
}

.image-placeholder p {
  font-size: 0.9em;
}


/* =========================
   OPENING TIMES
========================= */

.opening-times {
  margin-top: 80px;
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.opening-times h3 {
  margin-bottom: 20px;
}

.times-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
  margin-bottom: 25px;
}

.times-grid div:nth-child(odd) {
  font-weight: 500;
}

/* =========================
   SPECIAL DAYS
========================= */

.special-days {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;

  border-top: 1px solid #eee;
  padding-top: 20px;
  margin-top: 20px;
}

.special-days p {
  margin: 0;
  font-weight: 500;
  color: #0a6c74;
}

/* =========================
   SB SERVICE INFO
========================= */

.sb-info {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #eee;
  text-align: center;
}

.sb-info h4 {
  margin-bottom: 8px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.sb-time {
  font-weight: 500;
  color: #0a6c74;
  margin-bottom: 10px;
}

.sb-note {
  font-size: 0.9em;
  color: #666;
  line-height: 1.5;
}

/* =========================
   SCROLL ANIMATION
========================= */

.scroll-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-animate.from-left {
  transform: translateX(-60px);
}

.scroll-animate.from-right {
  transform: translateX(60px);
}

.scroll-animate.from-left.visible,
.scroll-animate.from-right.visible {
  transform: translateX(0);
}


/* =========================
   SMOKE EFFECT
========================= */

.smoke-effect {
  position: relative;
  overflow: hidden;
}

.smoke-effect::after {
  content: "";
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 140%;

  background: radial-gradient(
    ellipse at center,
    rgba(255,255,255,0.25) 0%,
    rgba(255,255,255,0.1) 40%,
    rgba(255,255,255,0.05) 60%,
    transparent 80%
  );

  filter: blur(20px);
  opacity: 0.5;
  pointer-events: none;

  animation: smokeMove 8s ease-in-out infinite;
}


/* =========================
   ANIMATIONS
========================= */

@keyframes smokeMove {
  0% { transform: translateY(0) scale(1); opacity: 0.4; }
  50% { transform: translateY(-20px) scale(1.1); opacity: 0.7; }
  100% { transform: translateY(0) scale(1); opacity: 0.4; }
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
  .fisch-block {
    grid-template-columns: 1fr;
  }
}