html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1D2D35;
    background-color: #F8F9FA;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Outfit', sans-serif;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #F8F9FA;
}

::-webkit-scrollbar-thumb {
    background: #1B4332;
    border-radius: 5px;
}

.hero-overlay {
    background: linear-gradient(180deg, rgba(15, 30, 22, 0.55) 0%, rgba(15, 30, 22, 0.55) 40%, rgba(27, 67, 50, 0.85) 100%);
}

.gradient-text {
    background: linear-gradient(135deg, #FFB703 0%, #FB8500 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glass {
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(27, 67, 50, 0.08);
    color: #1B4332;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.section-tag-light {
    background: rgba(255, 255, 255, 0.12);
    color: #FFB703;
}

.dotted-pattern {
    background-image: radial-gradient(circle, #1B4332 1px, transparent 1px);
    background-size: 18px 18px;
    opacity: 0.12;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-12px)
    }
}

.float-anim {
    animation: float 5s ease-in-out infinite;
}

.dest-card {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.dest-card:hover {
    transform: translateY(-10px);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 1rem;
}

.gallery-item img {
    transition: transform 0.7s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item:hover img {
    transform: scale(1.12);
}

.gallery-item .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(15, 30, 22, 0.85) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 1.25rem;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.timeline-line {
    position: absolute;
    top: 40px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 183, 3, 0.45) 20%, rgba(255, 183, 3, 0.45) 80%, transparent);
    z-index: 0;
}

.testi-track {
    display: flex;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.dest-track {
    display: flex;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes marquee {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 35s linear infinite;
}

@keyframes pulseDot {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 183, 3, 0.6)
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 183, 3, 0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 183, 3, 0)
    }
}

.pulse-dot {
    animation: pulseDot 2s infinite;
}

.header-scrolled {
    background: rgba(255, 255, 255, 0.92) !important;
    backdrop-filter: blur(16px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.header-scrolled .header-logo-text,
.header-scrolled nav a,
.header-scrolled nav button {
    color: #1D2D35 !important;
}

.header-scrolled #mobileMenuBtn {
    color: #1D2D35 !important;
}

input:-webkit-autofill {
    -webkit-text-fill-color: #fff;
    transition: background-color 9999s ease-in-out 0s;
}

.custom-select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23FFB703' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    z-index: 0;
}

/* Lightbox */
#lightbox {
    transition: opacity 0.3s ease;
}

#lightbox.lb-active {
    display: flex !important;
}

.lb-img-anim {
    animation: lbFadeIn 0.4s ease;
}

@keyframes lbFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}