html,
body {
    margin: 0%;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    scroll-behavior: smooth;
    background-color: var(--global-background-color);
}

:root { 
    --bg: #f8f9fa; 
    --text: #1a1a1a; 
    --accent: #8d99ae; 
    --line: #dee2e6; 
    --primary-color: #F9A826;
    --primary-color2: #C5950B;
    --title-color: #141313;
    --text-color: #353535;
    --border-color: #201f1f17;
    --global-background-color: #FFFEFD;
    --gradient-color: linear-gradient(90deg, #F9A826 0%, #C5950B 100%);
    --shadow-color: 0px 10px 30px rgba(118, 85, 225, 0.3);
    --box-shadow: 0px 10px 30px rgba(57, 56, 61, 0.205);
    --roboto: 'Kodchasan', sans-serif;
}

/* CSS Variables for Travel Gallery */
.stats-dashboard {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
    background: white; padding: 25px; border-radius: 15px; box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}
.stat-value { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; display: block; }
.stat-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 2px; color: var(--accent); }
.view-toggle { text-align: center; margin-bottom: 30px; }
.toggle-btn {
    background: #e9ecef; border: none; padding: 10px 25px; margin: 0 5px;
    border-radius: 30px; cursor: pointer; font-weight: 600; transition: 0.3s;
}
.toggle-btn.active { background: var(--text); color: white; }
#map-view { height: 500px; border-radius: 15px; display: none; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.year-section { position: relative; padding-bottom: 40px; border-left: 2px solid var(--line); margin-left: 40px; padding-left: 40px; }
.year-title { font-family: 'Playfair Display', serif; font-size: 2.2rem; position: absolute; left: -110px; top: -5px; color: #ced4da; }
.trip-card { background: white; padding: 15px; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); display: flex; gap: 20px; align-items: center; margin-bottom: 25px; }
.photo-placeholder { width: 140px; height: 140px; border-radius: 8px; overflow: hidden; border: 4px solid #fff; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.photo-placeholder img { width: 100%; height: 100%; object-fit: cover; }
.hidden { display: none !important; }
@media (max-width: 700px) {
    .trip-card { flex-direction: column; }
    .year-title { position: static; color: var(--text); }
    .year-section { margin-left: 0; padding-left: 20px; }
}

.trip-info .flag-icon {
    display: inline-block;
    width: 1em;
    line-height: 1em;
    vertical-align: middle;
    box-shadow: 0 0 1px rgba(0,0,0,0.2);
}

/* Prevent image dragging and selection */
.protected-img {
    pointer-events: auto;
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    cursor: zoom-in;
}

/* The invisible shield */
.lum-lightbox-inner {
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
}

/* Ensure image scales properly without cropping */
.lum-lightbox-inner img {
    max-width: 100% !important;
    max-height: 100% !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    pointer-events: none !important;
    user-select: none !important;
    -webkit-user-drag: none !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    -webkit-touch-callout: none !important;
}

/* Protect the entire lightbox from interactions */
.lum-lightbox {
    -webkit-user-select: none !important;
    user-select: none !important;
    -webkit-touch-callout: none !important;
}

.lum-lightbox-image {
    pointer-events: none !important;
    user-select: none !important;
    -webkit-user-drag: none !important;
    -webkit-touch-callout: none !important;
}

/* Invisible overlay to catch all clicks and interactions */
.lum-lightbox::before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 9999 !important;
    pointer-events: auto !important;
    background: transparent !important;
}

/* Hide the close button completely */
.lum-close-button {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

/* Mobile-specific adjustments to UI buttons */
@media (max-width: 700px) {
    .lum-close-button {
        display: none !important;
        visibility: hidden !important;
    }
}

.year-filter-wrapper .custom-select {
    border: 1px solid var(--line);
    border-radius: 25px;
    padding: 5px 20px;
    font-size: 0.9rem;
    background-color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.year-filter-wrapper .custom-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 5px rgba(141, 153, 174, 0.3);
    outline: none;
}

/* Ensure smooth transitions when filtering */
.year-section {
    transition: opacity 0.4s ease;
}

/* Container for the quote and line */
.header-quote-wrapper {
    height: 50px; /* Adjust based on your preferred header thickness */
}

.header-quote-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quote-top {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.4rem;
    color: #6c757d;
    line-height: 1;
}

.quote-bottom {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #adb5bd;
    line-height: 1.5;
    margin-top: 2px;
}

/* The vertical line on the far right */
.quote-vertical-line {
    width: 2px;
    height: 100%; /* Spans the height of the wrapper to center the text */
    background-color: #dee2e6; /* Matches var(--line) */
}

#top-nav-fixed {
    height: 85px;
    display: flex;
    align-items: center;
}

/* */
.airline-slider-section {
    padding: 20px 0;
    background: #fff;
    overflow: hidden;
    border-top: none !important; /* Forcefully remove top border */
    margin-top: 0 !important;   /* Ensure no gap exists */
}

.airline-slider {
    width: 100%;
    height: 120px;
    position: relative;
}

.airline-track img {
    width: 150px; /* Adjust size as needed */
    height: auto;
    margin: 0 40px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
    object-fit: contain;
}

/* Optional: Bring back color on hover */
.airline-track img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.airline-slider:hover .airline-track {
    animation-play-state: paused;
}

.airline-track {
    display: flex;
    width: max-content; /* This ensures the track is wide enough for all images */
    animation: scroll-logos 80s linear infinite; /* 80s: increase it to slow down */
}

@keyframes scroll-logos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Moves exactly half the width (one full set of logos) */
}

#addressCanvas {
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    pointer-events: none; 
}