/* ==========================================================================
   Nobodies Collective Association
   ========================================================================== */

:root {
    --color-bg: #fffbf7;
    --color-bg-alt: #fff7f0;
    --color-text: #1a1a1a;
    --color-text-muted: #555;
    --color-accent: #ff5722;
    --color-accent-hover: #e64a19;
    --color-purple: #8b5cf6;
    --color-purple-dark: #7c3aed;
    --color-yellow: #fbbf24;
    --color-pink: #ec4899;
    --color-border: #eee;

    --font-display: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --container: 1100px;
    --spacing: 1.5rem;
    --radius: 12px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color 0.2s;
}
a:hover { color: var(--color-accent-hover); }

/* Container */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--spacing);
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(3rem, 10vw, 6rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 1.5rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.15rem; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-pink) 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.3);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 87, 34, 0.4);
    color: #fff;
}

.btn-outline {
    background: transparent;
    color: var(--color-text);
    border: 2px solid var(--color-text);
}
.btn-outline:hover {
    background: var(--color-text);
    color: #fff;
}

.btn-discord {
    background: #5865F2;
    color: #fff;
}
.btn-discord:hover {
    background: #4752c4;
    color: #fff;
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
}
.btn-whatsapp:hover {
    background: #1da851;
    color: #fff;
    transform: translateY(-2px);
}

.btn-link {
    color: var(--color-accent);
    font-size: 0.9rem;
    font-weight: 600;
}
.btn-link:hover {
    text-decoration: underline;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem 0;
    background: rgba(255, 251, 247, 0.9);
    backdrop-filter: blur(10px);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--color-text);
    position: relative;
}
.logo::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-purple));
    border-radius: 2px;
}
.logo:hover { color: var(--color-accent); }

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--color-accent); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: 0.3s;
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(139, 92, 246, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(255, 87, 34, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(251, 191, 36, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

/* Floating shapes */
.hero-bg::before,
.hero-bg::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}
.hero-bg::before {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 10%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(236, 72, 153, 0.1));
    animation-delay: -2s;
}
.hero-bg::after {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: 5%;
    background: linear-gradient(135deg, rgba(255, 87, 34, 0.12), rgba(251, 191, 36, 0.1));
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-tag {
    display: inline-block;
    padding: 0.6rem 1.25rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-purple-dark);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.08));
    border-radius: 50px;
}

.hero h1 {
    color: var(--color-text);
    margin-bottom: 1.5rem;
    line-height: 0.95;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--color-accent), var(--color-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-location {
    font-size: 1.35rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* About */
.about {
    padding: 8rem 0;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-border), transparent);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    background: linear-gradient(135deg, var(--color-text) 0%, var(--color-text-muted) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
}
.about-text p:last-child { margin-bottom: 0; }

.about-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.about-shape {
    width: 320px;
    height: 320px;
    background: linear-gradient(135deg, var(--color-purple) 0%, var(--color-accent) 50%, var(--color-yellow) 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morph 8s ease-in-out infinite;
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3);
}

@keyframes morph {
    0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    25% { border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%; }
    50% { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; }
    75% { border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%; }
}

/* Principles */
.principles {
    padding: 8rem 0;
    background: var(--color-bg-alt);
}

.principles h2 {
    text-align: center;
}

.principles-intro {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto 3.5rem;
}

.principles-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.principle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: #fff;
    border-radius: var(--radius);
    transition: all 0.3s;
    border: 1px solid transparent;
}
.principle:hover {
    transform: translateX(8px);
    border-color: var(--color-accent);
    box-shadow: 0 4px 20px rgba(255, 87, 34, 0.1);
}

.principle-name {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--color-text);
}

.principle-desc {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    text-align: right;
    max-width: 60%;
}

.consent-banner {
    margin-top: 2.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(236, 72, 153, 0.05));
    border-radius: var(--radius);
    text-align: center;
    color: var(--color-text-muted);
    font-size: 1.05rem;
}
.consent-banner strong {
    color: var(--color-purple-dark);
}

