/* ===========================
   Heavenly Joy Makes — Style
   Super cute, girly, sparkly
   =========================== */

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

html, body {
    height: 100%;
    width: 100%;
}

body {
    font-family: 'Trebuchet MS', 'Lucida Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background: #FFF9F0;
    color: #2D3561;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Floating sparkles in background */
.bg-sprinkle {
    position: fixed;
    pointer-events: none;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}
.bg-sprinkle:nth-child(1) { top: 8%; left: 4%; animation-delay: 0s; }
.bg-sprinkle:nth-child(2) { top: 15%; right: 6%; animation-delay: 1s; }
.bg-sprinkle:nth-child(3) { top: 30%; left: 3%; animation-delay: 2s; }
.bg-sprinkle:nth-child(4) { top: 25%; right: 4%; animation-delay: 0.5s; }
.bg-sprinkle:nth-child(5) { bottom: 18%; left: 5%; animation-delay: 1.5s; }
.bg-sprinkle:nth-child(6) { bottom: 12%; right: 7%; animation-delay: 2.5s; }
.bg-sprinkle:nth-child(7) { top: 50%; left: 2%; animation-delay: 3s; }
.bg-sprinkle:nth-child(8) { top: 55%; right: 2%; animation-delay: 0.8s; }
.bg-sprinkle:nth-child(9) { bottom: 35%; left: 8%; animation-delay: 1.8s; }
.bg-sprinkle:nth-child(10) { bottom: 40%; right: 9%; animation-delay: 2.2s; }

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

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
    50% { transform: scale(1.2) rotate(180deg); opacity: 0.7; }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ===== NAVIGATION ===== */
.nav {
    background: white;
    padding: 14px 20px;
    box-shadow: 0 4px 0 rgba(176, 132, 232, 0.15);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 3px solid #FFE0EC;
}

.nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}

.nav-logo-mark {
    position: relative;
    line-height: 1;
}

.nav-logo-mark .h { color: #B084E8; font-size: 36px; font-weight: 700; }
.nav-logo-mark .j { color: #E63A8B; font-size: 36px; font-weight: 700; }

.nav-logo-mark .frosting {
    position: absolute;
    top: -10px;
    left: 56%;
    transform: translateX(-50%);
    width: 24px;
    height: 18px;
}

.nav-logo-name {
    font-weight: 700;
    font-size: 18px;
    color: #8B5FBF;
    line-height: 1;
}

.nav-logo-makes {
    font-size: 11px;
    color: #E63A8B;
    letter-spacing: 4px;
    font-weight: 700;
}

.nav-links {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-link {
    padding: 8px 14px;
    border-radius: 12px;
    text-decoration: none;
    color: #6B6B7B;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.2s;
}

.nav-link:hover {
    background: #FFE0EC;
    color: #E63A8B;
    transform: translateY(-2px);
}

.nav-link.active {
    background: #E63A8B;
    color: white;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px 20px;
    position: relative;
    z-index: 10;
}

/* ===== PAGE TITLES ===== */
.page-title {
    text-align: center;
    margin-bottom: 30px;
}

.page-title h1 {
    font-size: 48px;
    color: #8B5FBF;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.page-title .heart {
    display: inline-block;
    color: #E63A8B;
    animation: bounce 1.5s ease-in-out infinite;
}

.page-title p {
    font-size: 18px;
    color: #6B6B7B;
    font-weight: 500;
}

/* ===== CARDS ===== */
.card {
    background: white;
    padding: 28px;
    border-radius: 24px;
    border: 3px solid #FFE0EC;
    box-shadow: 0 6px 0 rgba(176, 132, 232, 0.15);
    margin-bottom: 24px;
}

.card-pink {
    background: linear-gradient(180deg, #FFF0F5 0%, white 100%);
    border-color: #FFB8D0;
}

.card-purple {
    background: linear-gradient(180deg, #F5EFFF 0%, white 100%);
    border-color: #D4B8F5;
}

.card-yellow {
    background: linear-gradient(180deg, #FFF8E1 0%, white 100%);
    border-color: #FFD86F;
}

.card-teal {
    background: linear-gradient(180deg, #E1F5F3 0%, white 100%);
    border-color: #95E1D9;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 28px;
    background: #E63A8B;
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-family: inherit;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s, background 0.2s;
    box-shadow: 0 4px 0 #C41E5C;
}

.btn:hover {
    transform: translateY(-2px);
    background: #FF4598;
}

.btn:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #C41E5C;
}

.btn-purple {
    background: #B084E8;
    box-shadow: 0 4px 0 #8B5FBF;
}
.btn-purple:hover { background: #C49EF0; }

.btn-yellow {
    background: #FFC93C;
    color: #8B5FBF;
    box-shadow: 0 4px 0 #E6A800;
}
.btn-yellow:hover { background: #FFD86F; }

.btn-teal {
    background: #4ECDC4;
    box-shadow: 0 4px 0 #2BA89E;
}
.btn-teal:hover { background: #6FDFD7; }

/* ===== FOOTER ===== */
.footer {
    text-align: center;
    padding: 40px 20px;
    color: #B0B0B8;
    font-size: 13px;
    line-height: 1.7;
    border-top: 3px dashed #FFE0EC;
    margin-top: 40px;
}

.footer .heart { color: #E63A8B; animation: sparkle 2s ease-in-out infinite; display: inline-block; }

/* ===== MOBILE ===== */
@media (max-width: 640px) {
    .page-title h1 { font-size: 36px; }
    .page-title p { font-size: 16px; }
    .card { padding: 20px; border-radius: 18px; }
    .btn { padding: 12px 22px; font-size: 14px; }
    .nav-link { font-size: 13px; padding: 6px 10px; }
    .nav-logo-name { font-size: 16px; }
    .nav-logo-makes { font-size: 10px; letter-spacing: 3px; }
}
