/* Spezielle CSS-Datei für Boot-Cards mit starken Schatten */

/* Boot-Cards mit moderaten Schatten (ähnlich wie index.html) */
.boat-card {
  border-radius: 1rem;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22) !important;
  margin-bottom: 2rem;
}

.boat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 123, 255, 0.15) !important;
}

/* Bild-Zoom für Boot-Cards */
.boat-card .card-img-top {
  height: 280px;
  object-fit: cover;
  transition: all 0.6s ease;
}

.boat-card:hover .card-img-top {
  transform: scale(1.1);
}

/* Card Body für Boot-Cards */
.boat-card .card-body {
  padding: 1.5rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 1) 100%);
}

/* Titel für Boot-Cards */
.boat-card .card-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #343a40;
  margin-bottom: 1rem;
  position: relative;
}

.boat-card .card-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 40px;
  height: 2px;
  background-color: #007bff;
  transition: width 0.3s ease;
}

.boat-card:hover .card-title::after {
  width: 60px;
}

/* Text für Boot-Cards */
.boat-card .card-text {
  color: #6c757d;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Button für Boot-Cards */
.boat-card .btn-outline-primary {
  border-width: 2px;
  font-weight: 500;
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.boat-card:hover .btn-outline-primary {
  background-color: #007bff;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

/* Responsive Anpassungen für Boot-Cards */
@media (max-width: 768px) {
  .boat-card {
    margin-bottom: 1.5rem;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2) !important;
  }
  
  .boat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 123, 255, 0.12) !important;
  }
  
  .boat-card .card-img-top {
    height: 220px;
  }
  
  .boat-card .card-title {
    font-size: 1.2rem;
  }
  
  .boat-card .card-text {
    font-size: 0.9rem;
  }
} 