/* Superlative Planner - Main Stylesheet */

:root {
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --accent-color: #f093fb;
    --text-dark: #2d3748;
    --text-light: #718096;
    --bg-light: #f7fafc;
}

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

body {
    font-family: 'Georgia', serif;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Navigation */
.navbar {
    padding: 1rem 0;
}

.bg-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
}

.brand-icon {
    font-size: 1.8rem;
}

/* Hero Section */
.hero-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.95rem;
}

.cta-button {
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    border-radius: 50px;
    transition: all 0.3s;
}

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

.price-tag {
    margin-top: 1rem;
    font-size: 1.3rem;
    font-weight: bold;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* How It Works Section */
.how-it-works-section {
    padding: 80px 0;
}

.step-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stars {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.author {
    font-weight: bold;
    color: var(--primary-color);
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0;
    margin-top: 5rem;
}

.footer-link {
    color: white;
    text-decoration: none;
}

.footer-link:hover {
    color: var(--accent-color);
}

/* Planner Creator Form */
.progress-container {
    margin-bottom: 2rem;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.layout-option, .theme-option {
    position: relative;
    cursor: pointer;
}

.layout-option input, .theme-option input {
    position: absolute;
    opacity: 0;
}

.layout-option label, .theme-option label {
    display: block;
    padding: 1.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.layout-option:hover label, .theme-option:hover label {
    border-color: var(--primary-color);
    background: #f7fafc;
}

.layout-option input:checked + label, .theme-option input:checked + label {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
}

.layout-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.theme-preview {
    height: 100px;
    border-radius: 10px;
    margin-bottom: 0.5rem;
}

.section-check {
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

/* Preview Page */
.preview-cover {
    padding: 80px 40px;
    border-radius: 15px;
    color: white;
    text-align: center;
    margin-bottom: 2rem;
}

.preview-cover h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.preview-cover .subtitle {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.preview-cover .date-range {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.preview-cover .owner-name {
    font-size: 1.5rem;
    padding-top: 2rem;
    border-top: 2px solid white;
}

.sample-page {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 1rem;
}

.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: bold;
}

.page-section {
    margin-bottom: 1.5rem;
}

.line-item {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.schedule-preview div {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.price-display {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.price-label {
    font-size: 1rem;
    opacity: 0.9;
}

.price-amount {
    font-size: 3rem;
    font-weight: bold;
}

.features-list .feature-item {
    padding: 0.5rem 0;
    font-size: 1rem;
}

/* Success Page */
.success-icon {
    display: flex;
    justify-content: center;
}

.next-step-card {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 10px;
    height: 100%;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .form-navigation {
        flex-direction: column;
    }
}