/* ============================= */
/* MAIN LAYOUT */
/* ============================= */
main {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

main h2 {
    font-size: 38px;
    color: #7a0b0b;
    margin: 50px 0;
    margin-left: 15%;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
}

/* ============================= */
/* YACHT LIST */
/* ============================= */
.yacht-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    margin-bottom: 100px;
    padding: 0 20px;
}

/* ============================= */
/* YACHT CARD */
/* ============================= */
.yacht-card {
    display: flex;
    gap: 25px;
    max-width: 1000px;
    width: 100%;
    padding: 22px;
    background: #fff;
    border: 2px solid #b30000;
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    text-align: left;
    box-sizing: border-box;
}

/* Hover */
.yacht-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* ============================= */
/* IMAGE */
/* ============================= */
.yacht-card img {
    width: 420px;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
}

/* ============================= */
/* CONTENT */
/* ============================= */
.yacht-card-content {
    display: flex;
    flex-direction: column;
    flex: 1;

}

/* Title */
.yacht-card h3 {
    font-size: 28px;
    margin: 0 0 12px 0;
    color: #b30000;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
}

/* List */
.yacht-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
    line-height: 1.65;
    font-size: 17px;
    font-family: 'Roboto', sans-serif;
    color: #000;

}

/* Price */
.preis {
    margin-top: auto;
    font-size: 28px;
    font-weight: 700;
    color: #b30000;
    text-align: right;
    font-family: 'Roboto', sans-serif;
    align-items: flex-end;
    margin-left: 100px;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

/* Tablets */
@media (max-width: 1024px) {
    main h2 {
        margin-left: 0;
        text-align: center;
        font-size: 32px;
    }

    .yacht-card {
        gap: 20px;
    }

    .yacht-card img {
        width: 320px;
    }

    .preis {
        font-size: 24px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .yacht-card {
        flex-direction: column;
        padding: 18px;
    }

    .yacht-card img {
        width: 100%;
        border-radius: 12px;
    }

    .yacht-card h3 {
        font-size: 24px;
    }

    .yacht-card ul {
        font-size: 16px;
    }

    .preis {
        text-align: center;
        font-size: 22px;
        margin-top: 15px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    main h2 {
        font-size: 26px;
    }

    .yacht-card {
        padding: 15px;
        border-radius: 12px;
    }

    .yacht-card h3 {
        font-size: 22px;
    }

    .preis {
        font-size: 20px;
        text-align: center;
    }
}
