/* ============================
   LOST LADS — STYLES
   ============================ */

:root {
    --bg-dark: #0a0e1a;
    --bg-card: #111827;
    --bg-card-hover: #1a2236;
    --bg-section-alt: #070b14;
    --accent-primary: #f97316;
    --accent-secondary: #ec4899;
    --accent-teal: #14b8a6;
    --accent-gold: #fbbf24;
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --border: rgba(255,255,255,0.06);
    --border-accent: rgba(249,115,22,0.3);
    --glow-orange: 0 0 40px rgba(249,115,22,0.15);
    --glow-pink: 0 0 40px rgba(236,72,153,0.15);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --font-main: 'Outfit', sans-serif;
    --font-display: 'Space Grotesk', sans-serif;
}

/* ====== RESET ====== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-main);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================
   PASSWORD GATE
   ============================ */
#password-gate {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-dark);
}

.gate-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(249,115,22,0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(236,72,153,0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 80%, rgba(20,184,166,0.06) 0%, transparent 50%);
    animation: gatePulse 8s ease-in-out infinite;
}

@keyframes gatePulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.gate-content {
    position: relative;
    text-align: center;
    max-width: 480px;
    padding: 48px 40px;
    background: rgba(17,24,39,0.8);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(20px);
    animation: gateFloat 6s ease-in-out infinite;
}

@keyframes gateFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

.gate-emoji {
    font-size: 48px;
    margin-bottom: 16px;
}

.gate-title {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
    margin-bottom: 8px;
}

.gate-subtitle {
    color: var(--text-secondary);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 24px;
}

.gate-hint {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 20px;
}

.gate-input-wrap {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.gate-input-wrap input {
    flex: 1;
    padding: 14px 18px;
    background: rgba(0,0,0,0.4);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 16px;
    font-family: var(--font-main);
    outline: none;
    transition: border-color 0.3s;
}

.gate-input-wrap input:focus {
    border-color: var(--accent-primary);
}

.gate-input-wrap input::placeholder {
    color: var(--text-muted);
}

#password-btn {
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--accent-primary), #ea580c);
    border: none;
    border-radius: var(--radius-md);
    color: white;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}

#password-btn:hover {
    transform: scale(1.05);
    box-shadow: var(--glow-orange);
}

.gate-error {
    color: #ef4444;
    font-size: 14px;
    min-height: 20px;
    margin-bottom: 8px;
    transition: opacity 0.3s;
}

.gate-clue {
    color: var(--text-muted);
    font-size: 13px;
    font-style: italic;
}

/* Gate shake animation */
@keyframes gateShake {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-12px); }
    40% { transform: translateX(10px); }
    60% { transform: translateX(-8px); }
    80% { transform: translateX(6px); }
}

.gate-shake {
    animation: gateShake 0.5s ease-in-out !important;
}

/* Gate success */
.gate-success {
    animation: gateSuccess 0.6s ease forwards !important;
}

@keyframes gateSuccess {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); }
    100% { transform: scale(0.9); opacity: 0; }
}

/* ============================
   ACKNOWLEDGEMENT
   ============================ */
#acknowledgement {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-dark);
}

.ack-content {
    position: relative;
    text-align: center;
    max-width: 520px;
    padding: 48px 40px;
    background: rgba(17,24,39,0.8);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(20px);
    animation: fadeInUp 0.6s ease;
}

.ack-emoji {
    font-size: 48px;
    margin-bottom: 16px;
}

.ack-title {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.ack-subtitle {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 28px;
}

.ack-truths {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
    text-align: left;
}

.ack-truth {
    font-size: 15px;
    color: var(--text-primary);
    padding: 12px 18px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    animation: fadeInUp 0.5s ease both;
}

.ack-truth:nth-child(1) { animation-delay: 0.1s; }
.ack-truth:nth-child(2) { animation-delay: 0.2s; }
.ack-truth:nth-child(3) { animation-delay: 0.3s; }
.ack-truth:nth-child(4) { animation-delay: 0.4s; }
.ack-truth:nth-child(5) { animation-delay: 0.5s; }

.ack-enter-btn {
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--accent-primary), #ea580c);
    border: none;
    border-radius: var(--radius-md);
    color: white;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    animation: fadeInUp 0.5s ease 0.7s both;
    letter-spacing: 0.5px;
}

.ack-enter-btn:hover {
    transform: scale(1.05);
    box-shadow: var(--glow-orange);
}

