/* Srecica - Playful Pastel Parenting Styles */
:root {
    --bg-main: #fffdfb;
    --text-color: #4a3e3d;
    --text-muted: #7d6b69;
    --peach: #ffebe3;
    --peach-dark: #f0c9bd;
    --sky-blue: #e0f2fe;
    --sky-blue-dark: #bde0fe;
    --lilac: #f3e8ff;
    --lilac-dark: #e9d5ff;
    --mint: #ecfdf5;
    --mint-dark: #d1fae5;
    --font-family: 'Quicksand', sans-serif;
    --transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

body {
    background-color: var(--bg-main);
    background-image: 
        radial-gradient(circle at 80% 20%, var(--lilac) 0%, transparent 50%),
        radial-gradient(circle at 15% 45%, var(--peach) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, var(--sky-blue) 0%, transparent 45%),
        radial-gradient(circle at 15% 95%, var(--mint) 0%, transparent 45%);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    color: var(--text-color);
    font-family: var(--font-family);
    line-height: 1.6;
    font-weight: 500;
}

/* Header */
.playful-header {
    background-color: rgba(255, 253, 251, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.2rem 1.5rem;
    border-bottom: 2px dashed var(--peach-dark);
}

.header-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.playful-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-color);
}

.playful-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-item {
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-muted);
    transition: var(--transition);
}

.nav-item:hover {
    color: var(--text-color);
    transform: translateY(-2px);
}

.nav-btn-play {
    text-decoration: none;
    background-color: var(--sky-blue);
    color: var(--text-color);
    font-weight: 700;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    transition: var(--transition);
    border: 2px solid var(--sky-blue-dark);
}

.nav-btn-play:hover {
    background-color: var(--sky-blue-dark);
    transform: scale(1.05) rotate(-1deg);
}

/* Hero Section */
.playful-hero {
    padding: 6rem 1.5rem;
    text-align: center;
    background: transparent;
}

.hero-container {
    max-width: 750px;
    margin: 0 auto;
    position: relative;
}

.hero-balloon {
    font-size: 3.5rem;
    display: inline-block;
    animation: float 4s ease-in-out infinite;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    margin: 1.5rem 0;
    line-height: 1.2;
    color: var(--text-color);
}

