/* ----------- General ----------- */
body {
    padding-top: 70px; /* para que el contenido no quede debajo de la navbar */
    font-family: 'Trebuchet MS', sans-serif;
    background-color: #fdfdfd;
    color: #222;
    margin: 0;
}

/* ----------- Formularios ----------- */
form {
    text-align: center;
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 10px;
    width: 60%;
    margin: 30px auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
form input, form textarea {
    width: 100%;
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

/* ----------- Hero ----------- */
#hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background-color: #d1c0ab;
}

.hero-image {
    width: 100%;
    max-width: 1200px;
    text-align: center;
    border-radius: 20px;
    padding: 40px;
}

/* Imagen del hero en móviles */
.hero-mobile-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}

/* En desktop → usar fondo con texto encima */
@media (min-width: 768px) {
    .hero-mobile-img {
        display: none;
    }
    .hero-image {
        background: url("../images/Frente.png") center/cover no-repeat;
        height: 90vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        color: white;
    }
}

/* ----------- Habitaciones y Galerías ----------- */
.habitaciones-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.habitacion-card img,
.habitacion img {
    width: 100%;
    max-width: 250px;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s;
}
.habitacion-card img:hover {
    transform: scale(1.05);
}
.galeria img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}
.galeria img:hover {
    transform: scale(1.05);
}

/* ----------- Navbar ----------- */
.navbar-custom {
    background-color: grey;
    backdrop-filter: blur(6px);
}
.nav-link {
    color: white !important;
    font-weight: 500;
}
.nav-link:hover {
    color: #363126 !important;
    background-color: rgba(255, 253, 253, 0.5);
    border-radius: 5px;
}
.nav-link.active {
    color: #272726 !important;
    font-weight: bold;
}

/* ----------- Footer ----------- */
footer {
    background-color: grey;
    color: white;
    text-align: center;
    padding: 15px 0;
    margin-top: 40px;
}
.logo-round {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}
.icon-round {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    display: inline-block;
}
.icon-round.icon-service {
    width: 100px;
    height: 100px;
}
.habitacion {
    text-align: center;
}

/* ----------- Cards ----------- */
.card {
    width: 100%;
    display: flex;
    flex-direction: column;
}
.card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

/* ----------- Página Gracias ----------- */
.logo-gracias {
    width: 180px;
    height: auto;
    border-radius: 50%;
}

.review-card {
    background-color: #ece7a4;
    border: none;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    border-radius: 10px;
}

.review-card .card-body {
    padding: 20px;
  text-align: center; /* centra todo el contenido */
}

.review-card .card-text {
    font-style: italic;
    color: #333;
}
/* Íconos del footer */
footer .col-auto img {
    margin: 0 4px;
    vertical-align: middle;
    transition: transform 0.2s ease, opacity 0.2s ease;
    cursor: pointer;
}

/* Hover: se agrandan un poco y se ponen más brillantes */
footer .col-auto img:hover {
    transform: scale(1.2);
    opacity: 0.85;
}
/* Solo a los links de la sección de redes sociales */
footer .col-auto.social a {
    font-size: 0;
    text-decoration: none;
}
/* Colores por categoría (mismos del mapa) */
:root{
    --c-ciudad:#F83030;
    --c-alre:#F89050;
    --c-quebrada:#00B860;
    --c-yungas:#5070F8;
    --c-puna:#8850F8;
}

/* Puntito de categoría (usa --dot si la seteás en el HTML;
   si no, cae al default de la categoría) */
.badge-dot{
    width:10px; height:10px; border-radius:50%;
    display:inline-block; margin-right:6px; flex-shrink:0;
    box-shadow:0 0 0 2px rgba(0,0,0,.06);
    background: var(--dot, var(--default-dot, #ccc));
}

/* Defaults por categoría (siguen funcionando si no definís --dot) */
.dot-ciudad   { --default-dot: var(--c-ciudad); }
.dot-alre     { --default-dot: var(--c-alre); }
.dot-quebrada { --default-dot: var(--c-quebrada); }
.dot-yungas   { --default-dot: var(--c-yungas); }
.dot-puna     { --default-dot: var(--c-puna); }

/* === SOLO en la página de Atractivos === */
/* Quitar el padding lateral que deja un "pelín" en la navbar (solo en Atractivos) */
.page-atractivos .navbar,
.page-atractivos .navbar > .container-fluid,
.page-atractivos .navbar > .container,
.page-atractivos .navbar > .container-xxl {
    padding-left: 0 !important;
    padding-right: 0 !important;
}


/* Asegurá que el contenedor NO se pase de ancho en pantallas < 1400px */
.page-atractivos #atractivos.container-xxl { max-width: 100%; }

/* Si querés estirarlo un poco SOLO en pantallas grandes, usá el media query: */
@media (min-width: 1400px){
    .page-atractivos #atractivos.container-xxl { max-width: 1440px; }
}

/* El mapa nunca debe exceder su columna */
.page-atractivos .sidebar-map img{
    max-width: 100%;
    height: auto;
    display: block;
}

.card img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    }

    .card img:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.gallery-img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    }

    .gallery-img:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

#opiniones .card {
    background-color: #fff7ec;
    border: none;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    }

    #opiniones .card-body {
    padding: 1rem 1.2rem 0.6rem 1.2rem;
    }

    #opiniones .card-text {
    font-size: 0.95rem;
    line-height: 1.4;
    color: #222;
    margin-bottom: 0.4rem;
    }

    #opiniones h6 {
    font-size: 0.9rem;
    margin: 0.2rem 0 0;
    color: #000;
    }

    #opiniones .text-warning {
    color: #e0aa3e !important;
    font-size: 0.9rem;
    }

    /* Todas las cards de opiniones con la misma altura */
    #opiniones .card {
    display: flex;
    flex-direction: column;
    height: 100%;
    }

    #opiniones .card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* reparte texto y firma */
    height: 100%;
}

/* === Hero principal (Inicio) === */
#hero {
    position: relative;
    text-align: center;
    color: #fff;
    }

    .hero-text {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    }

    /* Título del hero */
    .hero-text h1 {
    font-weight: 700;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
    -webkit-text-stroke: 1px rgba(200, 200, 200, 0.4); /* borde gris suave */
    text-stroke: 1px rgba(200, 200, 200, 0.4);
    }

    /* Subtítulo */
    .hero-text p {
    color: #f2f2f2;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    font-size: 1.2rem;
    line-height: 1.6;
    margin-top: 15px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    }

    /* Imagen y fondo del hero */
    @media (min-width: 768px) {
    .hero-image {
        background: url("../images/Frente.png") center/cover no-repeat;
        height: 90vh;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 0;
    }
    .hero-mobile-img {
        display: none;
    }
}

    /* Íconos / imágenes de servicios */
    .service-icon {
    width: 100px;
    height: 100px;
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .service-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    }

    @media (max-width: 576px) {
    .service-icon {
        width: 80px;
        height: 80px;
    }
}
