html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  font-family: 'Poppins', sans-serif;
  margin-bottom: 60px;
  background: linear-gradient(to bottom, #E6E6FA, #B0E0E6);
  min-height: 100vh;    
  margin: 0;
  padding-top: 70px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

.container {
    background-color: transparent; 
}

/* VIAJES */
.travel-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform .15s, box-shadow .15s;
    cursor: pointer;
}

.travel-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.09);
}

.icon-box {
    background: #eef5ff;
    width: 55px;
    height: 55px;
    min-width: 55px !important;
    min-height: 55px !important;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0 !important;
}
.icon-box svg {
    width: 30px !important;
    height: 30px !important;
}

.icon-box.naturaleza {
    background-color: #e1fceb;   /* verde suave */
}

.icon-box.cultural {
    background-color: #ffe5e5;   /* rojo suave */
}

.icon-box.gastronomico {
    background-color: #f7e5ff;   /* violeta suave */
}

.icon-box.aventura {
    background-color: #ffe9cc;   /* naranja suave */
}

.icon-box.relax {
    background-color: #fff3d1;   /* amarillo suave */
}

/* VIAJE */
.activity-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
    border: 1px solid #f1f1f1;
}

.trip-icon {
    width: 25px;
    height: 25px;
    background: #fff4d6;
    border-radius: 6px;
    display: inline-block;
    mask: url('https://cdn-icons-png.flaticon.com/512/595/595067.png') center/contain no-repeat;
}

/* Horario en azul */
.text-primary {
    color: #2f80ed !important;
}

.day-number {
    padding: 6px 14px;
    border-radius: 9999px; /* pill */
    background: #eff2f7;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.day-number.naturaleza {
    background-color: #e1fceb;   /* verde suave */
}

.day-number.cultural {
    background-color: #ffe5e5;   /* rojo suave */
}

.day-number.gastronomico {
    background-color: #f7e5ff;   /* violeta suave */
}

.day-number.aventura {
    background-color: #ffe9cc;   /* naranja suave */
}

.day-number.relax {
    background-color: #fff3d1;   /* amarillo suave */
}

.top-btn {
    background: #f4f6f9;
    border: none;
    padding: 10px 14px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 16px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.07);
    transition: 0.2s;
}

.top-btn:hover {
    background: #e8ebef;
}

.map-btn {
    background: #dbe9ff;
    border: none;
    padding: 10px 14px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 15px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.07);
    transition: 0.2s;
    text-decoration: none;
    color: #1d1d1f;
}

.map-btn:hover {
    background: #a2c1eb;
}

.publish-btn {
    background: #f4a63f;
    border: none;
    padding: 10px 18px;
    border-radius: 14px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 3px 7px rgba(0,0,0,0.15);
    transition: 0.2s;
}

.publish-btn:hover {
    background: #e29232;
}

/* Estilos de LOGIN */
#loginCard {
    background: white;
    width: 380px;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

#loginCard h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #1d1d1f;
}

#loginCard p {
    font-size: 14px;
    color: #6b6b6b;
    margin-bottom: 20px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #444;
    text-align: left;
    display: block;
}

.form-control {
    border-radius: 8px;
    padding: 10px;
    border: 1px solid #ddd;
    font-size: 14px;
}

#loginBtn {
    width: 100%;
    background-color: #0a67ff;
    border: none;
    padding: 12px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
}

#loginBtn:hover {
    background-color: #005ce0;
}

#errorMessage {
    border-radius: 8px;
}


/* MODAL CERRAR SESION */
.custom-logout-modal {
  border-radius: 14px;
  padding: 10px 0;
  border: none;
  box-shadow: 0 4px 25px rgba(0,0,0,0.15);
}

.custom-logout-modal .modal-body {
  padding: 30px 40px;
}

.custom-btn-cancel {
  background: #f1f1f1;
  border: none;
  padding: 8px 22px;
  border-radius: 8px;
  font-weight: 500;
  transition: 0.2s;
}

.custom-btn-cancel:hover {
  background: #e4e4e4;
}

.custom-btn-accept {
  background: #2d6cdf;
  color: white;
  border: none;
  padding: 8px 22px;
  border-radius: 8px;
  font-weight: 500;
  transition: 0.2s;
}

.custom-btn-accept:hover {
  background: #1e54b8;
}