/* Technologies */
.section-desc {
    margin-bottom: 28px;
    font-size: 0.95rem;
    max-width: 100%;
    line-height: 1.6;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
    grid-auto-flow: dense;
}

.tech-item {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    position: relative;
    transition: all 0.2s ease;
}

.tech-item:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.tech-header {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.tech-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: none;
    box-shadow: none;
    flex-shrink: 0;
}

.tech-icon-box img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    opacity: 1;
    transition: opacity 0.3s ease, filter 0.3s ease;
    transform-origin: center;
}

/* DropATask logo styling - same as in projects, but 20% larger */
.tech-icon-box img[src*="dropatask.png"] {
    width: 38.4px;
    height: 38.4px;
    filter: brightness(4) contrast(1.2);
    opacity: 0.9;
}


.tech-item:hover .tech-icon-box img[src*="dropatask.png"] {
    filter: brightness(4.5) contrast(1.2) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    opacity: 1;
}

.tech-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.tech-name {
    font-size: 1.1em;
    font-weight: 400;
    color: #fff;
    letter-spacing: -0.05em;
    line-height: 1.3;
}

.tech-type {
    font-size: 0.9em;
    color: var(--text-secondary);
    letter-spacing: -0.02em;
    line-height: 1.3;
}

/* Mini Row (Firebase Products) */
.tech-mini-row {
    display: none;
    gap: 8px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 4px;
}

.mini-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
    transition: all 0.2s ease;
    cursor: help;
}

.mini-icon:hover {
    opacity: 0.8;
}

.mini-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

