/**
 * Home page specific styles
 */

#home-app {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Main content area with board-style background */
.home-main {
    flex: 1;
    background: #f5f5f5;
    padding: 3rem 2rem;
    overflow-y: auto;
}

/* Hero Section */
.hero-section {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
    color: #333;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: #2c3e50;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #555;
    line-height: 1.6;
}

.hero-cta {
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* Features Section */
.features-section {
    max-width: 1200px;
    margin: 0 auto;
}

.features-title {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 2.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

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

.feature-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.hint {
    font-size: 0.85rem;
    color: #666;
    margin: -0.5rem 0 1rem;
    line-height: 1.4;
}

/* Override modal styles for centered display */
#create-workspace-modal .modal-content input[type="password"],
#create-workspace-modal .modal-content input[type="email"] {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    margin-bottom: 1rem;
}

#create-workspace-modal .modal-content input[type="password"]:focus,
#create-workspace-modal .modal-content input[type="email"]:focus {
    outline: none;
    border-color: #3498db;
}

/* Responsive Design */
@media (max-width: 768px) {
    .home-main {
        padding: 2rem 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-cta {
        padding: 0.875rem 2rem;
        font-size: 1.1rem;
    }

    .features-title {
        font-size: 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .btn-large {
        padding: 0.875rem 1.75rem;
        font-size: 1.1rem;
    }
}
