/* BARRIE'S 40TH - DEINWALLER-INSPIRED */

:root {
    /* Core palette */
    --white: #ffffff;
    --gray: #f5f5f5;
    --gray-dark: #e8e8e8;
    --border: #d0d0d0;
    --border-light: #e5e5e5;

    /* Text colors */
    --text-primary: #000000;
    --text-secondary: #444444;
    --text-tertiary: #666666;
    --text-muted: #999999;

    /* Accent colors */
    --accent: #0055ff;
    --accent-hover: #0044cc;
    --orange: #ff6600;
    --green: #00cc66;
    --red: #ff3333;
    --yellow: #ffee00;

    /* Layout */
    --spacing-1: 16px;
    --spacing-half: 8px;
    --spacing-2: 32px;
    --spacing-3: 48px;
    --spacing-4: 64px;

    /* Typography - Deinwaller inspired */
    --font-display: "Helvetica Neue", Helvetica, Arial, sans-serif;
    --font-body: "Helvetica Neue", Helvetica, Arial, sans-serif;
    --font-mono: "Courier New", Courier, monospace;
    --font-size-default: 15px;
    --font-size-secondary: 13px;
    --font-size-small: 11px;
    --font-size-large: 24px;
    --font-size-header: 18px;
    --font-size-display: 72px;
    --line-height: 1.5;
    --letter-spacing-tight: -0.03em;
    --letter-spacing-display: -0.04em;

    /* UI */
    --border-radius: 0;
    --row-height: 44px;
    --sidebar-width: 240px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    touch-action: manipulation;
}

body {
    font-family: var(--font-body);
    font-size: var(--font-size-default);
    line-height: var(--line-height);
    color: var(--text-primary);
    background-color: var(--white);
    min-height: 100vh;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: var(--letter-spacing-tight);
}

::selection {
    background-color: var(--yellow);
    color: var(--text-primary);
}

.hidden {
    display: none !important;
}

/* ========== LOGIN ========== */
#login-screen {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: var(--spacing-2);
}

.login-container {
    background: var(--white);
    border: 4px solid var(--text-primary);
    border-radius: var(--border-radius);
    padding: var(--spacing-4);
    text-align: center;
    max-width: 550px;
    width: 100%;
    box-shadow: 8px 8px 0 var(--text-primary);
}

.login-hero {
    max-width: 100%;
    width: 400px;
    height: auto;
    margin-bottom: var(--spacing-2);
}

.login-container h1 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-half);
    letter-spacing: var(--letter-spacing-display);
    text-transform: uppercase;
}

.login-container > p {
    color: var(--text-tertiary);
    font-size: var(--font-size-secondary);
    margin-bottom: var(--spacing-2);
    text-transform: lowercase;
}

#password-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-1);
}

#password-input {
    padding: 12px 14px;
    font-family: var(--font-body);
    font-size: var(--font-size-default);
    background: var(--white);
    border: 2px solid var(--text-primary);
    border-radius: var(--border-radius);
    color: var(--text-primary);
    outline: none;
    transition: all 0.1s ease;
}

#password-input::placeholder {
    color: var(--text-muted);
    text-transform: lowercase;
}

#password-input:focus {
    background: var(--yellow);
}

/* Deinwaller-style buttons with outset/inset effect */
button {
    padding: 12px 20px;
    font-family: var(--font-body);
    font-size: var(--font-size-default);
    font-weight: 500;
    background: var(--white);
    color: var(--text-primary);
    border: 2px solid var(--text-primary);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.1s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    box-shadow: 4px 4px 0 var(--text-primary);
}

button:hover {
    background: var(--yellow);
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 var(--text-primary);
}

button:active {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 var(--text-primary);
}

.error {
    color: var(--red);
    margin-top: var(--spacing-half);
    min-height: 20px;
    font-size: var(--font-size-small);
}

/* ========== CONTENT ========== */
#content {
    width: 100%;
    min-height: 100vh;
    background: var(--white);
}

/* ========== HEADER ========== */
header {
    background: var(--white);
    border-bottom: 2px solid var(--text-primary);
    padding: var(--spacing-2) var(--spacing-2);
    text-align: center;
}

