/* ===============================
   DETALLE DEL TOUR – ESTILO PROPIO
=============================== */

/* Fondo general SOLO para esta vista */
body {
    background: linear-gradient(180deg, #0b3d1a 0%, #0f5c2a 100%);
}
/* =====================
   HEADER (LOGO + MENÚ)
===================== */
.header-tour{
    display: flex;
    /* Logo a la izquierda, menú a la derecha */
    justify-content: space-between;
    align-items: center;
    padding: 25px 60px;
    
  
}

/* Contenedor logo + breadcrumb */
.logo-area {
    display: flex;
    flex-direction: column; /* 👈 CLAVE */
    gap: 6px;
}

/* Breadcrumb debajo del logo */
.breadcrumb {
    margin-top: 8px;
    font-size: 14px;
}

.breadcrumb a {
    color: #ffffff;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 1;
}

.breadcrumb span {
    margin: 0 6px;
    color: #ffffff;
    opacity: 0.6;
}

.breadcrumb .activo {
    font-weight: 600;
    opacity: 1;
}

/* Contenedor principal */
.tour-detalle {
    max-width: 1200px;
    width: 95%;
    margin: 0px auto;
    padding: 50px;
    background: #ffffff;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

/* Imagen del tour */
.tour-img img {
    width: 100%;
    height: 510px;
    object-fit: cover;
    border-radius: 25px;
}

/* Información */
.tour-info h1 {
    font-size: 42px;
    font-family: 'Playfair Display', serif;
    color: #0b5d1e;
    margin-bottom: 15px;
}

/* PRECIO */
.precio-label {
    display: inline-block;
    background: #25d366;
    color: white;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 700;
    margin: 15px 0;
}

.tour-info p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #333;
}

.tour-info ul {
    list-style: none;
    margin-bottom: 30px;
}

.tour-info ul li {
    font-size: 16px;
    margin-bottom: 10px;
}

.tour-info li {
    font-size: 16px;
    margin-bottom: 10px;
}

.tour-top,
.tour-bottom {
    width: 100%;
}

/* CAJAS */
.itinerario,
.recomendaciones {
    background: #f5fbf7;
    padding: 28px;
    border-radius: 20px;
    width: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.itinerario h3,
.recomendaciones h3 {
    margin-bottom: 12px;
    color: #1e8449;
}

.itinerario ul,
.recomendaciones ul {
    list-style: none;
    padding-left: 0;
}

.itinerario li,
.recomendaciones li {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

/* RESPONSIVE */
@media (max-width: 900px) {

    .tour-top,
    .tour-bottom {
        grid-template-columns: 1fr;
    }
}

/* Botón */
.btn-reserva {
    display: inline-block;
    background: #25d366;
    color: #fff;
    padding: 14px 32px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-reserva:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 900px) {
    .tour-detalle {
        grid-template-columns: 1fr;
        padding: 30px;
    }

    .tour-img img {
        height: 300px;
    }

    .tour-info h1 {
        font-size: 32px;
    }
}

/* ===============================
   GALERÍA TOUR
=============================== */

.galeria-tour {
    max-width: 1200px;
    margin: 60px auto 100px;
    padding: 0 40px;
}

.galeria-tour h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 35px;
    color: #e9ff1f;
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.galeria-grid img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 18px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.galeria-grid img:hover {
    transform: scale(1.06);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}