/* Event */
.event {
    padding: 8rem 0;
}

.event-content {
    display: grid;
    gap: 3rem;
}

.event-highlight {
    font-family: var(--font-display);
    font-size: 2rem;
    background: linear-gradient(135deg, var(--color-accent), var(--color-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.event-info p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.planning-calls {
    padding: 2.5rem;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

.planning-calls h3 {
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.planning-calls > p {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.call-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.call-card {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--color-bg);
    border-radius: var(--radius);
    transition: transform 0.3s;
}
.call-card:hover {
    transform: translateY(-4px);
}

.call-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 70px;
    padding: 1rem;
    background: linear-gradient(135deg, var(--color-accent), var(--color-pink));
    border-radius: var(--radius);
    color: #fff;
}

.call-day {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1;
}

.call-month {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.call-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.call-details strong {
    color: var(--color-text);
    font-size: 1.05rem;
}

.call-details span {
    color: var(--color-text-muted);
}

.call-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.75rem;
}

/* Join */
.join {
    padding: 8rem 0;
    background: var(--color-bg-alt);
}

.join h2 { text-align: center; }

.join-intro {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 1.15rem;
    margin-bottom: 3rem;
}

.join-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.join-card {
    padding: 2.5rem;
    background: #fff;
    border-radius: var(--radius);
    transition: all 0.3s;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
}

.join-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.join-card h3 {
    margin-bottom: 1rem;
    color: var(--color-text);
}

.join-card p {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Coming Soon */
.coming-soon {
    padding: 3rem;
    background: #fff;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.coming-soon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-purple), var(--color-pink));
}

.coming-soon h3 {
    margin-bottom: 0.25rem;
    color: var(--color-text);
}

.coming-soon-date {
    color: var(--color-accent);
    font-weight: 600;
    margin-bottom: 2rem;
}

.coming-soon-items {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.coming-soon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 2rem;
    background: var(--color-bg);
    border: 2px dashed var(--color-border);
    border-radius: var(--radius);
    color: var(--color-text-muted);
    font-weight: 500;
    transition: all 0.3s;
}
.coming-soon-item:hover {
    border-color: var(--color-purple);
    border-style: solid;
}

.coming-soon-icon {
    font-size: 2.5rem;
}

.coming-soon-cta {
    color: var(--color-text-muted);
    margin-bottom: 1.25rem;
}

.community-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Governance */
.governance {
    padding: 8rem 0;
    text-align: center;
}

.governance > .container > p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.governance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    text-align: left;
}

.governance-item {
    padding: 2rem;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s;
}
.governance-item:hover {
    transform: translateY(-4px);
}

.governance-item h4 {
    color: var(--color-accent);
    margin-bottom: 0.75rem;
}

.governance-item p {
    color: var(--color-text-muted);
    margin: 0;
    line-height: 1.6;
}

/* Footer */
.footer {
    padding: 5rem 0 2rem;
    background: var(--color-text);
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: #fff;
    display: block;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.footer-address {
    font-size: 0.9rem;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-links h4,
.footer-connect h4 {
    color: #fff;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1.25rem;
}

.footer-links a,
.footer-connect a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    padding: 0.35rem 0;
    transition: color 0.2s;
}

.footer-links a:hover,
.footer-connect a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-toggle { display: flex; }

    .nav-links {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: #fff;
        border-bottom: 1px solid var(--color-border);
        padding: 1rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
    }
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .nav-links a {
        display: block;
        padding: 0.75rem 0;
    }

    .hero h1 { font-size: clamp(3rem, 15vw, 5rem); }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .about-visual { order: -1; }
    .about-shape { width: 240px; height: 240px; }

    .principles-list {
        grid-template-columns: 1fr;
    }

    .principle {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    .principle-desc {
        text-align: left;
        max-width: 100%;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
