/* shipkaro - minimal white + purple theme */

:root {
    --purple: #A78BFA;
    --purple-dark: #8B5CF6;
    --purple-light: #C4B5FD;
    --black: #1a1a1a;
    --gray: #6b7280;
    --gray-light: #f3f4f6;
    --white: #ffffff;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--white);
    color: var(--black);
    line-height: 1.6;
}

/* Navigation */
.nav {
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    background: var(--white);
    z-index: 100;
    border-bottom: 1px solid var(--gray-light);
}

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

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-icon {
    height: 32px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--gray);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

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

.nav-link-cta {
    background: var(--purple);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 6px;
}

.nav-link-cta:hover {
    background: var(--purple-dark);
    color: var(--white);
}

/* Header */
.header {
    padding: 4rem 2rem;
    text-align: center;
}

.header-content {
    max-width: 600px;
    margin: 0 auto;
}

.logo {
    max-width: 320px;
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
}

.tagline {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--gray);
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.ship-button-container {
    margin-top: 1rem;
}

.ship-button-gif {
    max-width: 200px;
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Wall of Love */
.wall-of-love {
    padding: 4rem 2rem;
    text-align: center;
}

.wall-of-love h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.wall-subtitle {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 3rem;
}

/* Masonry layout using CSS columns */
.posts-grid {
    column-count: 3;
    column-gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.post-card {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease;
    background: var(--white);
    break-inside: avoid;
    margin-bottom: 1.5rem;
}

.post-card:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 24px rgba(167, 139, 250, 0.25);
}

.post-card img {
    width: 100%;
    height: auto;
    display: block;
}

/* Footer */
.footer {
    padding: 3rem 2rem;
    text-align: center;
    background-color: var(--gray-light);
    margin-top: 2rem;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter {
    margin-bottom: 1.5rem;
}

.newsletter-link {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: var(--purple);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.newsletter-link:hover {
    background: var(--purple-dark);
    transform: translateY(-1px);
}

.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.social-links a {
    color: var(--gray);
    transition: color 0.2s ease;
}

.social-links a:hover {
    color: var(--purple);
}

.copyright {
    font-size: 0.875rem;
    color: var(--gray);
}

/* Responsive */
@media (max-width: 768px) {
    .nav {
        padding: 0.75rem 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-link {
        font-size: 0.8rem;
    }

    .header {
        padding: 3rem 1.5rem;
    }

    .logo {
        max-width: 240px;
    }

    .tagline {
        font-size: 1.25rem;
    }

    .ship-button-gif {
        max-width: 150px;
    }

    .wall-of-love {
        padding: 3rem 1rem;
    }

    .wall-of-love h2 {
        font-size: 1.5rem;
    }

    .posts-grid {
        column-count: 2;
        column-gap: 1rem;
    }

    .post-card {
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .nav-links {
        gap: 0.75rem;
    }

    .nav-link {
        font-size: 0.75rem;
    }

    .nav-link-cta {
        padding: 0.4rem 0.75rem;
    }

    .header {
        padding: 2rem 1rem;
    }

    .logo {
        max-width: 200px;
    }

    .tagline {
        font-size: 1.125rem;
    }

    .ship-button-gif {
        max-width: 120px;
    }

    .posts-grid {
        column-count: 1;
    }
}
