/* Tour Detail Page specific styles */
/* Using Chill Boat Sado logo colors: Pink #D43D8E, Yellow #FFD700, Blue #00BCD4 */

.tour-hero-section {
    padding: 6rem 0 4rem;
    background-color: var(--white);
}

.tour-header {
    margin-bottom: 2rem;
}

.tour-label {
    display: inline-block;
    color: #D43D8E;
    /* Logo Pink */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.tour-title {
    font-size: 3.5rem;
    color: #D43D8E;
    /* Logo Pink */
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.tour-subtitle {
    font-size: 1.25rem;
    color: #666;
    font-weight: 500;
}

.tour-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.tour-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tour-info-panel {
    padding-top: 1rem;
}

.tour-price-box {
    margin-bottom: 2rem;
}

.price-label {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2c3e50;
    line-height: 1;
}

.price-sub {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
}

.tour-features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.tour-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #00BCD4;
    /* Logo Blue for features */
    font-weight: 500;
}

.tour-feature-icon {
    width: 24px;
    text-align: center;
    font-size: 1.2rem;
    color: #FFD700;
    /* Logo Yellow for icons */
}

.tour-description-short {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.6;
}

.btn-cta-large {
    background-color: #D43D8E;
    /* Logo Pink */
    color: white;
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    border: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 61, 142, 0.3);
}

.btn-cta-large:hover {
    background-color: #C2185B;
    /* Darker pink on hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 61, 142, 0.4);
}

/* Fleet / Content Section */
.tour-content-section {
    padding: 4rem 0;
    background-color: var(--white);
}

.fleet-preview {
    background: #f8f9fa;
    border-radius: 20px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 4rem;
}

.fleet-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.fleet-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .tour-hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .tour-title {
        font-size: 2.5rem;
    }

    .fleet-preview {
        grid-template-columns: 1fr;
    }

    .fleet-image {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .tour-hero-section {
        padding: 4rem 0 3rem;
    }

    .tour-title {
        font-size: 2rem;
    }

    .tour-subtitle {
        font-size: 1rem;
    }

    .price-label {
        font-size: 2rem;
    }

    .tour-feature-item {
        font-size: 1rem;
    }

    .fleet-content {
        padding: 2rem 1.5rem;
    }

    .tour-content-section {
        padding: 3rem 0;
    }
}