* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Outfit', sans-serif;
    background: #f5f4f1;
    min-height: 100vh;
    overflow-x: hidden;
}

/* BACKGROUND BLOBS */
.bg-blobs {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.22;
}
.blob-1 { width: 1000px; height: 1000px; background: #c7d9f5; top: -200px; right: -120px; animation: drift1 14s ease-in-out infinite; }
.blob-2 { width: 800px; height: 800px; background: #e2ddf7; bottom: 60px; left: -160px; animation: drift2 18s ease-in-out infinite; }
.blob-3 { width: 600px; height: 600px; background: #d4ede3; top: 38%; right: 8%; animation: drift3 11s ease-in-out infinite; }

@keyframes drift1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-28px,36px)} }
@keyframes drift2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(36px,-28px)} }
@keyframes drift3 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-18px,18px)} }

/* ── NAVBAR ─────────────────────────────────────────────── */
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1080px;
    z-index: 1000;
    background: rgba(255,255,255,0.68);
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    border: 1px solid rgba(255,255,255,0.75);
    border-radius: 18px;
    padding: 12px 20px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    gap: 8px;
}

.nav > div {
    display: flex;
    align-items: center;
    gap: 2px;
    min-width: 0;
}

.navla {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 600;
    font-size: 24px;
    color: #1c1b19;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nava {
    color: #6a6860;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    padding: 8px 14px;
    border-radius: 12px;
    transition: all 0.2s;
    font-family: 'Outfit', sans-serif;
    white-space: nowrap;
    flex-shrink: 0;
}
.nava:hover {
    background: #eeece8;
    color: #1c1b19;
}

.navbutton {
    font-family: 'Outfit', sans-serif;
    background: #1c1b19;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.2s;
    flex-shrink: 0;
    white-space: nowrap;
}
.navbutton:hover { opacity: 0.82; }

/* ── HAMBURGER ───────────────────────────────────────────── */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    border-radius: 10px;
    transition: background 0.2s;
    background: transparent;
    border: none;
    flex-shrink: 0;
}
.hamburger:hover { background: rgba(0,0,0,0.04); }
.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #1c1b19;
    border-radius: 2px;
    transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE MENU DRAWER */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: rgba(245,244,241,0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 40px 24px;
}
.mobile-menu.open { display: flex; }

.mobile-menu-logo {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 600;
    font-size: 32px;
    color: #1c1b19;
    margin-bottom: 32px;
    text-decoration: none;
}

.mobile-nav-link {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 400;
    color: #6a6860;
    text-decoration: none;
    padding: 12px 32px;
    border-radius: 14px;
    transition: all 0.2s;
    width: 100%;
    text-align: center;
}
.mobile-nav-link:hover {
    background: rgba(255,255,255,0.8);
    color: #1c1b19;
}

.mobile-nav-btn {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 500;
    background: #1c1b19;
    color: white;
    border: none;
    border-radius: 14px;
    padding: 14px 40px;
    cursor: pointer;
    margin-top: 16px;
    width: 100%;
    transition: opacity 0.2s;
}
.mobile-nav-btn:hover { opacity: 0.82; }

.mobile-menu-close {
    position: absolute;
    top: 28px;
    right: 20px;
    font-size: 24px;
    color: #a09e99;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    font-family: 'Outfit', sans-serif;
}

/* ── HERO ────────────────────────────────────────────────── */
.subhero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 130px 24px 80px;
}

.style1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(58px, 9vw, 108px);
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -1px;
    color: #1c1b19;
    background: none;
}

.style2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(58px, 9vw, 108px);
    font-weight: 400;
    font-style: italic;
    line-height: 0.95;
    letter-spacing: -1px;
    color: #1c1b19;
    opacity: 0.7;
    background: none;
    margin-bottom: 40px;
}

/* ── CARDS ───────────────────────────────────────────────── */
.ulcards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    list-style: none;
    padding: 0 24px 80px;
    margin: 0 auto;
    max-width: 1080px;
    position: relative;
    z-index: 1;
}

.licards { list-style: none; }

.cards {
    width: clamp(260px, 28vw, 340px);
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border: 1px solid rgba(255,255,255,0.75);
    border-radius: 20px;
    padding: 20px 22px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.07);
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}
.cards:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.1);
    border-color: rgba(255,255,255,0.95);
}

.card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.listcategory {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #a09e99;
}

.listspots {
    font-size: 11px;
    font-weight: 500;
    padding: 3px 10px;
    border-radius: 6px;
    background: rgba(34,143,94,0.09);
    color: #1e7a50;
}
.listspots.few { background: rgba(176,112,32,0.09); color: #8f5c10; }
.listspots.full { background: rgba(180,60,60,0.08); color: #8f2020; }
.listspots.cancelled { background: rgba(180,60,60,0.08); color: #8f2020; }

.listname {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    color: #1c1b19;
    margin-bottom: 4px;
    line-height: 1.15;
}

.listdesc {
    font-size: 13px;
    font-weight: 300;
    color: #6a6860;
    margin-bottom: 12px;
    line-height: 1.5;
}

.listmeta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
}

.listdate, .listtime, .listlocation {
    font-size: 12px;
    color: #a09e99;
    font-weight: 400;
}

.divider {
    border: none;
    border-top: 1px solid rgba(0,0,0,0.06);
    margin-bottom: 12px;
}

.card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.host-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.host-avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 500;
    color: white;
    flex-shrink: 0;
}

.listhost {
    font-size: 12px;
    color: #6a6860;
    font-weight: 400;
}

.joinbtn {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 500;
    padding: 7px 18px;
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.12);
    background: #ffffff;
    color: #1c1b19;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
    letter-spacing: 0.01em;
}
.joinbtn:hover { background: #f5f4f1; border-color: rgba(0,0,0,0.2); }

/* ── HERO EXTRAS ─────────────────────────────────────────── */
.hero-sub {
    font-size: clamp(15px, 2vw, 18px);
    color: #6a6860;
    font-weight: 300;
    max-width: 520px;
    line-height: 1.8;
    text-align: center;
    margin-top: 24px;
    margin-bottom: 32px;
    letter-spacing: 0.01em;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
}

.tag {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: #6a6860;
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 999px;
    padding: 6px 16px;
    transition: background 0.2s, color 0.2s;
}
.tag:hover { background: rgba(255,255,255,0.9); color: #1c1b19; }

.hero-steps {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.75);
    border-radius: 16px;
    padding: 20px 32px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

.hero-step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 28px;
}

.step-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 500;
    font-style: italic;
    color: #c0bdb8;
    line-height: 1;
}