.header-logo {
    max-width: 100%;
    width: 300px;
    height: auto;
    margin-bottom: 4px;
}

header h1 {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
    letter-spacing: var(--letter-spacing-display);
    text-transform: uppercase;
}

.header-subtitle {
    font-size: var(--font-size-secondary);
    color: var(--text-tertiary);
    font-weight: 400;
    text-transform: lowercase;
    letter-spacing: 0.1em;
}

/* ========== COUNTDOWN CLOCK ========== */
.countdown-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--spacing-2);
    background: var(--gray);
    border-bottom: 2px solid var(--text-primary);
}

.clock-container {
    margin-bottom: var(--spacing-1);
}

.clock-face {
    width: 120px;
    height: 120px;
    border: 4px solid var(--text-primary);
    border-radius: 50%;
    position: relative;
    background: var(--white);
    box-shadow: 4px 4px 0 var(--text-primary);
}

.clock-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: var(--text-primary);
    border-radius: 50%;
    z-index: 10;
}

.clock-hand {
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform-origin: bottom center;
    background: var(--text-primary);
}

.hour-hand {
    width: 4px;
    height: 30px;
    transform: translateX(-50%) rotate(0deg);
}

.minute-hand {
    width: 3px;
    height: 40px;
    transform: translateX(-50%) rotate(0deg);
}

.second-hand {
    width: 2px;
    height: 45px;
    background: var(--red);
    transform: translateX(-50%) rotate(0deg);
}

.clock-number {
    position: absolute;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    color: var(--text-primary);
}

.n12 { top: 6px; left: 50%; transform: translateX(-50%); }
.n3 { right: 8px; top: 50%; transform: translateY(-50%); }
.n6 { bottom: 6px; left: 50%; transform: translateX(-50%); }
.n9 { left: 8px; top: 50%; transform: translateY(-50%); }

.countdown-display {
    display: flex;
    gap: var(--spacing-1);
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--white);
    border: 3px solid var(--text-primary);
    padding: var(--spacing-half) var(--spacing-1);
    min-width: 60px;
    box-shadow: 3px 3px 0 var(--text-primary);
}

.countdown-value {
    font-family: var(--font-mono);
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.countdown-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-tertiary);
    margin-top: 4px;
}

@media (max-width: 768px) {
    .countdown-display {
        gap: var(--spacing-half);
    }

    .countdown-item {
        min-width: 50px;
        padding: 6px 8px;
    }

    .countdown-value {
        font-size: 22px;
    }

    .clock-face {
        width: 100px;
        height: 100px;
    }

    .hour-hand { height: 25px; }
    .minute-hand { height: 32px; }
    .second-hand { height: 36px; }
}

/* ========== LAYOUT ========== */
.content-wrapper {
    display: flex;
    min-height: calc(100vh - 120px);
}

/* ========== SIDEBAR ========== */
.sidebar {
    width: var(--sidebar-width);
    background: var(--white);
    border-right: 2px solid var(--text-primary);
    padding: var(--spacing-1) 0;
    flex-shrink: 0;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px var(--spacing-1);
    text-decoration: none;
    color: var(--text-tertiary);
    font-size: var(--font-size-secondary);
    transition: all 0.1s ease;
    border-bottom: 1px solid var(--border-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.sidebar-link:hover {
    color: var(--text-primary);
    background: var(--yellow);
}

.sidebar-link.active {
    color: var(--text-primary);
    background: var(--gray);
    font-weight: 600;
}

.sidebar-icon {
    font-size: 16px;
    width: 20px;
    text-align: center;
}

/* ========== MAIN ========== */
main {
    flex: 1;
    padding: var(--spacing-2);
    max-width: 900px;
    background: var(--white);
}

.content-section {
    margin-bottom: var(--spacing-4);
}

.content-section h2 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-2);
    letter-spacing: var(--letter-spacing-display);
    text-transform: uppercase;
    border-bottom: 2px solid var(--text-primary);
    padding-bottom: var(--spacing-half);
}

