@import '_content/BlazorDateRangePicker/BlazorDateRangePicker.iitr8bszy4.bundle.scp.css';

/* _content/TravelManagementSystemWebBlazor/Components/Layout/MainLayout.razor.rz.scp.css */
/* _content/TravelManagementSystemWebBlazor/Components/Pages/ShipDetails.razor.rz.scp.css */
/* Reset and base styles */
*[b-j76zwowlxb] {
    box-sizing: border-box;
}

/* Error and loading styles */
.error-container[b-j76zwowlxb],
.loading-container[b-j76zwowlxb] {
    text-align: center;
    padding: 40px;
}

.error-text[b-j76zwowlxb] {
    color: #e74c3c;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Ship header with background image */
.ship-header[b-j76zwowlxb] {
    background-size: cover;
    background-position: center;
    height: 300px;
    position: relative;
    color: #fff;
    margin-bottom: 40px;
}

.overlay[b-j76zwowlxb] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.7));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
}

.breadcrumb[b-j76zwowlxb] {
    font-size: 1rem;
    margin-bottom: 10px;
    opacity: 0.9;
}

.ship-title[b-j76zwowlxb] {
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}

/* Main container */
.cruise-container[b-j76zwowlxb] {
    max-width: 1400px; /* This controls your main content width */
    margin: 0 auto;
    padding: 0 15px;
    font-family: 'Segoe UI', Arial, sans-serif;
}

/* == Two-column overall layout == */
.ship-layout[b-j76zwowlxb] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
    margin-bottom: 30px;
}

/* == Gallery grid == */
.image-gallery[b-j76zwowlxb] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
    gap: 8px;
}

