/* static/css/index.css */

/* Hero Section Styles */
.hero-section {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 60px 20px;
    text-align: center;
    font-family: 'Noto Sans Mono', monospace;
}

.hero-title {
    font-size: 3em;
    margin-bottom: 10px;
    font-weight: bold;
}

.hero-tagline {
    font-size: 1.5em;
    color: #e0e0e0;
}

/* Features Section Styles */
.features-section {
    padding: 40px 20px;
    text-align: center;
}

.features-heading {
    font-size: 2.2em;
    color: #333333;
    margin-bottom: 40px;
    font-family: 'Noto Sans Mono', monospace;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto; /* Center the grid */
}

.feature-card {
    background-color: var(--card-bg);
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 25px;
    box-shadow: var(--shadow-heavy);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: 'Noto Sans Mono', monospace;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.feature-title {
    font-size: 1.6em;
    color: #007bff;
    margin-bottom: 15px;
}

.feature-description {
    font-size: 1em;
    line-height: 1.6;
    color: #555555;
}

/* Dark Theme Adjustments */
html.dark .hero-section {
    background-color: #343a40;
}

html.dark .hero-title {
    color: #f5f5f5;
}

html.dark .hero-tagline {
    color: #bbbbbb;
}

html.dark .features-section {
    background-color: #2c2c2c;
}

html.dark .features-heading {
    color: #e0e0e0;
}

html.dark .feature-card {
    background-color: #3a3a3a;
    border-color: #555555;
    box-shadow: var(--shadow-heavy);
}

html.dark .feature-card:hover {
    box-shadow: var(--shadow-heavy);
}

html.dark .feature-title {
    color: #ff9800;
}

html.dark .feature-description {
    color: #c5c5c5;
}