@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    /* Colors from Tailwind Config */
    --color-brand: #0F4C5C;
    --color-brand-light: #1B6072;
    --color-brand-dark: #093642;
    --color-gold: #E2C044;
    --color-gold-hover: #D4B038;
    --color-surface: #F8F9FA;
    --color-text-body: #334155;
    --color-text-muted: #64748B;
    --brand-dark: #093642;
    --brand-main: #0F4C5C;
    --brand-light: #1B6072;
    --gold: #E2C044;
    --text-muted: #64748B;
    --navbar-height-desktop: 6rem;
    --navbar-height-mobile: 3rem;
}

/* ── Base ─────────────────────────────────────────── */
html {
    scroll-behavior: smooth;
}

body {
    background-color: #F8F9FA;
    color: #334155;
    font-family: 'Inter', sans-serif;
    margin: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


/* ── Scrollbar ───────────────────────────────────── */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #F8F9FA;
}

::-webkit-scrollbar-thumb {
    background: #CBD5E1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0F4C5C;
}


/* ── Shadows ─────────────────────────────────────── */
.shadow-luxury {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.01);
}

.shadow-glass {
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}

/* ══════════════════════════════════════════════════
   NAVBAR — Always solid white, always readable
   Gains a stronger shadow as you scroll down.
══════════════════════════════════════════════════ */
nav.navbar {
    height: 5rem;
    background: #ffffff !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.35s ease;
}

/* Slightly more prominent shadow on scroll */
nav.navbar.nav-scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.10) !important;
}

/* All nav text — dark, clear, always readable */
nav.navbar .nav-brand {
    color: var(--color-brand) !important;
}

nav.navbar .nav-link-item {
    color: #475569;
    transition: color 0.2s ease;
}

nav.navbar .nav-link-item:hover {
    color: var(--color-brand) !important;
}

nav.navbar .navbar-toggler {
    border-color: rgba(0, 0, 0, 0.18);
}

/* Active/current page link gets brand colour */
nav.navbar .nav-link-active {
    color: var(--color-brand) !important;
    font-weight: 600;
}

/* ── Scroll anchor offset (fixed navbar clearance) ── */
[id] {
    scroll-margin-top: 5.5rem;
}

/* ── Reveal Animations (IntersectionObserver) ────── */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.reveal-on-scroll.is-visible .stagger-child:nth-child(1) {
    transition-delay: 0.05s;
}

.reveal-on-scroll.is-visible .stagger-child:nth-child(2) {
    transition-delay: 0.12s;
}

.reveal-on-scroll.is-visible .stagger-child:nth-child(3) {
    transition-delay: 0.19s;
}

.reveal-on-scroll.is-visible .stagger-child:nth-child(4) {
    transition-delay: 0.26s;
}

.reveal-on-scroll.is-visible .stagger-child:nth-child(5) {
    transition-delay: 0.33s;
}

.reveal-on-scroll.is-visible .stagger-child:nth-child(6) {
    transition-delay: 0.40s;
}

.stagger-child {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.is-visible .stagger-child {
    opacity: 1;
    transform: translateY(0);
}

/* ── Hero animations ─────────────────────────────── */
@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: heroFadeUp 1.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.25s;
    opacity: 0;
}

@keyframes heroScroll {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.5;
    }

    50% {
        transform: translateY(7px);
        opacity: 0.9;
    }
}

/* ── Marquee ─────────────────────────────────────── */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.marquee-content {
    display: inline-flex;
    animation: marquee 38s linear infinite;
}

.marquee-content:hover {
    animation-play-state: paused;
}

.marquee-container {
    overflow: hidden;
    white-space: nowrap;
}

/* ── Voyager scroll ───────────────────────────────── */
.voyager-scroll::-webkit-scrollbar {
    display: none;
}

.voyager-scroll {
    scrollbar-width: none;
}

/* ── Hover card lift ──────────────────────────────── */
.hover-lift {
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.25s ease;
}

.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 40px -8px rgba(9, 54, 66, 0.12);
}