.content-section > p {
    color: var(--text-secondary);
    font-size: var(--font-size-default);
}

/* Welcome intro at top of timeline */
.welcome-intro {
    background: var(--yellow);
    border: 3px solid var(--text-primary);
    padding: var(--spacing-2);
    margin-bottom: var(--spacing-3);
    box-shadow: 5px 5px 0 var(--text-primary);
}

.welcome-intro h2 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: var(--spacing-1);
    letter-spacing: var(--letter-spacing-display);
    text-transform: uppercase;
    border-bottom: none;
    padding-bottom: 0;
}

.welcome-intro p {
    color: var(--text-primary);
    font-size: var(--font-size-default);
    line-height: 1.6;
    margin-bottom: var(--spacing-half);
}

.welcome-intro p:last-of-type {
    margin-bottom: 0;
}

.welcome-warning {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: var(--spacing-1);
    padding: var(--spacing-1);
    background: var(--white);
    border: 2px solid var(--text-primary);
}

.welcome-warning .warning-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.welcome-warning p {
    margin-bottom: 0;
    font-size: var(--font-size-secondary);
    color: var(--text-primary);
}

.welcome-warning a {
    font-weight: 700;
}

/* ========== TIMELINE ========== */
.day-block {
    margin-bottom: var(--spacing-3);
}

.day-header {
    font-family: var(--font-display);
    font-size: var(--font-size-large);
    font-weight: 700;
    padding: 8px 16px;
    margin-bottom: var(--spacing-1);
    display: inline-block;
    border: 2px solid var(--text-primary);
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.day-header.friday {
    background: #ffcc00;
}

.day-header.saturday {
    background: #00ccff;
}

.day-header.saturday-night {
    background: #ff66cc;
}

.day-header.sunday {
    background: #66ff66;
}

.day-note {
    color: var(--text-tertiary);
    font-size: var(--font-size-secondary);
    margin-bottom: var(--spacing-1);
    font-style: italic;
}

.day-note.important-note {
    color: var(--text-primary);
    font-style: normal;
    font-weight: 700;
    background: var(--yellow);
    padding: 4px 8px;
    display: inline-block;
}

/* Event Cards */
.event-card {
    display: flex;
    gap: var(--spacing-1);
    background: var(--white);
    border: 2px solid var(--text-primary);
    padding: var(--spacing-1);
    margin-bottom: 12px;
    transition: all 0.1s ease;
}

.event-card:hover {
    background: var(--gray);
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0 var(--text-primary);
}

.event-card.event-optional {
    border-left: 6px solid var(--orange);
}

.event-card.event-main {
    border-left: 6px solid var(--accent);
    background: #f0f6ff;
}

.event-card.event-main:hover {
    background: #e0edff;
}

.event-card.event-fun {
    border-left: 6px solid var(--green);
}

.event-time {
    min-width: 80px;
    font-family: var(--font-mono);
    font-size: var(--font-size-small);
    color: var(--text-tertiary);
    font-weight: 500;
    padding-top: 2px;
    text-transform: uppercase;
}

.event-details {
    flex: 1;
}

.event-details h4 {
    font-family: var(--font-display);
    font-size: var(--font-size-header);
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.event-location {
    font-size: var(--font-size-small);
    color: var(--accent);
    margin-bottom: 6px;
    text-transform: lowercase;
}

.event-location a {
    color: var(--accent);
    text-decoration: underline;
}

.event-location a:hover {
    background: var(--yellow);
}

.event-description {
    font-size: var(--font-size-secondary);
    line-height: 1.6;
    color: var(--text-secondary);
}

.event-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    margin-top: 10px;
    background: var(--text-primary);
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 2px solid var(--text-primary);
}

.event-tag.main-event {
    background: var(--accent);
    border-color: var(--accent);
}

.options-group {
    margin-bottom: var(--spacing-1);
}

.options-label {
    font-size: var(--font-size-small);
    margin-bottom: var(--spacing-half);
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    :root {
        --font-size-display: 42px;
    }

    .content-wrapper {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 2px solid var(--text-primary);
        padding: var(--spacing-half) 0;
    }

    .sidebar-nav {
        flex-direction: row;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding: 0 var(--spacing-half);
    }

    .sidebar-link {
        flex-direction: column;
        padding: var(--spacing-half) var(--spacing-1);
        font-size: 10px;
        white-space: nowrap;
        border-bottom: none;
        gap: 4px;
    }

    .sidebar-link:hover,
    .sidebar-link.active {
        background: var(--yellow);
    }

    .sidebar-icon {
        font-size: 18px;
    }

    main {
        padding: var(--spacing-1);
    }

    header h1 {
        font-size: 32px;
    }

    .content-section h2 {
        font-size: 24px;
    }

    .event-card {
        flex-direction: column;
        gap: 8px;
    }

    .event-time {
        min-width: auto;
    }

    .welcome-content {
        padding: var(--spacing-2);
        box-shadow: 4px 4px 0 var(--text-primary);
    }

    .enter-btn {
        box-shadow: 3px 3px 0 var(--text-primary);
    }
}

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--white);
    border-left: 2px solid var(--text-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--text-primary);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-tertiary);
}