@media (max-width: 768px) {
    .ack-content {
        margin: 20px;
        padding: 32px 24px;
    }

    .ack-title {
        font-size: 28px;
    }
}

/* ============================
   NAVIGATION
   ============================ */
#main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(10,14,26,0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: transform 0.3s;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.nav-logo {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 18px;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 8px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
}

.nav-links a:hover {
    color: var(--text-primary);
    background: rgba(255,255,255,0.05);
}

.nav-members {
    display: flex;
    gap: 8px;
}

.member-badge {
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
}

.member-badge.cip {
    background: rgba(249,115,22,0.15);
    color: var(--accent-primary);
    border: 1px solid rgba(249,115,22,0.3);
}

.member-badge.jonas {
    background: rgba(20,184,166,0.15);
    color: var(--accent-teal);
    border: 1px solid rgba(20,184,166,0.3);
}

/* ============================
   HERO
   ============================ */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.35) saturate(1.2);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10,14,26,0.3) 0%,
        rgba(10,14,26,0.5) 50%,
        rgba(10,14,26,0.95) 100%
    );
}

.hero-content {
    position: relative;
    text-align: center;
    padding: 120px 24px 80px;
}

.hero-tag {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-primary);
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-title {
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-line1 {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(40px, 8vw, 80px);
    font-weight: 900;
    letter-spacing: 4px;
    background: linear-gradient(135deg, #fff 0%, var(--accent-primary) 50%, var(--accent-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.hero-line2 {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(14px, 2.5vw, 24px);
    font-weight: 400;
    color: var(--text-secondary);
    letter-spacing: clamp(2px, 0.5vw, 5px);
    text-transform: uppercase;
    margin-top: 8px;
    padding: 0 16px;
}

.hero-desc {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 28px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-flags {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 36px;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.flag-chip {
    padding: 10px 22px;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 16px;
    backdrop-filter: blur(8px);
}

.flag-divider {
    font-size: 24px;
}

.hero-crew {
    display: flex;
    justify-content: center;
    gap: 24px;
    animation: fadeInUp 0.8s ease 1s both;
}

.crew-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 28px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(8px);
    transition: transform 0.3s, border-color 0.3s;
}

.crew-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-primary);
}

.crew-avatar {
    width: 64px;
    height: 64px;
}

.crew-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.crew-card span {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: fadeInUp 0.8s ease 1.2s both;
}

.hero-scroll-indicator span {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-arrow {
    font-size: 20px;
    color: var(--accent-primary);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

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

/* ============================
   SECTIONS
   ============================ */
.section {
    padding: 100px 0;
}

.section-dark {
    background: var(--bg-section-alt);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: var(--accent-primary);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--text-primary), var(--accent-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 17px;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================
   OVERVIEW GRID
   ============================ */
.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.overview-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease calc(var(--delay) * 0.1s) both;
}

.overview-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent-primary);
    box-shadow: var(--glow-orange);
}

.ov-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.overview-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.overview-card p {
    color: var(--text-muted);
    font-size: 13px;
}

/* ============================
   CHAPTERS TIMELINE
   ============================ */
.chapters-timeline {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.chapters-timeline::before {
    content: '';
    position: absolute;
    left: 32px;
    top: 24px;
    bottom: 24px;
    width: 2px;
    background: linear-gradient(180deg, var(--border) 0%, var(--accent-primary) 85%, var(--accent-secondary) 100%);
}

.chapter-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    position: relative;
    transition: all 0.3s ease;
}

.chapter-card.past {
    opacity: 0.6;
}

.chapter-card.past:hover {
    opacity: 0.85;
    border-color: rgba(255,255,255,0.12);
}

.chapter-card.current {
    border-color: var(--accent-primary);
    background: rgba(249,115,22,0.06);
    box-shadow: var(--glow-orange);
    opacity: 1;
}

.chapter-number {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 900;
    color: var(--accent-primary);
    min-width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-dark);
    border: 2px solid var(--border);
    border-radius: 50%;
    z-index: 1;
}

.chapter-card.current .chapter-number {
    border-color: var(--accent-primary);
    background: rgba(249,115,22,0.15);
}

.chapter-info {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.chapter-info h3 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
}

.chapter-status {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    white-space: nowrap;
}

.chapter-status.done {
    background: rgba(20,184,166,0.1);
    color: var(--accent-teal);
    border: 1px solid rgba(20,184,166,0.2);
}