/* ── Profile card ────────────────────────────────── */
.profile-card {
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.profile-card:hover {
    border-color: var(--color-brand) !important;
    background: rgba(15, 76, 92, 0.03);
    transform: translateY(-2px);
}

/* ── Image scale on hover ────────────────────────── */
.hover-scale img {
    transition: transform 0.7s ease;
}

.hover-scale:hover img {
    transform: scale(1.05);
}

/* ── Buttons ─────────────────────────────────────── */
.btn-brand {
    background-color: var(--color-brand);
    color: white;
    border-radius: 50rem;
    padding: 12px 32px;
    border: none;
    display: inline-block;
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 14px 0 rgba(15, 76, 92, 0.25);
    cursor: pointer;
    text-decoration: none;
}

.btn-brand:hover {
    background-color: var(--color-brand-light);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px 0 rgba(15, 76, 92, 0.3);
}

.btn-brand:active {
    transform: translateY(0);
}

.link-brand {
    color: var(--color-brand);
    text-decoration: none;
    border-bottom: 1px solid var(--color-brand);
    padding-bottom: 2px;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    transition: color 0.2s ease;
}

.link-brand:hover {
    color: var(--color-brand-light);
}

/* ── Accordion ───────────────────────────────────── */
.accordion-button:not(.collapsed) {
    color: var(--color-brand-dark);
    background: rgba(15, 76, 92, 0.03);
}

.accordion-button:focus {
    box-shadow: none;
    outline: 2px solid var(--color-brand);
}

/* ── Utility ─────────────────────────────────────── */
.hidden {
    display: none !important;
}


.cursor-pointer {
    cursor: pointer;
}

/* ── Loader ──────────────────────────────────────── */
.spinner {
    width: 48px;
    height: 48px;
    border: 3px solid rgba(226, 192, 68, 0.3);
    border-radius: 50%;
    border-top-color: #E2C044;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ── Reduced motion ──────────────────────────────── 
This block targets users who have turned on "Reduce Motion" in their operating system settings
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal-on-scroll,
  .stagger-child {
    opacity: 1;
    transform: none;
  }
}
  */


body {
    font-family: 'Inter', sans-serif;
    color: var(--color-text-body);
    overflow-x: hidden;
}

/* Typography */
.font-serif {
    font-family: 'Playfair Display', serif;
}

.text-brand {
    color: var(--color-brand) !important;
}

.text-brand-dark {
    color: var(--color-brand-dark) !important;
}

.text-gold {
    color: var(--color-gold) !important;
}

.bg-brand {
    background-color: var(--color-brand) !important;
}

.bg-surface {
    background-color: var(--color-surface) !important;
}

.bg-gold {
    background-color: rgb(226 192 68 / 1);
    border-radius: 0.125rem;
}

.bg-transport {
    background: #deffe8;
    background: linear-gradient(317deg, rgba(222, 255, 232, 1) 0%, rgba(255, 255, 255, 1) 100%, rgba(255, 255, 255, 1) 100%);
}

.bg-activity {
    background: #def7ff;
    background: linear-gradient(317deg, rgba(222, 247, 255, 1) 0%, rgba(255, 255, 255, 1) 100%, rgba(255, 255, 255, 1) 100%);
}

.bg-activity-vip {
    background: #fcfcbd;
    background: linear-gradient(317deg, rgba(252, 252, 189, 1) 0%, rgba(255, 255, 255, 1) 100%, rgba(255, 255, 255, 1) 100%);
}

/* Utility Helpers */
.tracking-wide {
    letter-spacing: 0.025em;
}

.tracking-widest {
    letter-spacing: 0.1em;
}

.object-cover {
    object-fit: cover;
}


/* Glassmorphism */
.glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    /* border-radius: 2rem;
    padding: 3rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05); */
}

/* ── Glass (cards only — NOT navbar) ─────────────── */
.glass-panel {
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.55);
}

/* Buttons & Links */
.btn-brand {
    background-color: var(--color-brand);
    color: white;
    border-radius: 50rem;
    padding: 12px 32px;
    transition: all 0.5s ease;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-brand:hover {
    background-color: var(--color-brand-light);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}



/* Grid System overrides for 5 columns */
.grid-5-cols {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .grid-5-cols {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 992px) {
    .grid-5-cols {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Hover Effects */
.hover-scale img {
    transition: transform 0.7s ease;
}

.hover-scale:hover img {
    transform: scale(1.1);
}

/* Marquee Animation */
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-flex;
    animation: marquee 30s linear infinite;
}

.marquee-content:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    /* animation: fadeInUp 0.8s ease-out forwards; */
    animation: fadeInUp 1.2s cubic-bezier(0.21, 0.6, 0.35, 1) forwards;
    animation-delay: 0.3s;
}


/* Navbar specifics */
nav.navbar {
    height: var(--navbar-height-desktop);
    /* h-24 */
}

@media (max-width: 576px) {
    nav.navbar {
        height: var(--navbar-height-mobile);
    }
}

/* Hero Image Gradient Fix */
.hero-gradient {
    background: linear-gradient(to bottom,
            rgba(9, 54, 66, 0.3) 0%,
            transparent 50%,
            var(--surface) 100%);
}

input[type="text"]::placeholder {
    opacity: 0.5;
    /* Value between 0.0 (invisible) and 1.0 (fully opaque) */
}