/* ppuzzle.org - Ethereal Pastoral Political Commons */

:root {
    --slate: #4A5568;
    --mist: #C8D8E0;
    --sage: #7BA098;
    --stone: #718096;
    --blush: #D4A0A0;
    --deep-blue: #2D3748;
    --ice: #D8E2EC;
    --cloud: #E8ECF0;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--cloud);
    color: var(--deep-blue);
    font-family: 'Crimson Text', serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.8;
    overflow-x: hidden;
}

/* Watercolor Circles */
.watercolor {
    position: fixed;
    pointer-events: none;
    z-index: 0;
}

.wc-1 {
    width: 400px;
    height: 380px;
    border-radius: 48% 52% 50% 50% / 50% 48% 52% 50%;
    background: radial-gradient(circle at 50% 50%, rgba(200, 216, 224, 0.2) 0%, rgba(200, 216, 224, 0.1) 40%, transparent 70%);
    top: 10vh;
    right: -80px;
}

.wc-2 {
    width: 300px;
    height: 320px;
    border-radius: 50% 48% 52% 50% / 48% 52% 50% 50%;
    background: radial-gradient(circle at 50% 50%, rgba(212, 160, 160, 0.15) 0%, rgba(212, 160, 160, 0.08) 40%, transparent 70%);
    top: 60vh;
    left: -60px;
}

.wc-3 {
    width: 350px;
    height: 340px;
    border-radius: 52% 48% 50% 50% / 50% 50% 48% 52%;
    background: radial-gradient(circle at 50% 50%, rgba(123, 160, 152, 0.15) 0%, rgba(123, 160, 152, 0.08) 40%, transparent 70%);
    top: 160vh;
    right: 5vw;
}

.wc-4 {
    width: 280px;
    height: 300px;
    border-radius: 48% 52% 48% 52% / 52% 48% 52% 48%;
    background: radial-gradient(circle at 50% 50%, rgba(200, 216, 224, 0.18) 0%, rgba(200, 216, 224, 0.08) 40%, transparent 70%);
    top: 280vh;
    left: 10vw;
}

/* Floating Bubbles */
.bubbles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.float-bubble {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(200, 216, 224, 0.2);
    background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.06), transparent);
    animation: floatUp linear infinite;
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% {
        transform: translateY(-20vh) translateX(20px);
        opacity: 0;
    }
}

/* Navigation */
.nav-toggle {
    position: fixed;
    top: 24px;
    left: 24px;
    z-index: 100;
}

.nav-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(232, 236, 240, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.nav-btn:hover {
    background: rgba(200, 216, 224, 0.8);
}

.nav-icon {
    display: block;
    width: 16px;
    height: 2px;
    background: var(--slate);
    position: relative;
}

.nav-icon::before,
.nav-icon::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 2px;
    background: var(--slate);
    left: 0;
}

.nav-icon::before { top: -5px; }
.nav-icon::after { top: 5px; }

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(232, 236, 240, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.nav-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.nav-link {
    font-family: 'Tenor Sans', sans-serif;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    letter-spacing: 0.1em;
    color: var(--deep-blue);
    text-decoration: none;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--sage);
}

/* Sections */
.section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    padding: 80px 40px;
}

/* Pond Surface */
.pond {
    text-align: center;
}

.pond-content {
    position: relative;
    z-index: 2;
}

.wordmark {
    font-family: 'Tenor Sans', sans-serif;
    font-size: clamp(3rem, 7vw, 6rem);
    letter-spacing: 0.15em;
    color: var(--deep-blue);
    font-weight: 400;
    opacity: 0;
    animation: pondRise 2s ease-out 0.3s forwards;
}

.pond-tagline {
    font-family: 'Crimson Text', serif;
    font-style: italic;
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--stone);
    letter-spacing: 0.08em;
    opacity: 0;
    animation: pondFade 1.5s ease-out 1s forwards;
}

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

@keyframes pondFade {
    to { opacity: 0.8; }
}

/* Lily Pads */
.lily-pad {
    max-width: 580px;
    width: 100%;
    padding: 48px 40px;
    background: rgba(232, 236, 240, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    border: 1px solid rgba(200, 216, 224, 0.3);
}

.reveal-pad {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-pad.visible {
    opacity: 1;
    transform: translateY(0);
}

.lily-title {
    font-family: 'Tenor Sans', sans-serif;
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    letter-spacing: 0.08em;
    color: var(--deep-blue);
    margin-bottom: 20px;
    font-weight: 400;
}

.lily-body {
    color: var(--slate);
    margin-bottom: 12px;
    font-size: 16px;
}

/* Programs */
.program-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.program-item {
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(200, 216, 224, 0.4);
}

.program-name {
    font-family: 'Tenor Sans', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.06em;
    color: var(--sage);
    display: block;
    margin-bottom: 4px;
}

.program-desc {
    font-size: 15px;
    color: var(--stone);
}

/* Question Bubbles */
.question-bubbles {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 16px;
}

.q-bubble {
    padding: 20px 24px;
    background: rgba(216, 226, 236, 0.4);
    border-radius: 16px;
    cursor: pointer;
    transition: background 0.4s ease;
    overflow: hidden;
}

.q-bubble:hover {
    background: rgba(200, 216, 224, 0.5);
}

.q-short {
    font-family: 'Tenor Sans', sans-serif;
    font-size: 14px;
    letter-spacing: 0.08em;
    color: var(--sage);
    display: block;
    margin-bottom: 4px;
}

.q-full {
    color: var(--slate);
    font-size: 15px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.4s ease;
}

.q-bubble.expanded .q-full {
    max-height: 120px;
    opacity: 1;
    margin-top: 8px;
}

/* Shore / Contact */
.shore-contact {
    margin-top: 24px;
}

.contact-text {
    font-family: 'Tenor Sans', sans-serif;
    font-size: 14px;
    color: var(--sage);
    letter-spacing: 0.06em;
    opacity: 0.7;
}