.step-text {
    font-size: 13px;
    font-weight: 400;
    color: #6a6860;
    max-width: 120px;
    line-height: 1.5;
}

.hero-divider {
    width: 1px;
    height: 36px;
    background: rgba(0,0,0,0.08);
    flex-shrink: 0;
}

/* ── NOTIFICATIONS ───────────────────────────────────────── */
.notif-bell {
    position: relative;
    cursor: pointer;
    font-size: 18px;
    padding: 8px;
    border-radius: 10px;
    transition: background 0.2s;
    text-decoration: none;
    color: #6a6860;
}
.notif-bell:hover { background: rgba(0,0,0,0.04); }

.notif-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 8px;
    height: 8px;
    background: #c47d3a;
    border-radius: 50%;
    display: none;
}
.notif-badge.show { display: block; }

.notif-dropdown {
    position: absolute;
    top: 60px;
    right: 20px;
    width: 320px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,0.9);
    border-radius: 20px;
    box-shadow: 0 12px 48px rgba(0,0,0,0.12);
    z-index: 500;
    display: none;
    overflow: hidden;
}
.notif-dropdown.open { display: block; }

.notif-header {
    padding: 16px 20px 12px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 600;
    color: #1c1b19;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.notif-item {
    padding: 12px 20px;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    cursor: pointer;
    transition: background 0.15s;
}
.notif-item:last-child { border-bottom: none; }
.notif-item:hover { background: rgba(0,0,0,0.02); }
.notif-item.unread { background: rgba(196,125,58,0.05); }

.notif-msg {
    font-size: 13px;
    color: #1c1b19;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 3px;
}

.notif-time {
    font-size: 11px;
    color: #c0bdb8;
    font-weight: 300;
}

.notif-empty {
    padding: 32px 20px;
    text-align: center;
    font-size: 13px;
    color: #a09e99;
    font-weight: 300;
}

/* ── LOADING SPINNER ─────────────────────────────────────── */
.page-loader {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: #f5f4f1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    transition: opacity 0.3s, visibility 0.3s;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-logo {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 600;
    font-size: 32px;
    color: #1c1b19;
}

.loader-dots {
    display: flex;
    gap: 8px;
}

.loader-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #c0bdb8;
    animation: dotPulse 1.4s ease-in-out infinite;
}
.loader-dot:nth-child(2) { animation-delay: 0.2s; }
.loader-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes dotPulse {
    0%, 100% { transform: scale(0.7); opacity: 0.4; }
    50% { transform: scale(1); opacity: 1; background: #6a6860; }
}

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(0,0,0,0.06);
    padding: 32px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    max-width: 1080px;
    margin: 0 auto;
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 20px;
    color: #1c1b19;
    font-style: italic;
    text-decoration: none;
}

.footer-links {
    display: flex;
    gap: 24px;
    list-style: none;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 13px;
    color: #a09e99;
    text-decoration: none;
    font-weight: 300;
    transition: color 0.2s;
}
.footer-links a:hover { color: #1c1b19; }

.footer-copy {
    font-size: 13px;
    color: #a09e99;
    font-weight: 300;
}

/* ── INTEREST FILTER PILLS ───────────────────────────────── */
.interest-filter-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.interest-filter-pill {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: #6a6860;
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 999px;
    padding: 6px 16px;
    cursor: pointer;
    transition: all 0.18s;
    display: flex;
    align-items: center;
    gap: 6px;
}
.interest-filter-pill:hover { background: rgba(255,255,255,0.9); color: #1c1b19; }
.interest-filter-pill.active {
    background: #4b7fd4;
    color: white;
    border-color: #4b7fd4;
}

.interest-filter-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #a09e99;
    margin-bottom: 8px;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
}

/* ── AVATAR UPLOAD ───────────────────────────────────────── */
.avatar-upload-wrap {
    position: relative;
    width: 88px;
    height: 88px;
    flex-shrink: 0;
    cursor: pointer;
}

.avatar-upload-wrap:hover .avatar-upload-overlay {
    opacity: 1;
}

.avatar-upload-overlay {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s;
    font-size: 11px;
    font-weight: 500;
    color: white;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.03em;
}

/* ── MOBILE ──────────────────────────────────────────────── */
@media (max-width: 900px) {
    .nav {
        width: calc(100% - 24px);
        padding: 12px 18px;
    }

    /* Hide desktop nav links and sign up button */
    .nav > div {
        display: none !important;
    }

    /* Show hamburger */
    .hamburger {
        display: flex;
    }

    .cards { width: 92vw; }

    .site-footer {
        flex-direction: column;
        align-items: flex-start;
        padding: 28px 24px;
    }

    .hero-steps {
        flex-direction: column;
        gap: 16px;
        padding: 20px 24px;
        width: 100%;
    }
    .hero-divider { width: 100%; height: 1px; }
    .hero-step { padding: 0; }
}