/* ========== WELCOME PAGE ========== */
.welcome-page {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--white);
    position: relative;
    overflow: hidden;
    padding: var(--spacing-2);
}

.welcome-content {
    text-align: center;
    max-width: 700px;
    z-index: 10;
    background: var(--white);
    padding: var(--spacing-4);
    border: 4px solid var(--text-primary);
    box-shadow: 8px 8px 0 var(--text-primary);
}

.welcome-title {
    font-family: var(--font-display);
    font-size: var(--font-size-display);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-2);
    letter-spacing: var(--letter-spacing-display);
    text-transform: uppercase;
    line-height: 0.95;
}

.welcome-message {
    font-size: var(--font-size-default);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--spacing-1);
}

.welcome-message:last-of-type {
    margin-bottom: var(--spacing-2);
}

.enter-btn {
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 700;
    background: var(--yellow);
    color: var(--text-primary);
    border: 3px solid var(--text-primary);
    cursor: pointer;
    transition: all 0.1s ease;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 5px 5px 0 var(--text-primary);
}

.enter-btn:hover {
    background: var(--white);
    transform: translate(-3px, -3px);
    box-shadow: 8px 8px 0 var(--text-primary);
}

.enter-btn:active {
    transform: translate(2px, 2px);
    box-shadow: 3px 3px 0 var(--text-primary);
}

/* Floating Heads/Emojis */
.floating-head {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    animation: float-around 8s ease-in-out infinite;
    z-index: 5;
    user-select: none;
    filter: grayscale(100%);
    opacity: 0.3;
    transition: all 0.3s ease;
}

.floating-head:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.3);
}

/* For when you add real images */
.floating-head img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    border: 3px solid var(--text-primary);
    box-shadow: 4px 4px 0 var(--text-primary);
}

.head-1 {
    top: 8%;
    left: 8%;
    font-size: 50px;
    animation-delay: 0s;
    animation-duration: 7s;
}

.head-2 {
    top: 12%;
    right: 10%;
    font-size: 45px;
    animation-delay: -2s;
    animation-duration: 9s;
}

.head-3 {
    bottom: 25%;
    left: 6%;
    font-size: 55px;
    animation-delay: -4s;
    animation-duration: 8s;
}

.head-4 {
    bottom: 12%;
    right: 8%;
    font-size: 48px;
    animation-delay: -1s;
    animation-duration: 10s;
}

.head-5 {
    top: 45%;
    left: 3%;
    font-size: 42px;
    animation-delay: -3s;
    animation-duration: 6s;
}

.head-6 {
    top: 5%;
    left: 45%;
    font-size: 38px;
    animation-delay: -5s;
    animation-duration: 11s;
}

.head-7 {
    bottom: 8%;
    left: 35%;
    font-size: 44px;
    animation-delay: -2.5s;
    animation-duration: 7.5s;
}

.head-8 {
    top: 40%;
    right: 5%;
    font-size: 52px;
    animation-delay: -6s;
    animation-duration: 8.5s;
}

