/* Mirabilia Travel — shared styles for all pages */

/* Base font families (some exports rely on these globals instead of utilities) */
body { font-family: 'Be Vietnam Pro', sans-serif; }
h1, h2, h3, h4, h5, h6, .headline, .nav-brand { font-family: 'Plus Jakarta Sans', sans-serif; }

/* Material Symbols */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    display: inline-block;
    vertical-align: middle;
}
.material-symbols-outlined.fill,
.material-symbols-fill {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* Glass surfaces */
.glass-nav {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.glass-panel {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Hero gradients */
.hero-gradient {            /* itinerary hero: teal to dark */
    background: linear-gradient(to bottom, rgba(32, 28, 27, 0.55) 0%, rgba(0, 0, 0, 0.6) 100%);
}
.hero-gradient-soft {       /* blog hero: soft neutral fading to page background */
    background: linear-gradient(180deg, rgba(35, 32, 31, 0.06) 0%, rgba(249, 249, 252, 1) 100%);
}
.glass-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.glass-effect {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Itinerary timeline */
.timeline-line::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 32px;
    bottom: -16px;
    width: 2px;
    background: #cbc7c5;
    opacity: 0.2;
}
.timeline-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #de2a38;
    position: relative;
    z-index: 10;
}

/* Cards */
.bento-card {
    transition: transform .3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .3s ease;
}
.bento-card:hover {
    transform: scale(1.02);
}
.hover-scale {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-scale:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 70, 79, 0.15);
}

/* Hero slow zoom (class existed in exports without keyframes) */
@keyframes subtle-zoom {
    from { transform: scale(1); }
    to   { transform: scale(1.08); }
}
.animate-subtle-zoom {
    animation: subtle-zoom 30s ease-in-out infinite alternate;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .animate-subtle-zoom,
    .animate-bounce {
        animation: none !important;
    }
}
