/* Shared styles for Funtazy pages */

:root {
    --bg-cream: #FFF9F5;
    --text-primary: #2D3748;
    --text-muted: #718096;
    --accent-coral: #FF6B6B;
    --accent-teal: #4ECDC4;
    --accent-yellow: #FFE66D;
    --accent-purple: #A78BFA;
    --nav-height: 60px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Quicksand', sans-serif;
    background-color: var(--bg-cream);
    color: var(--text-primary);
    line-height: 1.6;
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    height: var(--nav-height);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 100;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-coral);
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--accent-coral);
    text-decoration: underline;
}

.nav-links a.active {
    color: var(--accent-coral);
    font-weight: 700;
}

/* Footer */
.footer {
    padding: 40px;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer p {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        padding: 0 20px;
    }
}