@keyframes float-around {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(15px, -20px) rotate(5deg);
    }
    50% {
        transform: translate(-10px, 15px) rotate(-3deg);
    }
    75% {
        transform: translate(20px, 10px) rotate(4deg);
    }
}

/* Responsive welcome */
@media (max-width: 768px) {
    .welcome-title {
        font-size: 36px;
    }

    .floating-head {
        font-size: 28px !important;
    }
}

/* ========== LINKS ========== */
a {
    color: var(--text-primary);
    text-decoration: underline;
    transition: all 0.1s ease;
}

a:hover {
    background: var(--yellow);
}

/* ========== FAQs ========== */
.faq-item {
    background: var(--white);
    border: 2px solid var(--text-primary);
    padding: var(--spacing-1);
    margin-bottom: var(--spacing-1);
    transition: all 0.1s ease;
}

.faq-item:hover {
    background: var(--gray);
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0 var(--text-primary);
}

.faq-question {
    font-family: var(--font-display);
    font-size: var(--font-size-header);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-half);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.faq-answer {
    font-size: var(--font-size-default);
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ========== INSPO / PINTEREST ========== */
.inspo-intro {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-2);
}

.pinterest-board-container {
    width: 100%;
    overflow: hidden;
}

/* ========== FALLING PALM TREES ========== */
.falling-palm {
    position: fixed;
    top: -50px;
    z-index: 9999;
    pointer-events: none;
    animation: fall linear forwards;
    opacity: 0.6;
}

@keyframes fall {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(110vh) rotate(360deg);
        opacity: 0;
    }
}

/* ========== FLOATING WHATSAPP BUTTON ========== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9998;
    width: 100px;
    height: 100px;
    display: none;
    align-items: center;
    justify-content: center;
}

.whatsapp-float.visible {
    display: flex;
}

.whatsapp-spin-text {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: spin 10s linear infinite;
    pointer-events: none;
}

.whatsapp-spin-text text {
    font-family: var(--font-display);
    font-size: 9px;
    font-weight: 700;
    fill: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

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

.whatsapp-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    border: 3px solid var(--text-primary);
    box-shadow: 4px 4px 0 var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.15s ease;
    position: relative;
    z-index: 2;
}

.whatsapp-btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 var(--text-primary);
}

.whatsapp-btn:active {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 var(--text-primary);
}

/* ========== WHATSAPP MODAL ========== */
.whatsapp-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
}

.whatsapp-modal.active {
    opacity: 1;
    visibility: visible;
}

.whatsapp-modal-content {
    background: var(--white);
    border: 4px solid var(--text-primary);
    box-shadow: 8px 8px 0 var(--text-primary);
    padding: var(--spacing-3);
    text-align: center;
    max-width: 350px;
    width: 90%;
    position: relative;
}

.whatsapp-modal-close {
    position: absolute;
    top: 8px;
    right: 12px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-primary);
    line-height: 1;
}

.whatsapp-modal-close:hover {
    color: var(--red);
}

.whatsapp-modal-content h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-2);
    color: var(--text-primary);
}

.whatsapp-qr {
    width: 100%;
    max-width: 280px;
    height: auto;
    border: 2px solid var(--text-primary);
    margin-bottom: var(--spacing-1);
}

.whatsapp-modal-content p {
    font-size: var(--font-size-secondary);
    color: var(--text-tertiary);
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 12px;
        right: 12px;
        width: 90px;
        height: 90px;
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
    }

    .whatsapp-btn svg {
        width: 22px;
        height: 22px;
    }

    .whatsapp-spin-text text {
        font-size: 8px;
    }
}

/* ========== WHATSAPP TOP BANNER ========== */
.whatsapp-banner {
    background: #25D366;
    border-bottom: 3px solid var(--text-primary);
    padding: 12px var(--spacing-1);
    text-align: center;
}

.whatsapp-banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--text-primary);
    border: 2px solid var(--text-primary);
    padding: 10px 20px;
    font-size: var(--font-size-default);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    box-shadow: 3px 3px 0 var(--text-primary);
    transition: all 0.1s ease;
}

