/*
Theme Name: Lucy and Lucky Adventures
Theme URI: https://yourwebsite.com
Author: Your Name
Author URI: https://yourwebsite.com
Description: A magical WordPress theme for Lucy and Lucky's Umbrella Adventures - perfect for children's stories.
Version: 1.0
License: GPL v2 or later
Text Domain: lucy-lucky-theme
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #f7f9fc;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: white;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-button {
    background: #ffe66d;
    color: #2c3e50;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Chapter Content */
.chapter-content {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    margin: 2rem auto;
    max-width: 800px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.chapter-number {
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.illustration-placeholder {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
    color: white;
    font-style: italic;
}

.future-adventures {
    background: linear-gradient(135deg, #ffe66d, #ffd93d);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
}

.future-adventures h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.future-adventures ul {
    list-style: none;
    padding-left: 0;
}

.future-adventures li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.future-adventures li::before {
    content: "✨";
    position: absolute;
    left: 0;
}