.chapter-status.now {
    background: rgba(249,115,22,0.15);
    color: var(--accent-primary);
    border: 1px solid rgba(249,115,22,0.3);
    animation: chapterPulse 2s ease-in-out infinite;
}

@keyframes chapterPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(249,115,22,0.2); }
    50% { box-shadow: 0 0 12px 4px rgba(249,115,22,0.15); }
}

@media (max-width: 768px) {
    .chapters-timeline::before {
        left: 28px;
    }

    .chapter-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .chapter-info h3 {
        font-size: 14px;
    }
}

/* ============================
   COUNTRY HERO IMAGE
   ============================ */
.country-hero-img {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: 48px;
    max-height: 350px;
}

.country-hero-img img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.country-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(10,14,26,0.9) 100%);
    display: flex;
    align-items: flex-end;
    padding: 28px;
}

.country-hero-overlay span {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* ============================
   DAY CARDS (Itinerary)
   ============================ */
.itinerary {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.day-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color 0.3s;
}

.day-card:hover {
    border-color: rgba(249,115,22,0.2);
}

.day-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 24px;
    cursor: pointer;
    user-select: none;
    transition: background 0.2s;
}

.day-header:hover {
    background: rgba(255,255,255,0.02);
}

.day-number {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 900;
    color: var(--accent-primary);
    min-width: 52px;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.day-card:hover .day-number,
.day-card.open .day-number {
    opacity: 1;
}

.day-info {
    flex: 1;
}

.day-info h3 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
}

.day-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.meta-badge {
    font-size: 12px;
    padding: 3px 10px;
    border-radius: 6px;
    font-weight: 500;
}

.meta-badge.location {
    background: rgba(20,184,166,0.1);
    color: var(--accent-teal);
    border: 1px solid rgba(20,184,166,0.2);
}

.meta-badge.transport {
    background: rgba(251,191,36,0.1);
    color: var(--accent-gold);
    border: 1px solid rgba(251,191,36,0.2);
}

.day-toggle {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 300;
    color: var(--text-muted);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    transition: all 0.3s;
}

.day-card.open .day-toggle {
    transform: rotate(45deg);
    color: var(--accent-primary);
    background: rgba(249,115,22,0.1);
}

.day-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.5s;
    padding: 0 24px;
}

.day-card.open .day-body {
    max-height: 800px;
    padding: 0 24px 24px;
}

.day-activities {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 16px;
}

.activity {
    display: flex;
    gap: 14px;
    padding: 14px 16px;
    background: rgba(255,255,255,0.02);
    border-radius: var(--radius-md);
    border-left: 3px solid transparent;
    transition: all 0.2s;
}

.activity.highlight {
    border-left-color: var(--accent-primary);
    background: rgba(249,115,22,0.04);
}

.activity:hover {
    background: rgba(255,255,255,0.04);
}

.act-icon {
    font-size: 22px;
    min-width: 32px;
    display: flex;
    align-items: flex-start;
    padding-top: 2px;
}

.activity strong {
    display: block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 4px;
}

.activity p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
}

.activity-list {
    list-style: none;
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.activity-list li {
    font-size: 14px;
    color: var(--text-secondary);
}

.day-tips {
    padding: 14px 16px;
    background: rgba(20,184,166,0.06);
    border: 1px solid rgba(20,184,166,0.12);
    border-radius: var(--radius-md);
}

.day-tips h4 {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-teal);
    margin-bottom: 6px;
}

.day-tips p {
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.5;
}

/* ============================
   ACCOMMODATION
   ============================ */
.day-accommodation {
    margin-bottom: 16px;
    padding: 14px 16px;
    background: rgba(139,92,246,0.06);
    border: 1px solid rgba(139,92,246,0.15);
    border-radius: var(--radius-md);
}

.accom-header {
    margin-bottom: 10px;
}

.accom-header h4 {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: #a78bfa;
}

.accom-input-wrap {
    display: block;
}

.accom-payer-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.accom-payer-label {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
    margin-right: 4px;
}

.accom-payer-btn {
    padding: 4px 12px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: transparent;
    color: var(--text-secondary);
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 11px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 4px;
}

.accom-payer-btn.active {
    background: rgba(139,92,246,0.15);
    color: #a78bfa;
    border-color: #a78bfa;
}

.accom-payer-btn:hover {
    border-color: #a78bfa;
}

.accom-input-row {
    display: flex;
    gap: 8px;
}

