/* Colores de Vashon Tours*/
:root {
    --vashon-green: #2D4F36;
    --vashon-accent: #C4A47C;
    /* Un tono tierra/madera para botones */
    --vashon-light: #F9F8F1;
}



/* =========================
  Body y Tipografía
   ========================= */
body {
    background-color: var(--vashon-light);
    color: var(--vashon-green);
}

/* Tipografía de imprenta */
.display-5 {
    letter-spacing: -1px;
    font-weight: 800 !important;
}

/* =========================
Narbar
   ========================= */

.navbar {
    background-color: var(--vashon-green) !important;
}

.vashon-nav {
    background-color: #2D4F36;
    /* El verde bosque de la imagen */
    padding: 1rem 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Estilo de los Enlaces */
.navbar-dark .navbar-nav .nav-link {
    color: #F9F8F1;
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: #C4A47C;
    /* Color tierra al pasar el mouse */
}



.btn-reserve {
    background-color: transparent;
    border: 2px solid #F9F8F1;
    color: #F9F8F1;
    border-radius: 0;
    /* Estilo cuadrado y elegante como la imagen */
    padding: 8px 20px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.btn-reserve:hover {
    background-color: #F9F8F1;
    color: #2D4F36;
}

/* Estilo para el switch de idioma */
.lang-switch {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8) !important;
    transition: color 0.3s ease;
    padding: 0.5rem;
}

.lang-switch:hover {
    color: #ffffff !important;
}

.lang-switch i {
    font-size: 1rem;
}

/* Ajuste responsive para móviles */
@media (max-width: 991.98px) {
    .lang-switch {
        padding: 1rem 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        justify-content: center;
    }
}

/* Estilo del Texto del Logo */
.brand-text {
    font-weight: 700;
    letter-spacing: 2px;
    color: #F9F8F1;
}


/* Ajuste para móviles */
@media (max-width: 991px) {
    .navbar-nav {
        padding-top: 20px;
    }

    .btn-reserve {
        margin-top: 15px;
        width: 100%;
    }
}


/* =========================
Parallax
========================== */

.hero-section {
    height: 90vh;
    background-image: linear-gradient(rgba(45, 79, 54, 0.4), rgba(45, 79, 54, 0.4)),
        url('../img/faro_vashon.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.hero-content h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: -1px;
}

.btn-primary-vashon {
    background-color: #C4A47C;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 0;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary-vashon:hover {
    background-color: #A68A66;
    color: white;
    transform: translateY(-3px);
}


/* =========================
Experiences section
========================== */


/* Experiences section */
.card-vashon {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 0;
    /* Mantenemos el estilo minimalista y cuadrado */
}

.card-vashon:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(45, 79, 54, 0.1) !important;
}

.btn-text-link {
    color: #C4A47C;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-text-link:hover {
    color: #2D4F36;
}

/* =========================
Steps section
========================== */

.step-number {
    background-color: #2D4F36;
    color: #F9F8F1;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    /* Evita que el círculo se deforme */
}

.step-item h5 {
    color: #2D4F36;
    margin-bottom: 5px;
}


/* =========================
Why us section
========================== */

.icon-circle {
    width: 70px;
    height: 70px;
    background-color: #F9F8F1;
    /* El crema que usamos antes */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #C4A47C;
    /* El dorado/tierra de tus botones */
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.icon-box:hover .icon-circle {
    background-color: #2D4F36;
    color: #F9F8F1;
    transform: rotateY(180deg);
}


/* =========================
About US / Contact US / Page-section
========================== */



/* Estilos para la sección de Contacto */
.contact-section {
    background-color: var(--vashon-light);
    /* Fondo crema claro */
}

.contact-card {
    background-color: #ffffff;
    /* Fondo blanco para las tarjetas para que resalten */
    border: 1px solid rgba(45, 79, 54, 0.1);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-link {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    text-decoration: none;
    color: #fff !important;
    background-color: var(--vashon-green);
    /* Verde principal */
    padding: 12px 28px;
    border-radius: 50px;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(45, 79, 54, 0.2);
}

.contact-link:hover {
    background-color: var(--vashon-accent);
    /* Cambia al color arena/madera */
    color: #fff !important;
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(196, 164, 124, 0.4);
}


/* =========================
Contact US Form 
========================== */


/* Contenedor del Formulario */
.contact-card {
    background-color: #ffffff;
    border-radius: 1.5rem;
    padding: 2.5rem;
    border: none;
    transition: box-shadow 0.3s ease;
}

/* Estilo de los Inputs */
.vashon-input {
    background-color: #f8f9fa !important;
    border: 2px solid transparent !important;
    border-radius: 0.75rem !important;
    padding: 0.8rem 1rem !important;
    font-size: 1rem;
    transition: all 0.3s ease !important;
}

.vashon-input:focus {
    background-color: #ffffff !important;
    border-color: #2D4F36 !important;
    box-shadow: 0 0 0 0.25rem rgba(45, 79, 54, 0.1) !important;
    outline: none;
}

/* Etiquetas */
.vashon-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 0.5rem;
    display: block;
}

/* Botón Personalizado */
.btn-vashon-form {
    background-color: #2D4F36;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 50px;
    font-weight: 700;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn-vashon-form:hover {
    background-color: #24402b;
    transform: translateY(-2px);
    color: white;
}



/* =========================
Book Now Multi Step Form 
========================== */



/* Step Line progress Bar */

/* Contenedor de la línea */
.step-line {
    height: 4px;
    background-color: #e9ecef;
    position: absolute;
    top: 18px;
    width: 100%;
    z-index: 1;
}

#line-progress {
    width: 0%;
    height: 100%;
    background-color: #2D4F36;
    transition: all 0.5s ease;
}

.step-circle {
    width: 36px;
    height: 36px;
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    font-weight: bold;
    color: #adb5bd;
    position: relative;
}

.step-circle.active {
    border-color: #2D4F36;
    color: #2D4F36;
}

.step-circle.completed {
    background: #2D4F36;
    border-color: #2D4F36;
    color: #fff;
}

.step-label {
    position: absolute;
    top: 45px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #adb5bd;
    white-space: nowrap;
}

.active .step-label,
.completed .step-label {
    color: #2D4F36;
}

.step-content {
    display: none;
}

.step-content.active {
    display: block;
}

/* Ocultar etiquetas en pantallas muy pequeñas si es necesario */
@media (max-width: 576px) {
    .step-label {
        display: none;
    }
}





/* Personalización de Flatpickr para que combine con tu verde #2D4F36 */
.flatpickr-calendar {
    border: none !important;
    box-shadow: none !important;
    width: 100% !important;
}

.flatpickr-day.selected {
    background: #2D4F36 !important;
    border-color: #2D4F36 !important;
}

.flatpickr-months .flatpickr-month {
    color: #2D4F36 !important;
    fill: #2D4F36 !important;
}

.vashon-calendar-wrapper {
    border: 1px solid #eee;
    min-height: 300px;
}

#tour_date,
.flatpickr-input {
    display: none !important;
    visibility: hidden !important;
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}



/* Contenedor principal del formulario */
.booking-window {
    overflow: hidden;
    position: relative;
    min-height: 500px;
}

/* Estilo de los pasos individuales */
.step-content {
    width: 100%;
    flex-shrink: 0;
    display: none;
    /* GSAP lo manejará, pero empezamos limpio */
    opacity: 0;
    display: none;
}

.step-content.active {
    display: block;
    opacity: 1;
    display: block !important;
}

/* Timeline / Progress Bar */
.vashon-progress-wrapper {
    position: relative;
    margin-bottom: 3rem;
}

.progress-line {
    position: absolute;
    top: 50%;
    left: 0;
    height: 2px;
    background: #e9ecef;
    width: 100%;
    z-index: 1;
    transform: translateY(-50%);
}

.progress-line-fill {
    position: absolute;
    top: 50%;
    left: 0;
    height: 3px;
    background: #2D4F36;
    width: 0%;
    /* Animado por GSAP */
    z-index: 2;
    transform: translateY(-50%);
    transition: width 0.4s ease;
}

.step-dot {
    width: 35px;
    height: 35px;
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 50%;
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #adb5bd;
    transition: all 0.3s ease;
}

.step-dot.active {
    border-color: #2D4F36;
    color: #2D4F36;
    transform: scale(1.1);
}

.step-dot.completed {
    background: #2D4F36;
    border-color: #2D4F36;
    color: white;
}



.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(45, 79, 54, 0.1) !important;
}

.bg-light {
    background-color: #f8f9fa !important;
}

/* Estilo personalizado para el checkbox */
.form-check-input:checked {
    background-color: #2D4F36 !important;
    border-color: #2D4F36 !important;
}



.booking-summary-card {
    position: relative;
    border: 1px solid #edf2f7 !important;
}

/* Efecto de "corte de ticket" opcional en los bordes */
.booking-summary-card::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 10%;
    right: 10%;
    height: 20px;
    background: transparent;
    /* Esto es solo un detalle visual sutil */
}

.total-section {
    border: 1px dashed #cbd5e0;
}

.btn-success.py-3 {
    transition: all 0.3s ease;
    border: none;
    background: linear-gradient(135deg, #2D4F36 0%, #4a7c56 100%);
}

.btn-success.py-3:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 20px rgba(45, 79, 54, 0.2) !important;
}