.hero-lead {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.hero-cta-btn {
    display: inline-block;
    background-color: var(--peach);
    color: var(--text-color);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1.2rem 2.2rem;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid var(--peach-dark);
    box-shadow: 0 8px 20px rgba(74, 62, 61, 0.05);
    transition: var(--transition);
}

.hero-cta-btn:hover {
    transform: scale(1.05) rotate(1deg);
    background-color: var(--peach-dark);
    box-shadow: 0 12px 25px rgba(74, 62, 61, 0.1);
}

/* Development Section */
.development-section {
    padding: 5rem 1.5rem;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.2rem;
    text-align: center;
    font-weight: 700;
    margin-bottom: 3.5rem;
}

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

.play-card {
    padding: 3rem 2rem;
    border-radius: 28px;
    border: 2px solid transparent;
    transition: var(--transition);
}

.play-card:hover {
    transform: translateY(-8px);
}

.play-card.lilac {
    background-color: var(--lilac);
    border-color: var(--lilac-dark);
}

.play-card.peach {
    background-color: var(--peach);
    border-color: var(--peach-dark);
}

.play-card.mint {
    background-color: var(--mint);
    border-color: var(--mint-dark);
}

.card-emoji {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.play-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.play-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Creative Section */
.creative-section {
    padding: 6rem 1.5rem;
    background-color: #fff9f6;
    border-top: 2px dashed var(--peach-dark);
    border-bottom: 2px dashed var(--peach-dark);
}

.creative-flex {
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.creative-text {
    flex: 1.2;
    min-width: 320px;
}

.creative-lead {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.tip-box {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    background-color: white;
    padding: 1.5rem;
    border-radius: 20px;
    border: 2px solid var(--peach-dark);
}

.tip-num {
    background-color: var(--sky-blue);
    color: var(--text-color);
    font-size: 1.2rem;
    font-weight: 700;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid var(--sky-blue-dark);
}

.tip-box p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.tip-box strong {
    color: var(--text-color);
}

.creative-graphic {
    flex: 1;
    min-width: 280px;
    height: 300px;
    background-color: var(--lilac);
    border-radius: 30px;
    border: 2px dashed var(--lilac-dark);
}

.pattern-circles {
    background-image: radial-gradient(var(--peach-dark) 20%, transparent 20%),
                      radial-gradient(var(--sky-blue-dark) 20%, transparent 20%);
    background-size: 40px 40px;
    background-position: 0 0, 20px 20px;
    opacity: 0.5;
}

/* Generator Section */
.generator-section {
    padding: 6rem 1.5rem;
}

.generator-box {
    max-width: 650px;
    margin: 0 auto;
    background-color: white;
    border: 2px solid var(--sky-blue-dark);
    padding: 4rem 3rem;
    border-radius: 36px;
    box-shadow: 0 10px 30px rgba(74, 62, 61, 0.02);
}

.generator-header {
    text-align: center;
    margin-bottom: 3rem;
}

.header-badge {
    background-color: var(--mint);
    color: var(--text-color);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    border: 2px solid var(--mint-dark);
}

.generator-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 1rem 0;
}

.generator-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.generator-inputs {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 700;
}

.playful-select {
    padding: 1.1rem;
    font-family: var(--font-family);
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid var(--peach-dark);
    border-radius: 50px;
    background-color: var(--bg-main);
    color: var(--text-color);
    outline: none;
    cursor: pointer;
    transition: var(--transition);
}

.playful-select:focus {
    border-color: var(--sky-blue-dark);
    background-color: white;
}

.playful-submit-btn {
    background-color: var(--sky-blue);
    color: var(--text-color);
    border: 2px solid var(--sky-blue-dark);
    font-family: var(--font-family);
    font-size: 1.1rem;
    font-weight: 700;
    padding: 1.2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(189, 224, 254, 0.2);
}

.playful-submit-btn:hover {
    background-color: var(--sky-blue-dark);
    transform: scale(1.02);
}

/* Play Result Card */
.play-result-card {
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    border-top: 2px dashed var(--peach-dark);
    text-align: center;
    animation: bounceIn 0.5s ease-out;
}

.result-emoji {
    font-size: 3rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.play-result-card .result-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.8rem;
}

.result-meta {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    background-color: var(--mint);
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    border: 2px solid var(--mint-dark);
}

.result-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Footer */
.playful-footer {
    background-color: var(--peach);
    border-top: 2px dashed var(--peach-dark);
    padding: 5rem 1.5rem 2rem 1.5rem;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    display: block;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom {
    border-top: 1px dashed var(--peach-dark);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 700;
}

/* Floating balloon animation */
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(2deg); }
}

@keyframes bounceIn {
    0% { transform: scale(0.9); opacity: 0; }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .generator-box {
        padding: 2.5rem 1.5rem;
    }
    .header-inner {
        flex-direction: column;
        gap: 1rem;
    }
}


/* Playful Dropdowns */
.nav-item-dropdown {
    position: relative;
    display: inline-block;
}
.dropdown-trigger {
    cursor: pointer;
}
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    min-width: 190px;
    box-shadow: 0 10px 25px rgba(254, 180, 168, 0.15);
    border: 2px solid var(--peach-dark);
    border-radius: 20px;
    z-index: 1000;
    padding: 0.5rem 0;
}
.dropdown-menu a {
    color: var(--text-color);
    font-family: var(--font-family);
    padding: 0.6rem 1.2rem;
    text-decoration: none;
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: left;
    transition: var(--transition);
}
.dropdown-menu a:hover {
    background-color: var(--mint);
    color: var(--text-color);
    padding-left: 1.5rem;
}
.nav-item-dropdown:hover .dropdown-menu {
    display: block;
}

/* Playful FAQ Blocks */
.faq-section {
    padding: 6rem 1.5rem;
    background-color: transparent;
    border-top: 2px dashed var(--peach-dark);
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 3rem auto 0 auto;
}

.faq-card {
    background-color: white;
    border: 2px solid var(--peach-dark);
    padding: 2rem;
    border-radius: 24px;
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(254, 180, 168, 0.05);
}

.faq-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(254, 180, 168, 0.12);
    border-color: var(--sky-blue-dark);
}

.faq-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 0.8rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.faq-card h4::before {
    content: "❓";
    font-size: 1.25rem;
    flex-shrink: 0;
}

.faq-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
    padding-left: 2.1rem;
}

/* Parent Directory Guides */
.guide-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem;
}

@media (max-width: 992px) {
    .guide-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .guide-grid {
        grid-template-columns: 1fr;
    }
}

.guide-card {
    transition: var(--transition);
}

.guide-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 30px rgba(74, 62, 61, 0.08) !important;
}


/* Weekend Generator styling */
#weekend-suggestion-text {
    transition: opacity 0.2s ease-in-out;
}

