/* Pacific Cargo — Apple Liquid Glass Light Theme */

html {
    scroll-behavior: smooth;
}

/* ===== LIQUID GLASS (LIGHT) ===== */
.glass {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.04),
        0 4px 12px rgba(0, 0, 0, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.35s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.85);
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.06),
        0 8px 24px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.glass-panel {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(30px) saturate(160%);
    -webkit-backdrop-filter: blur(30px) saturate(160%);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
}

.glass-input {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease;
}

.glass-input:focus {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(255, 70, 5, 0.35);
    box-shadow: 0 0 0 3px rgba(255, 70, 5, 0.08);
    outline: none;
}

.glass-badge {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

/* ===== HERO GLASS (light version) ===== */
.hero-glass {
    background: linear-gradient(135deg, #F5F5F7 0%, #E8E8ED 50%, #F5F5F7 100%);
    position: relative;
}

.hero-glass::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(255, 70, 5, 0.06) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 50%, rgba(161, 161, 166, 0.08) 0%, transparent 60%);
}

/* ===== GRADIENT OVERLAYS ===== */
.gradient-dark {
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.55) 100%);
}

/* ===== SHINE EFFECT ===== */
.shine {
    position: relative;
    overflow: hidden;
}

.shine::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.6s ease;
}

.shine:hover::after {
    left: 100%;
}

/* ===== PAGE CONTENT (static pages from admin) ===== */
.page-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1D1D1F;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}
.page-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1D1D1F;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}
.page-content p {
    color: #86868B;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}
.page-content a {
    color: #FF4605;
    font-weight: 500;
    text-decoration: none;
    transition: opacity 0.2s;
}
.page-content a:hover {
    opacity: 0.8;
    text-decoration: underline;
}
.page-content ul, .page-content ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
    color: #86868B;
}
.page-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}
.page-content h2:first-child {
    margin-top: 0;
}

/* ===== MARQUEE (auto-scroll gallery) ===== */
.marquee-container {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.marquee-track {
    display: flex;
    gap: 1rem;
    animation: marquee-scroll 120s linear infinite;
    width: max-content;
}

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

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== HIDE SCROLLBAR (carousel) ===== */
.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.12);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.2);
}

/* ===== SKELETON LOADING ===== */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ===== ANIMATIONS ===== */
@keyframes fade-in-up {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in-up {
    animation: fade-in-up 0.6s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}

.stagger > * {
    opacity: 0;
    animation: fade-in-up 0.5s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}
.stagger > *:nth-child(1) { animation-delay: 0.05s; }
.stagger > *:nth-child(2) { animation-delay: 0.1s; }
.stagger > *:nth-child(3) { animation-delay: 0.15s; }
.stagger > *:nth-child(4) { animation-delay: 0.2s; }
.stagger > *:nth-child(5) { animation-delay: 0.25s; }
.stagger > *:nth-child(6) { animation-delay: 0.3s; }
.stagger > *:nth-child(7) { animation-delay: 0.35s; }
.stagger > *:nth-child(8) { animation-delay: 0.4s; }

/* ===== PRINT ===== */
@media print {
    header, footer, nav, .no-print { display: none !important; }
    .glass, .glass-card, .glass-panel { background: white !important; backdrop-filter: none !important; }
}
/* deployed via git - Tue Apr  7 15:29:18 PDT 2026 */