.whatsapp-banner-btn:hover {
    background: var(--yellow);
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0 var(--text-primary);
}

.whatsapp-banner-btn:active {
    transform: translate(2px, 2px);
    box-shadow: 1px 1px 0 var(--text-primary);
}

.whatsapp-banner-btn svg {
    color: #25D366;
}

/* ========== STICKY HEADER & SIDEBAR ========== */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
}

.sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
}

@media (max-width: 768px) {
    .sidebar {
        position: sticky;
        top: 0;
        height: auto;
        z-index: 99;
        background: var(--white);
    }
}

/* ========== MAP LINK CARD ========== */
.map-link-card {
    margin-bottom: var(--spacing-2);
}

.map-link {
    display: flex;
    align-items: center;
    gap: var(--spacing-1);
    background: var(--white);
    border: 3px solid var(--text-primary);
    padding: var(--spacing-1) var(--spacing-2);
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    transition: all 0.1s ease;
    box-shadow: 4px 4px 0 var(--text-primary);
}

.map-link:hover {
    background: var(--yellow);
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 var(--text-primary);
}

.map-link:active {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 var(--text-primary);
}

/* Wacky inspo link */
.map-link.wacky {
    background: linear-gradient(135deg, #ff6b6b, #feca57, #48dbfb, #ff9ff3, #54a0ff);
    background-size: 300% 300%;
    animation: rainbow-shift 3s ease infinite;
    border: 4px solid var(--text-primary);
    box-shadow: 6px 6px 0 var(--text-primary);
}

.map-link.wacky:hover {
    transform: translate(-3px, -3px) rotate(-1deg);
    box-shadow: 9px 9px 0 var(--text-primary);
    animation: rainbow-shift 1s ease infinite, wiggle 0.3s ease infinite;
}

.map-link.wacky .map-text {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.map-link.wacky .map-icon {
    animation: bounce-icon 1s ease infinite;
}

@keyframes rainbow-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes wiggle {
    0%, 100% { transform: translate(-3px, -3px) rotate(-1deg); }
    50% { transform: translate(-3px, -3px) rotate(1deg); }
}

@keyframes bounce-icon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.map-icon {
    font-size: 28px;
}

.map-text {
    flex: 1;
    font-size: var(--font-size-default);
}

.map-arrow {
    font-size: 24px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .map-link {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-half);
        padding: var(--spacing-1);
    }

    .map-arrow {
        display: none;
    }
}

/* ========== CONTACT / TALK TO A PERSON ========== */
.contact-intro {
    font-size: var(--font-size-default);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-2);
    line-height: 1.6;
}

.contact-qr-container {
    display: inline-block;
    background: var(--white);
    border: 3px solid var(--text-primary);
    padding: var(--spacing-2);
    box-shadow: 4px 4px 0 var(--text-primary);
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.1s ease;
}

.contact-qr-link:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 var(--text-primary);
}

.contact-qr {
    width: 200px;
    height: auto;
    border: 2px solid var(--text-primary);
    margin-bottom: var(--spacing-1);
}