.accom-input {
    flex: 1;
    padding: 10px 14px;
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-main);
    font-size: 13px;
    outline: none;
    transition: border-color 0.3s;
}

.accom-input:focus {
    border-color: #a78bfa;
}

.accom-input::placeholder {
    color: var(--text-muted);
}

.accom-save-btn {
    padding: 10px 18px;
    background: linear-gradient(135deg, #a78bfa, #7c3aed);
    border: none;
    border-radius: var(--radius-sm);
    color: white;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
    transition: transform 0.2s;
}

.accom-save-btn:hover {
    transform: scale(1.05);
}

.accom-saved {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.accom-saved .accom-content {
    flex: 1;
    font-size: 13px;
    color: var(--text-secondary);
    word-break: break-word;
}

.accom-saved .note-link {
    color: #a78bfa;
}

.accom-payer-tag {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.accom-payer-tag.cip {
    background: rgba(249,115,22,0.12);
    color: var(--accent-primary);
    border: 1px solid rgba(249,115,22,0.25);
}

.accom-payer-tag.jonas {
    background: rgba(20,184,166,0.12);
    color: var(--accent-teal);
    border: 1px solid rgba(20,184,166,0.25);
}

.accom-payer-tag.split {
    background: rgba(139,92,246,0.12);
    color: #a78bfa;
    border: 1px solid rgba(139,92,246,0.25);
}

.accom-payer-avatar {
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

.accom-actions {
    display: flex;
    gap: 4px;
}

.accom-edit-btn,
.accom-remove-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    padding: 2px 4px;
    opacity: 0.4;
    transition: opacity 0.2s;
}

.accom-edit-btn:hover,
.accom-remove-btn:hover {
    opacity: 1;
}

.accom-remove-btn:hover {
    color: #ef4444;
}

/* ============================
   EDITABLE ITINERARY
   ============================ */
.day-edit-btn {
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 6px;
    opacity: 0.4;
    transition: all 0.2s;
}

.day-edit-btn:hover {
    opacity: 1;
    background: rgba(255,255,255,0.05);
}

.day-card.editing .day-edit-btn {
    opacity: 1;
    background: rgba(249,115,22,0.15);
}

.editable-field {
    outline: none;
    border-bottom: 1px dashed rgba(249,115,22,0.4) !important;
    transition: border-color 0.2s;
}

.editable-field:focus {
    border-bottom-color: var(--accent-primary) !important;
    background: rgba(249,115,22,0.04);
}

.edit-save-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    padding: 10px 14px;
    background: rgba(249,115,22,0.06);
    border: 1px solid rgba(249,115,22,0.2);
    border-radius: var(--radius-sm);
}

.edit-save-btn {
    padding: 8px 18px;
    background: linear-gradient(135deg, var(--accent-primary), #ea580c);
    border: none;
    border-radius: var(--radius-sm);
    color: white;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
    transition: transform 0.2s;
}

.edit-save-btn:hover {
    transform: scale(1.05);
}

.edit-add-activity-btn {
    padding: 8px 14px;
    background: rgba(20,184,166,0.1);
    border: 1px solid rgba(20,184,166,0.25);
    border-radius: var(--radius-sm);
    color: var(--accent-teal);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.edit-add-activity-btn:hover {
    background: rgba(20,184,166,0.2);
}

.edit-saved-msg {
    font-size: 12px;
    color: var(--accent-teal);
    font-weight: 600;
    animation: fadeInUp 0.3s ease;
}

.user-activity {
    position: relative;
    border-left-color: var(--accent-teal) !important;
    background: rgba(20,184,166,0.04) !important;
}

.remove-activity-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 18px;
    cursor: pointer;
    padding: 0 4px;
    line-height: 1;
    opacity: 0;
    transition: all 0.2s;
}

.user-activity:hover .remove-activity-btn {
    opacity: 1;
}

.remove-activity-btn:hover {
    color: #ef4444;
}

/* ============================
   DAY NOTES (with lad identity)
   ============================ */
.day-notes {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

.day-notes-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.day-notes-header h4 {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-gold);
}

.add-note-btn {
    padding: 4px 14px;
    background: rgba(251,191,36,0.1);
    border: 1px solid rgba(251,191,36,0.25);
    border-radius: 6px;
    color: var(--accent-gold);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.add-note-btn:hover {
    background: rgba(251,191,36,0.2);
}

.note-input-wrap {
    margin-bottom: 10px;
}

.note-author-select {
    display: flex;
    gap: 6px;
    margin-bottom: 8px;
}

.note-author-btn {
    padding: 5px 14px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: transparent;
    color: var(--text-secondary);
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.note-author-btn.active {
    background: rgba(249,115,22,0.1);
    color: var(--accent-primary);
    border-color: var(--accent-primary);
}

.note-author-btn:hover {
    border-color: var(--accent-primary);
}

.note-input-row {
    display: flex;
    gap: 8px;
}

.note-input {
    flex: 1;
    padding: 10px 14px;
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-main);
    font-size: 13px;
    outline: none;
    transition: border-color 0.3s;
}

.note-input:focus {
    border-color: var(--accent-gold);
}

.note-input::placeholder {
    color: var(--text-muted);
}

.note-save-btn {
    padding: 10px 18px;
    background: linear-gradient(135deg, var(--accent-gold), #d97706);
    border: none;
    border-radius: var(--radius-sm);
    color: #1a1a2e;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
    transition: transform 0.2s;
}

.note-save-btn:hover {
    transform: scale(1.05);
}

.notes-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.note-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 6px;
    animation: fadeInUp 0.3s ease;
    border-left: 3px solid var(--accent-primary);
    background: rgba(249,115,22,0.04);
}

.note-item.note-jonas {
    border-left-color: var(--accent-teal);
    background: rgba(20,184,166,0.04);
}

.note-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    flex-shrink: 0;
}

.note-body {
    flex: 1;
    min-width: 0;
}

.note-meta {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 600;
    display: block;
    margin-bottom: 3px;
}

.note-content {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    word-break: break-word;
}

.note-link {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.note-link:hover {
    color: var(--accent-primary);
    text-decoration: underline;
}

.note-delete {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 18px;
    cursor: pointer;
    padding: 0 4px;
    line-height: 1;
    transition: color 0.2s;
    flex-shrink: 0;
}

.note-delete:hover {
    color: #ef4444;
}

/* ============================
   DATA EXPORT/IMPORT
   ============================ */
.footer-data {
    text-align: center;
    flex: 1;
}

.footer-data h4 {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.data-info {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 14px;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}

.data-buttons {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.data-btn {
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.data-btn.export {
    background: rgba(20,184,166,0.1);
    border: 1px solid rgba(20,184,166,0.25);
    color: var(--accent-teal);
}

.data-btn.export:hover {
    background: rgba(20,184,166,0.2);
}

.data-btn.import {
    background: rgba(249,115,22,0.1);
    border: 1px solid rgba(249,115,22,0.25);
    color: var(--accent-primary);
}

.data-btn.import:hover {
    background: rgba(249,115,22,0.2);
}

/* ============================
   BUDGET
   ============================ */
.budget-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
}

.budget-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: all 0.3s;
}

.budget-card:hover {
    border-color: rgba(249,115,22,0.2);
    transform: translateY(-3px);
}

.budget-card.total {
    border-color: var(--accent-primary);
    background: rgba(249,115,22,0.05);
}

.budget-icon {
    font-size: 28px;
    margin-bottom: 12px;
}

.budget-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

.budget-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.budget-line {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    padding: 6px 0;
    border-bottom: 1px solid var(--border);
}

.budget-line span:first-child {
    color: var(--text-secondary);
}

.budget-line span:last-child {
    font-weight: 600;
    color: var(--text-primary);
}

.budget-total {
    font-size: 20px !important;
    color: var(--accent-primary) !important;
}

.budget-note {
    color: var(--text-muted);
    font-size: 12px;
    margin-top: 12px;
    font-style: italic;
}

/* ============================
   DISCUSSION
   ============================ */
.discussion-topics {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 48px;
}

.topic-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color 0.3s;
}

.topic-card:hover {
    border-color: rgba(249,115,22,0.15);
}

.topic-header {
    padding: 20px 24px 0;
}

.topic-category {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 6px;
    margin-bottom: 8px;
}

.cat-logistics {
    background: rgba(59,130,246,0.1);
    color: #60a5fa;
}

.cat-decision {
    background: rgba(251,191,36,0.1);
    color: var(--accent-gold);
}

.cat-offtrail {
    background: rgba(20,184,166,0.1);
    color: var(--accent-teal);
}

.cat-nightlife {
    background: rgba(236,72,153,0.1);
    color: var(--accent-secondary);
}

.cat-accommodation {
    background: rgba(139,92,246,0.1);
    color: #a78bfa;
}

.topic-header h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
}

.topic-body {
    padding: 12px 24px 20px;
}

.topic-body p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 10px;
}

.topic-body ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.topic-body li {
    font-size: 14px;
    color: var(--text-secondary);
    padding: 6px 10px;
    background: rgba(255,255,255,0.02);
    border-radius: 6px;
}

/* Comment Section */
.add-comment-section {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
}

.add-comment-section h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.comment-form {
    margin-bottom: 20px;
}

.comment-author-select {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.author-btn {
    padding: 8px 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: transparent;
    color: var(--text-secondary);
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.author-btn.active {
    background: rgba(249,115,22,0.1);
    color: var(--accent-primary);
    border-color: var(--accent-primary);
}

.author-btn:hover {
    border-color: var(--accent-primary);
}

#comment-input {
    width: 100%;
    min-height: 80px;
    padding: 14px 16px;
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: var(--font-main);
    font-size: 14px;
    resize: vertical;
    outline: none;
    transition: border-color 0.3s;
    margin-bottom: 12px;
}

#comment-input:focus {
    border-color: var(--accent-primary);
}

#comment-input::placeholder {
    color: var(--text-muted);
}

.comment-submit {
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--accent-primary), #ea580c);
    border: none;
    border-radius: var(--radius-md);
    color: white;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.comment-submit:hover {
    transform: scale(1.03);
    box-shadow: var(--glow-orange);
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.comment-item {
    padding: 14px 16px;
    background: rgba(255,255,255,0.02);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--accent-primary);
    animation: fadeInUp 0.3s ease;
}

.comment-item.jonas-comment {
    border-left-color: var(--accent-teal);
}

.comment-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.comment-author {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.comment-avatar {
    width: 22px;
    height: 22px;
    border-radius: 50%;
}

.btn-avatar {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    vertical-align: middle;
}

.comment-time {
    font-size: 12px;
    color: var(--text-muted);
}

.comment-text {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
}

/* ============================
   PACKING LIST
   ============================ */
.packing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.packing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.packing-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

.packing-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pack-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 6px 8px;
    border-radius: 6px;
    transition: all 0.2s;
}

.pack-item:hover {
    background: rgba(255,255,255,0.03);
}

.pack-item input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    min-width: 18px;
    border: 2px solid var(--text-muted);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

.pack-item input[type="checkbox"]:checked {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
}

.pack-item input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: 700;
}

