/**
 * HP Guide Navire Showcase
 * Styles pour la section guide complet navire de la homepage
 */

/* Section principale */
.hp-guide-navire-showcase {
    padding: 0 0 60px 0;
    background: #fff;
}

/* Galerie photos */
.guide-navire-gallery {
    margin-bottom: 50px;
}

.guide-navire-gallery .row {
    margin: 0;
}

.gallery-photo-wrapper {
    overflow: hidden;
    position: relative;
}

.gallery-photo-wrapper img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-photo-wrapper:hover img {
    transform: scale(1.05);
}

/* Header */
.guide-navire-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-badge-guide {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.section-badge-guide i {
    font-size: 1rem;
}

.guide-navire-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.guide-navire-intro {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Carte principale du navire */
.guide-navire-main-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border: 1px solid #e9ecef;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.navire-identity {
    text-align: center;
    padding-right: 30px;
    border-right: 1px solid #e9ecef;
}

.compagnie-logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 20px;
}

.navire-nom {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.navire-compagnie {
    display: block;
    font-size: 1rem;
    color: #666;
    margin-bottom: 15px;
}

.navire-badge-new {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8E53 100%);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.navire-description {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Stats du navire */
.navire-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}

.navire-stat {
    text-align: center;
    padding: 15px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navire-stat .stat-value {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
}

.navire-stat .stat-label {
    display: block;
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 3px;
}

.btn-guide-complet {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: white;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-guide-complet:hover {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8E53 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

/* Grille des sections */
.guide-sections-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.guide-section-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 16px;
    padding: 25px 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.guide-section-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-color: #FF6B35;
}

.section-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.section-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-icon i {
    font-size: 1.3rem;
    color: #1a1a1a;
}

.guide-section-card:hover .section-icon {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8E53 100%);
}

.guide-section-card:hover .section-icon i {
    color: white;
}

.section-stat {
    text-align: right;
}

.section-stat .stat-number {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #FF6B35;
}

.section-stat .stat-text {
    display: block;
    font-size: 0.7rem;
    color: #888;
    text-transform: uppercase;
}

.section-titre {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.section-resume {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
    flex: 1;
}

.section-cta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #FF6B35;
    margin-top: auto;
}

.section-cta i {
    transition: transform 0.3s ease;
}

.guide-section-card:hover .section-cta i {
    transform: translateX(5px);
}

/* Bloc de positionnement */
.guide-positioning-block {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 16px;
    padding: 30px 40px;
}

.positioning-content {
    display: flex;
    align-items: center;
    gap: 25px;
}

.positioning-icon {
    font-size: 2.5rem;
    color: #FF6B35;
    flex-shrink: 0;
}

.positioning-text {
    flex: 1;
}

.positioning-text h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
}

.positioning-text p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.5;
}

.btn-tous-navires {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8E53 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.btn-tous-navires:hover {
    background: linear-gradient(135deg, #e55a2b 0%, #e57d47 100%);
    color: white;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1200px) {
    .guide-sections-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .navire-identity {
        text-align: center;
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid #e9ecef;
        padding-bottom: 25px;
        margin-bottom: 25px;
    }

    .navire-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .guide-sections-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .positioning-content {
        flex-direction: column;
        text-align: center;
    }

    .btn-tous-navires {
        margin-top: 15px;
    }
}

@media (max-width: 768px) {
    .hp-guide-navire-showcase {
        padding: 0 0 40px 0;
    }

    .gallery-photo-wrapper img {
        height: 150px;
    }

    .guide-navire-header h2 {
        font-size: 1.6rem;
    }

    .guide-navire-main-card {
        padding: 25px;
    }

    .navire-nom {
        font-size: 1.5rem;
    }

    .guide-sections-grid {
        grid-template-columns: 1fr;
    }

    .guide-positioning-block {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .gallery-photo-wrapper img {
        height: 120px;
    }

    .navire-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .navire-stat {
        padding: 10px;
    }

    .navire-stat .stat-value {
        font-size: 1.1rem;
    }
}