.gallery-item[b-j76zwowlxb] {
    overflow: hidden;
    position: relative;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

    .gallery-item img[b-j76zwowlxb] {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .gallery-item:hover img[b-j76zwowlxb] {
        transform: scale(1.05);
    }

    .gallery-item.main-image[b-j76zwowlxb] {
        grid-column: span 2;
        grid-row: span 2;
    }

/* Content area styling */
.ship-content[b-j76zwowlxb] {
    padding: 0 20px;
}

.ship-header-info[b-j76zwowlxb] {
    margin-bottom: 25px;
}

.ship-content-title[b-j76zwowlxb] {
    color: #003B70;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.ship-tagline[b-j76zwowlxb] {
    color: #666;
    font-size: 1.2rem;
    font-style: italic;
}

.ship-description[b-j76zwowlxb] {
    color: #444;
    line-height: 1.7;
    margin-bottom: 30px;
}

.amenities-box[b-j76zwowlxb] {
    background-color: #f5f7fa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.amenities-row[b-j76zwowlxb] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    text-align: center;
}

.amenity-item[b-j76zwowlxb] {
    padding: 15px 10px;
}

.amenity-number[b-j76zwowlxb] {
    font-size: 2.5rem;
    font-weight: 700;
    color: #003B70;
    margin-bottom: 5px;
}

.amenity-label[b-j76zwowlxb] {
    font-size: 0.9rem;
    color: #666;
}

.ship-specs[b-j76zwowlxb] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 30px;
}

.spec-item[b-j76zwowlxb] {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #eaedf2;
}

.spec-label[b-j76zwowlxb] {
    color: #555;
    font-size: 0.95rem;
}

.spec-value[b-j76zwowlxb] {
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.booking-button[b-j76zwowlxb] {
    display: inline-block;
    background-color: #003B70;
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

    .booking-button:hover[b-j76zwowlxb] {
        background-color: #00294d;
        color: white;
        text-decoration: none;
    }

.info-badge[b-j76zwowlxb] {
    display: inline-flex;
    align-items: center;
    background-color: #e8f4ff;
    color: #003B70;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 0.9rem;
    margin-top: 15px;
    margin-left: 10px;
}

    .info-badge i[b-j76zwowlxb] {
        margin-right: 5px;
    }

@media (max-width: 800px) {
    .ship-layout[b-j76zwowlxb] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .ship-title[b-j76zwowlxb] {
        font-size: 2.2rem;
    }

    .ship-content-title[b-j76zwowlxb] {
        font-size: 2rem;
    }

    .image-gallery[b-j76zwowlxb] {
        grid-template-columns: 1fr;
    }

    .gallery-item.main-image[b-j76zwowlxb] {
        grid-column: 1;
    }

    .ship-specs[b-j76zwowlxb] {
        grid-template-columns: 1fr;
    }
}

/* ================================================== */
/* == STYLES FOR "ACTIVITÉ À BORD" SECTION START == */
/* ================================================== */
.onboard-activities-section[b-j76zwowlxb] {
    width: 100%; /* Makes the background full-width */
    padding-top: 40px; /* Vertical padding for the section background */
    padding-bottom: 40px; /* Vertical padding for the section background */
    background-color: #f0f4f8; /* Light grayish-blue background */
    margin-top: 40px; /* Adjust as needed for spacing between sections */
    margin-bottom: 40px; /* Adjust as needed for spacing between sections */
}

.onboard-content-inner[b-j76zwowlxb] { /* NEW class for content wrapper */
    max-width: 1400px; /* Match this to your .cruise-container max-width or desired content width */
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px; /* Standard side padding for content within the full-width bg */
    padding-right: 15px; /* Standard side padding for content within the full-width bg */
}

.onboard-section-title[b-j76zwowlxb] {
    font-size: 2.5em;
    color: #b08d57;
    margin-bottom: 25px;
    font-weight: 700;
    font-family: 'Nunito Sans', 'Segoe UI', Arial, sans-serif;
}

/* Telerik TabStrip Customization */
.onboard-tabstrip[b-j76zwowlxb] {
    border: none;
    margin-bottom: 20px;
}

    .onboard-tabstrip .k-tabstrip-items-wrapper .k-tabstrip-items[b-j76zwowlxb] {
        padding-left: 0;
        gap: 10px;
        display: flex;
        flex-wrap: nowrap;
    }

    .onboard-tabstrip .k-item[b-j76zwowlxb] {
        background-color: transparent !important;
        border: 1px solid transparent !important;
        border-radius: 20px !important;
        padding: 0 !important;
        margin: 0 !important;
        box-shadow: none !important;
        flex-shrink: 0;
    }

        .onboard-tabstrip .k-item .k-link[b-j76zwowlxb] {
            color: #5a738e !important;
            font-weight: 700 !important;
            font-size: 0.9em !important;
            text-transform: uppercase;
            padding: 10px 20px !important;
            border: none !important;
            border-radius: 20px !important;
            background-color: transparent !important;
            transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
            font-family: 'Nunito Sans', 'Segoe UI', Arial, sans-serif;
        }

        .onboard-tabstrip .k-item:not(.k-state-active):hover .k-link[b-j76zwowlxb] {
            background-color: #e0e6eb !important;
            color: #3e556f !important;
        }

        .onboard-tabstrip .k-item.k-state-active[b-j76zwowlxb] {
            background-color: #ffffff !important;
            border: 1px solid #e0e6eb !important;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1) !important;
        }

            .onboard-tabstrip .k-item.k-state-active .k-link[b-j76zwowlxb] {
                color: #007bff !important;
                background-color: #ffffff !important;
            }

    .onboard-tabstrip .k-tabstrip-content[b-j76zwowlxb] {
        border: none !important;
        padding: 20px 0 0 0 !important;
        background-color: transparent !important;
    }

/* Gallery Styling with Arrows */
.onboard-gallery-container[b-j76zwowlxb] {
    position: relative;
    padding-left: 50px;
    padding-right: 50px;
    /* The negative margins might need adjustment or removal depending on how
       .onboard-content-inner padding and gallery desired width interact */
    /* margin: 0 -10px; */ /* Commenting out for now, test without first */
}

.gallery-arrow[b-j76zwowlxb] {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid #ddd;
    color: #333;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 18px;
    font-weight: bold;
    line-height: 38px;
    text-align: center;
    cursor: pointer;
    z-index: 20;
    box-shadow: 0 1px 4px rgba(0,0,0,0.2);
    transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
    user-select: none;
}

    .gallery-arrow:hover[b-j76zwowlxb] {
        background-color: #ffffff;
        color: #007bff;
        box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    }

    .gallery-arrow.prev-arrow[b-j76zwowlxb] {
        left: 5px;
    }

    .gallery-arrow.next-arrow[b-j76zwowlxb] {
        right: 5px;
    }

.onboard-gallery-scroll[b-j76zwowlxb] {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding-bottom: 15px;
    padding-left: 10px;
    padding-right: 10px;
    margin: 0;
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-behavior: smooth;
}

    .onboard-gallery-scroll[b-j76zwowlxb]::-webkit-scrollbar {
        display: none;
    }

.onboard-gallery-card[b-j76zwowlxb] {
    min-width: 260px;
    max-width: 260px;
    height: 340px;
    flex: 0 0 auto;
    background-color: #e0e0e0;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .onboard-gallery-card:hover[b-j76zwowlxb] {
        transform: translateY(-5px);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    }

    .onboard-gallery-card img[b-j76zwowlxb] {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.onboard-gallery-card-label[b-j76zwowlxb] {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 10%, rgba(0, 0, 0, 0) 100%);
    color: white;
    padding: 30px 15px 15px 15px;
    font-size: 1.1em;
    font-weight: 700;
    line-height: 1.3;
    font-family: 'Nunito Sans', 'Segoe UI', Arial, sans-serif;
    text-align: left;
}

.no-items-message[b-j76zwowlxb] {
    padding: 20px;
    color: #555;
    width: 100%;
    text-align: center;
    font-style: italic;
}


/* Responsive tweaks for onboard activities */
@media (max-width: 768px) {
    .onboard-section-title[b-j76zwowlxb] {
        font-size: 2em;
    }

    .onboard-gallery-container[b-j76zwowlxb] {
        padding-left: 45px; /* Adjust if arrows seem too far in */
        padding-right: 45px; /* Adjust if arrows seem too far in */
    }

    .gallery-arrow[b-j76zwowlxb] {
        width: 35px;
        height: 35px;
        font-size: 16px;
        line-height: 33px;
    }

        .gallery-arrow.prev-arrow[b-j76zwowlxb] {
            left: 5px;
        }

        .gallery-arrow.next-arrow[b-j76zwowlxb] {
            right: 5px;
        }

    .onboard-gallery-card[b-j76zwowlxb] {
        min-width: 220px;
        height: 300px;
    }

    .onboard-gallery-card-label[b-j76zwowlxb] {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .onboard-section-title[b-j76zwowlxb] {
        font-size: 1.7em;
        text-align: center;
    }

    .onboard-tabstrip .k-item .k-link[b-j76zwowlxb] {
        padding: 8px 15px !important;
        font-size: 0.8em !important;
    }

    .onboard-gallery-container[b-j76zwowlxb] {
        padding-left: 40px;
        padding-right: 40px;
    }

    .gallery-arrow[b-j76zwowlxb] {
        width: 30px;
        height: 30px;
        font-size: 14px;
        line-height: 28px;
    }

        .gallery-arrow.prev-arrow[b-j76zwowlxb] {
            left: 5px;
        }

        .gallery-arrow.next-arrow[b-j76zwowlxb] {
            right: 5px;
        }

    .onboard-gallery-card[b-j76zwowlxb] {
        min-width: 190px;
        height: 260px;
    }

    .onboard-gallery-card-label[b-j76zwowlxb] {
        font-size: 0.9em;
        padding: 20px 10px 10px 10px;
    }
}

