/* ---------------------------------------
   VANCOUVER PAGE — ONLY FOR THIS PAGE
----------------------------------------- */

/* HERO */
#vancouver-hero {
    width: 100%;
    height: 70vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

#vancouver-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

#vancouver-hero .hero-content {
    position: relative;
    z-index: 2;
}

#vancouver-hero h1 {
    padding-top: 90px;
    font-size: 44px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 10px;
    text-shadow: 0 4px 12px rgba(0,0,0,0.45);
}
.vancouver-hero-text p {
    font-size: 18px;
    color: #fff;
    text-shadow: 0 3px 12px rgba(0,0,0,0.35);
    text-align: center;
}

/* IMAGE CARDS */
.vancouver-card-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 16px;
}

/* CARD STYLE (Experience + Stay) */
.experience-card,
.stay-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    transition: 0.25s ease;
}

.experience-card:hover,
.stay-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 26px rgba(0,0,0,0.10);
}

h3 {
    color: #165a58;
}
.vancouver-content {
    max-width: 1100px;
    margin: 10px auto;
    padding: 0 10px;
}

.vancouver-section {
    margin-top: 0px;
    margin-bottom: 32px;
    align-items: center;
    padding-top: 0px;
}
.vancouver-page section {
    padding-top: 0% 0;    /* Reduced from 80px → perfect spacing */
}
.vancouver-page .tight-section {
    padding: 10px 0;  /* super-clean Apple-style spacing */
}