/* Home Page Specific Styles */
.home-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.introduction {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 10px rgba(144, 209, 104, 0.1);
}

.introduction h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.introduction p {
    font-size: 1.1rem;
    color: var(--text-color);
    opacity: 0.9;
}

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

.card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 10px rgba(144, 209, 104, 0.1);
    transition: transform 0.3s ease;
    overflow: hidden;
    position: relative;
}

.card::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: 0%;
    transform: translateX(-30%);
    width: 50px;
    height: 50px;
    background: url('../img/motto-cursur.png') no-repeat center/contain;
    opacity: 0;
    transition: opacity 0.3s ease, bottom 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card:hover::after {
    opacity: 1;
    bottom: 10px;
}

.card a {
    text-decoration: none;
    color: inherit;
    display: block;
    padding: 2rem;
}

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

.card p {
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .tool-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .introduction {
        padding: 1.5rem;
    }
    
    .card {
        padding: 1.5rem;
    }
}