.pack-item:has(input:checked) {
    text-decoration: line-through;
    opacity: 0.5;
}

/* ============================
   FOOTER
   ============================ */
#footer {
    padding: 80px 0 40px;
    background: var(--bg-dark);
    border-top: 1px solid var(--border);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-motto {
    text-align: center;
    flex: 1;
}

.footer-flags {
    font-size: 36px;
    display: block;
    margin-bottom: 8px;
}

.footer-motto h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 4px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 6px;
}

.footer-motto p {
    color: var(--text-secondary);
    font-size: 14px;
}

.footer-tagline {
    font-style: italic;
    color: var(--text-muted) !important;
    font-size: 13px !important;
    margin-top: 8px;
}

.footer-countdown {
    text-align: center;
    flex: 1;
}

.footer-countdown h4 {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.countdown-numbers {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.cd-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    min-width: 70px;
}

.cd-unit span {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--accent-primary);
}

.cd-unit small {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-members { display: none; }

    .hero-flags {
        flex-direction: column;
        gap: 8px;
    }

    .hero-crew {
        gap: 12px;
    }

    .day-header {
        padding: 14px 16px;
        gap: 12px;
    }

    .day-number {
        font-size: 22px;
        min-width: 40px;
    }

    .day-meta {
        gap: 4px;
    }

    .meta-badge {
        font-size: 11px;
        padding: 2px 8px;
    }

    .day-card.open .day-body {
        padding: 0 16px 16px;
    }

    .budget-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .countdown-numbers {
        gap: 8px;
    }

    .cd-unit {
        padding: 10px 12px;
        min-width: 60px;
    }

    .cd-unit span {
        font-size: 22px;
    }

    .gate-content {
        margin: 20px;
        padding: 32px 24px;
    }

    .gate-title {
        font-size: 32px;
    }

    .gate-input-wrap {
        flex-direction: column;
    }
}

/* ============================
   SCROLLBAR
   ============================ */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(255,255,255,0.2);
}