.contact-qr-caption {
    font-size: var(--font-size-secondary);
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ========== SPIKY SUN GIFT REGISTRY ========== */
.gift-sun {
    position: fixed;
    top: 15%;
    left: -30px;
    width: 180px;
    height: 180px;
    cursor: pointer;
    z-index: 9997;
    animation: sun-ooze 3s ease-in-out infinite;
    display: none;
    align-items: center;
    justify-content: center;
}

.gift-sun.visible {
    display: flex;
}

@keyframes sun-ooze {
    0%, 100% {
        transform: scale(1) rotate(-5deg);
    }
    50% {
        transform: scale(1.15) rotate(5deg);
    }
}

.sun-svg {
    position: absolute;
    width: 100%;
    height: 100%;
}

.sun-shape {
    fill: var(--yellow);
    stroke: var(--text-primary);
    stroke-width: 3;
    filter: drop-shadow(4px 4px 0 var(--text-primary));
}

.sun-text {
    position: relative;
    z-index: 2;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 900;
    text-align: center;
    line-height: 1.1;
    color: var(--text-primary);
    transform: rotate(-8deg);
    margin-left: 20px;
}

.gift-sun:hover {
    animation: sun-ooze 1s ease-in-out infinite;
}

.gift-sun:hover .sun-shape {
    fill: #ffdd00;
}

@media (max-width: 768px) {
    .gift-sun {
        width: 140px;
        height: 140px;
        top: auto;
        bottom: 120px;
        left: -25px;
    }

    .sun-text {
        font-size: 14px;
        margin-left: 15px;
    }
}

/* ========== GIFT REGISTRY MODAL ========== */
.gift-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.gift-modal.active {
    display: flex;
}

.gift-modal-content {
    background: var(--yellow);
    border: 5px solid var(--text-primary);
    box-shadow: 8px 8px 0 var(--text-primary);
    padding: var(--spacing-3);
    max-width: 700px;
    position: relative;
    text-align: center;
}

.gift-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: var(--text-primary);
    font-weight: 700;
}

.gift-modal-close:hover {
    transform: scale(1.2);
}

.gift-message {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 900;
    line-height: 1.3;
    color: var(--text-primary);
    text-transform: uppercase;
    margin: 0;
}

.gift-message a {
    color: var(--text-primary);
    background: var(--white);
    padding: 2px 8px;
    text-decoration: none;
    border: 3px solid var(--text-primary);
    box-shadow: 3px 3px 0 var(--text-primary);
    transition: all 0.1s ease;
}

.gift-message a:hover {
    background: #ff6b6b;
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0 var(--text-primary);
}

@media (max-width: 768px) {
    .gift-modal-content {
        padding: var(--spacing-2);
    }

    .gift-message {
        font-size: 20px;
    }
}

/* ========== FLOATING SPOTIFY PLAYER ========== */
.spotify-float {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%) translateX(100%);
    z-index: 9997;
    display: none;
    transition: transform 0.3s ease;
}

.spotify-float.visible {
    display: flex;
    flex-direction: row;
    transform: translateY(-50%) translateX(100%);
}

.spotify-float.expanded {
    transform: translateY(-50%) translateX(0);
}

.spotify-toggle {
    flex-shrink: 0;
    width: 80px;
    background: #ff66cc;
    border: 4px solid var(--text-primary);
    border-right: none;
    padding: 20px 12px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: -6px 6px 0 var(--text-primary);
    transition: all 0.15s ease;
    margin-left: -80px;
}

.spotify-toggle:hover {
    background: #ff99dd;
    box-shadow: -8px 8px 0 var(--text-primary);
}

.spotify-icon {
    font-size: 36px;
    line-height: 1;
}

.spotify-label {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 900;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    writing-mode: vertical-lr;
}

.spotify-embed {
    width: 310px;
    background: var(--white);
    border: 3px solid var(--text-primary);
    border-right: none;
    box-shadow: -4px 4px 0 var(--text-primary);
    overflow: hidden;
}

.spotify-embed iframe {
    display: block;
    border-radius: 0;
}

@media (max-width: 768px) {
    .spotify-float {
        top: auto;
        bottom: 0;
        right: 0;
        left: 0;
        transform: none;
        width: 100%;
    }

    .spotify-float.visible {
        display: block;
        transform: translateY(calc(100% - 50px));
    }

    .spotify-float.expanded {
        transform: translateY(0);
    }

    .spotify-toggle {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        width: 100%;
        flex-direction: row;
        justify-content: center;
        padding: 12px;
        border: 3px solid var(--text-primary);
        border-bottom: none;
        box-shadow: 0 -4px 0 var(--text-primary);
    }

    .spotify-toggle:hover {
        width: 100%;
        padding-left: 12px;
        left: 0;
    }

    .spotify-label {
        writing-mode: horizontal-tb;
        transform: none;
        font-size: 12px;
    }

    .spotify-embed {
        width: 100%;
        border: none;
        border-top: 3px solid var(--text-primary);
        box-shadow: none;
    }
}
