.boat-details {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* Carousel */
.boat-carousel {
    position: relative;
    flex: 1 1 500px;
    overflow: hidden;
    border-radius: 15px;
    max-height: 500px;
}

.carousel-track {
    display: flex;
    transition: transform 0.3s ease-in-out;
}

.carousel-track .slide {
    min-width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 15px;
    display: block;
    margin: 0 auto;
}

/* Navigation Buttons */
.nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    font-size: 24px;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
}

.nav.left { left: 10px; }
.nav.right { right: 10px; }

.nav:hover { background: rgba(0,0,0,0.8); }

/* Rechte Spalte: Infos */
.boat-info {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.boat-title { font-size: 36px; font-weight: 700; color: #111; }
.boat-description { font-size: 18px; line-height: 1.6; color: #333; }

.boat-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.boat-specs div {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
}

.boat-cta {
    margin-top: 20px;
    padding: 15px 25px;
    font-size: 18px;
    text-align: center;
    background: #b30000;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
    display: inline-block; /* sorgt dafür, dass es wie ein großer Button aussieht */
}

.boat-cta:hover {
    background: #8f0000;
}


/* Responsive */
@media (max-width: 1024px) {

}

@media (max-width: 768px) {
    .boat-specs { grid-template-columns: 1fr; }
    .boat-title { font-size: 28px; }
    .boat-description { font-size: 16px; }
    .boat-cta { font-size: 16px; padding: 12px 20px; }
    .boat-carousel { flex: 1 1 100%; max-height: 400px; }
}

@media (max-width: 480px) {
    .boat-title { font-size: 24px; }
    .boat-description { font-size: 15px; }
    .boat-cta { font-size: 14px; padding: 10px 18px; }
}
