/* ═══════════════════════════════════════════════════════════════════
   akLpu.com - Surreal Dreamy Copywriting Tools
   ═══════════════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&family=Nunito:wght@300;400;600;700&display=swap');
:root {
    --lavender: #E6E6FA;
    --soft-pink: #FFB6C1;
    --mint: #98FB98;
    --sky-blue: #87CEEB;
    --peach: #FFDAB9;
    --dark: #2D2D44;
    --dark-text: #3D3D5C;
    --white: #FFFFFF;
    --bg: #FAF8FF;
    --gradient-nav: linear-gradient(90deg, #E6E6FA 0%, #FFB6C1 50%, #87CEEB 100%);
    --gradient-hero: linear-gradient(180deg, #f8f4ff 0%, #fff5f8 50%, #f0f8ff 100%);
    --shadow: 0 4px 20px rgba(45,45,68,0.08);
    --shadow-lg: 0 10px 40px rgba(45,45,68,0.12);
    --radius: 16px;
    --radius-sm: 8px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Nunito', sans-serif;
    background: var(--bg);
    color: var(--dark-text);
    line-height: 1.7;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
h1, h2, h3, h4 { font-family: 'Quicksand', sans-serif; color: var(--dark); font-weight: 700; }
a { color: var(--dark); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--soft-pink); text-decoration: underline; }
ul, ol { padding-left: 1.5rem; }
li { margin-bottom: 0.5rem; }
img { max-width: 100%; }

/* NAVBAR */
.navbar {
    background: var(--gradient-nav);
    padding: 0.75rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.logo:hover { text-decoration: none; color: var(--dark); }
.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}
.nav-links a {
    color: var(--dark);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.25rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}
.nav-links a:hover, .nav-links a.active {
    color: var(--dark);
    text-decoration: none;
    border-bottom-color: var(--soft-pink);
}
.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* HERO */
.hero {
    background: var(--gradient-hero);
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.floating-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape { position: absolute; border-radius: 50%; opacity: 0.15; animation: float 6s ease-in-out infinite; }
.shape-1 { width: 200px; height: 200px; background: var(--lavender); top: -50px; left: -50px; animation-delay: 0s; }
.shape-2 { width: 150px; height: 150px; background: var(--soft-pink); top: 20%; right: -30px; animation-delay: 2s; }
.shape-3 { width: 100px; height: 100px; background: var(--sky-blue); bottom: 10%; left: 10%; animation-delay: 4s; }
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}
.hero-content { position: relative; z-index: 1; }
.hero h1 { font-size: 2.8rem; margin-bottom: 1rem; }
.gradient-text {
    background: linear-gradient(135deg, #FFB6C1, #E6E6FA, #87CEEB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero p {
    font-size: 1.2rem;
    color: var(--dark-text);
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.8;
}
.hero-buttons { display: flex; gap: 1rem; justify-content: center; margin-bottom: 2rem; }
.hero-stats { display: flex; gap: 3rem; justify-content: center; }
.stat { text-align: center; }
.stat-num { font-size: 2rem; font-weight: 700; color: var(--dark); display: block; }
.stat-label { font-size: 0.9rem; color: var(--dark-text); opacity: 0.7; }

/* CONTAINER */
main { flex: 1; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
main.container { padding: 3rem 2rem; }

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    text-decoration: none;
    font-family: 'Quicksand', sans-serif;
    font-size: 0.95rem;
}
.btn-primary { background: var(--dark); color: var(--white); }
.btn-primary:hover { background: var(--dark-text); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-lg); text-decoration: none; }
.btn-secondary { background: var(--white); color: var(--dark); border: 2px solid var(--lavender); }
.btn-secondary:hover { background: var(--lavender); text-decoration: none; }
.btn-lg { padding: 1rem 2rem; font-size: 1.1rem; }
.card-btn { display: inline-block; margin-top: 1rem; background: var(--soft-pink); color: var(--dark); padding: 0.5rem 1rem; border-radius: var(--radius-sm); font-weight: 600; font-size: 0.85rem; transition: all 0.2s; }
.card-btn:hover { background: var(--dark); color: var(--white); text-decoration: none; transform: translateY(-2px); }

/* SECTIONS */
.section { padding: 4rem 0; max-width: 1200px; margin: 0 auto; padding-left: 2rem; padding-right: 2rem; }
.section-title { font-family: 'Quicksand', sans-serif; text-align: center; font-size: 2rem; color: var(--dark); margin-bottom: 2rem; position: relative; }
.section-title::after { content: ''; display: block; width: 80px; height: 4px; background: linear-gradient(90deg, var(--soft-pink), var(--lavender)); margin: 0.5rem auto 0; border-radius: 2px; }

/* CARDS GRID */
.cards-grid, .grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; margin: 2rem 0; }
.card { background: var(--white); border-radius: var(--radius); padding: 1.75rem; box-shadow: var(--shadow); transition: all 0.3s; border: 1px solid rgba(230,230,250,0.5); display: flex; flex-direction: column; }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--soft-pink); }
.card-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--dark); }
.card p { color: var(--dark-text); font-size: 0.9rem; flex: 1; opacity: 0.8; }
.card .card-btn { align-self: flex-start; }

