/* Card Components */
.tool-card {
    background-color: #1e1e1e;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.tool-card a {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tool-icon {
    background-color: #2a2a2a;
    padding: 30px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.tool-card:hover .tool-icon {
    transform: scale(1.1);
}

.tool-icon i {
    font-size: 2.5em;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.2));
}

.tool-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.tool-name {
    font-size: 1.1em;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: #ffffff;
    text-align: center;
}

.tool-description {
    font-size: 0.9em;
    color: #aaaaaa;
    line-height: 1.5;
    flex-grow: 1;
    text-align: center;
}

/* Form Elements */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    background-color: #2a2a2a;
    border: 1px solid #444;
    border-radius: 4px;
    color: white;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #0066cc;
}

.btn {
    display: inline-block;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    color: #fff;
    background-color: #0066cc;
    border: none;
}

.btn-primary:hover {
    background-color: #0055aa;
}

/* Support Section */
.support-section {
    margin-bottom: 30px;
}

.coffee-button {
    display: inline-block;
    background-color: #FFDD00;
    color: #000000;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1em;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.coffee-button:hover {
    background-color: #FFE44D;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.coffee-button i {
    margin-right: 8px;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .tool-icon {
        padding: 20px 0;
    }
    
    .tool-icon i {
        font-size: 2em;
    }
    
    .tool-info {
        padding: 15px;
    }
}
