/* static/css/home.css */

/* --- Hero Section (index.html specific) --- */
.hero-section {
    text-align: center;
    padding: 3rem 0;
    margin-bottom: 3rem;
    border-bottom: 1px solid #333; /* Subtle separator */
}

.hero-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: #e0e0e0;
    margin-bottom: 0.5rem;
}

.hero-section p {
    font-size: 1.1rem;
    color: #aaaaaa;
    max-width: 700px;
    margin: 0 auto;
}

/* --- Tools Grid (index.html specific) --- */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.tool-card {
    background-color: #1e1e1e; /* Dark card background */
    border: 1px solid #333333; /* Subtle border */
    border-left: 5px solid #c0392b; /* Dark Red Accent on the left */
    border-radius: 8px;
    padding: 0; /* Padding handled by .tool-card-link-wrapper if card is a link */
    text-align: center;
    display: flex; 
    flex-direction: column; 
    justify-content: space-between; 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.tool-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 16px rgba(192, 57, 43, 0.3); /* Dark red glow on hover */
    border-color: #c0392b;
}

.tool-card.special-accent {
    /* No longer has a different border-left-color by default, inherits from .tool-card */
}

.tool-card-link-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
    color: inherit; 
    height: 100%; 
    padding: 1.5rem; 
    border-radius: inherit; 
}

.tool-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: #e0e0e0;
    margin-bottom: 1rem;
}

.tool-icon-box {
    font-size: 3rem; 
    color: #c0392b; 
    margin: 1rem auto 1.5rem auto; 
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #2a2a2a; 
    border-radius: 50%;
    border: 2px solid #333;
}

.tool-card.special-accent .tool-icon-box {
    /* No longer has a different color by default */
}

.tool-footer {
    margin-top: auto; 
}

.tool-footer p {
    font-size: 0.9rem;
    color: #aaaaaa;
    margin-bottom: 0.5rem; /* Adjusted margin for the new tag */
    min-height: 25px; /* Adjusted min-height if description is shorter */
}

.not-implemented-tag {
    display: block; /* Make it take its own line */
    font-size: 0.75rem;
    font-style: italic;
    color: #DAA520; /* Gold accent for the tag */
    margin-top: 0.25rem; /* A little space above the tag */
}

.tool-link { 
    display: inline-block;
    background-color: #c0392b;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.tool-link:hover {
    background-color: #e74c3c;
    color: #ffffff;
}

.tool-card.special-accent .tool-link {
    /* No longer has a different background-color by default */
}

/* --- Responsive Adjustments for Home Page --- */
@media (max-width: 768px) {
    .hero-section h2 {
        font-size: 2rem;
    }
    .tools-grid {
        grid-template-columns: 1fr; 
    }
}