/* TOOL PAGE */
.tool-container { max-width: 800px; margin: 0 auto; padding: 2rem; }
.tool-header { text-align: center; margin-bottom: 2rem; padding: 2rem; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); }
.tool-header h1 { font-size: 1.8rem; margin-bottom: 0.5rem; color: var(--dark); }
.tool-header p { color: var(--dark-text); opacity: 0.8; }
.tool-form { background: var(--white); padding: 2rem; border-radius: var(--radius); box-shadow: var(--shadow); margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-weight: 600; color: var(--dark); margin-bottom: 0.5rem; font-family: 'Quicksand', sans-serif; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.75rem; border: 2px solid var(--lavender); border-radius: var(--radius-sm); font-size: 1rem; font-family: 'Nunito', sans-serif; background: var(--bg); transition: border-color 0.2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--soft-pink); box-shadow: 0 0 0 3px rgba(255,182,193,0.2); }
.form-group textarea { min-height: 100px; resize: vertical; }
.form-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }
.checkbox-group { display: flex; flex-wrap: wrap; gap: 1rem; }
.checkbox-item { display: flex; align-items: center; gap: 0.5rem; }

/* OUTPUT */
.output-area { background: var(--white); border: 2px solid var(--lavender); border-radius: var(--radius); padding: 1.5rem; margin-top: 1.5rem; min-height: 200px; }
.output-area pre { white-space: pre-wrap; font-family: 'Nunito', sans-serif; line-height: 1.8; font-size: 1rem; }
.output-actions { display: flex; gap: 1rem; margin-top: 1rem; flex-wrap: wrap; }

/* CONTENT PAGES */
.content { max-width: 800px; margin: 0 auto; padding: 1.5rem; }
.content h1 { color: var(--dark); margin-bottom: 1.5rem; font-size: 2rem; }
.content h2 { color: var(--dark); margin: 2rem 0 0.75rem; font-size: 1.4rem; }
.content h3 { color: var(--dark-text); margin: 1.5rem 0 0.5rem; }
.content p { line-height: 1.8; margin: 0.75rem 0; }
.content ul, .content ol { margin: 1rem 0 1.5rem; }
.content li { margin: 0.5rem 0; }
.content img { border-radius: var(--radius); margin: 1.5rem 0; max-width: 100%; box-shadow: var(--shadow); }
.content form { margin-top: 1.5rem; }
.content input, .content textarea, .content select { width: 100%; padding: 0.75rem; border: 2px solid var(--lavender); border-radius: var(--radius-sm); font-size: 1rem; font-family: 'Nunito', sans-serif; margin: 0.5rem 0; }
.content input:focus, .content textarea:focus { outline: none; border-color: var(--soft-pink); }
.content button { background: var(--dark); color: var(--white); border: none; padding: 0.75rem 2rem; border-radius: var(--radius-sm); cursor: pointer; font-size: 1rem; font-weight: 600; margin-top: 0.5rem; font-family: 'Quicksand', sans-serif; }
.content button:hover { background: var(--dark-text); }

/* BREADCRUMB */
.breadcrumb { max-width: 1200px; margin: 0 auto; padding: 1rem 2rem; font-size: 0.9rem; color: var(--dark-text); }
.breadcrumb a { color: var(--dark); }
.breadcrumb a:hover { color: var(--soft-pink); }

/* RELATED */
.related { background: var(--lavender); padding: 2rem; border-radius: var(--radius); margin-top: 3rem; }
.related h3 { color: var(--dark); margin-bottom: 1rem; }
.related ul { display: flex; flex-wrap: wrap; gap: 0.5rem; list-style: none; padding: 0; }
.related a { background: var(--white); padding: 0.5rem 1rem; border-radius: var(--radius-sm); font-size: 0.9rem; }
.related a:hover { background: var(--dark); color: var(--white); text-decoration: none; }

/* FOOTER */
footer { background: var(--dark); color: var(--white); padding: 3rem 2rem 1.5rem; margin-top: auto; }
.footer-content { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; }
.footer-section h4 { color: var(--soft-pink); margin-bottom: 1rem; font-size: 1rem; }
.footer-section ul { list-style: none; padding: 0; }
.footer-section li { margin-bottom: 0.5rem; }
.footer-section a { color: rgba(255,255,255,0.7); }
.footer-section a:hover { color: var(--white); text-decoration: none; }
.footer-bottom { max-width: 1200px; margin: 2rem auto 0; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); text-align: center; color: rgba(255,255,255,0.5); font-size: 0.9rem; }

/* 404 */
.not-found { text-align: center; padding: 5rem 2rem; }
.not-found h1 { font-size: 5rem; color: var(--soft-pink); margin-bottom: 1rem; }
.not-found h2 { color: var(--dark); margin-bottom: 1.5rem; }

/* UTILITIES */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }

/* MOBILE */
@media (max-width: 768px) {
    .nav-toggle { display: block; }
    .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 1rem; gap: 1rem; box-shadow: var(--shadow); }
    .nav-links.active { display: flex; }
    .hero h1 { font-size: 1.8rem; }
    .hero-stats { flex-direction: column; gap: 1.5rem; }
    .cards-grid, .grid { grid-template-columns: 1fr; }
    .section { padding: 2.5rem 1rem; }
    .tool-container { padding: 1.5rem; }
    .content { padding: 1rem; }
    .footer-content { grid-template-columns: 1fr; }
    .not-found h1 { font-size: 3.5rem; }
}

/* PRINT */
@media print { .navbar, footer, .btn, .nav-toggle { display: none !important; } }
