/* Modern Tech Stack Page Styling - Vercel/Microsoft Inspired */

/* Hero Section */
.page-hero-section {
    background-color: #ffffff !important;
    padding: 120px 20px 80px !important;
    border-bottom: 1px solid #eaeaea;
}

.section-title {
    font-size: 48px !important;
    font-weight: 800 !important;
    letter-spacing: -0.04em !important;
    color: #000000 !important;
    margin-bottom: 20px !important;
    line-height: 1.1 !important;
}

.section-subtitle {
    font-size: 20px !important;
    color: #666666 !important;
    line-height: 1.6 !important;
    font-weight: 400 !important;
}

/* Categories */
.tech-category-block {
    margin-bottom: 100px;
}

.category-title {
    font-size: 24px;
    font-weight: 700;
    text-align: left; /* Left aligned for cleaner look */
    color: #111111;
    margin-bottom: 40px;
    padding-bottom: 0;
    letter-spacing: -0.02em;
}

.category-title::after {
    display: none; /* Remove the underline decoration */
}

/* Grid Layout */
.tech-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 24px;
}

/* Tech Cards */
.tech-item {
    background-color: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 32px 24px;
    height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.tech-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    border-color: #000000; /* High contrast border on hover */
}

.tech-item img {
    max-height: 48px;
    max-width: 100%;
    object-fit: contain;
    margin: 0;
    filter: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition: transform 0.2s ease;
}

.tech-item:hover img {
    transform: scale(1.05) !important;
}

.tech-item .tech-name {
    font-size: 14px;
    font-weight: 600;
    color: #444444;
    letter-spacing: -0.01em;
}

.tech-item:hover .tech-name {
    color: #000000;
}

/* Mail CTA Section Polish */
.mail {
    background-color: #ffffff;
    border-top: 1px solid #eaeaea;
    padding: 100px 0;
}

.mail-cta {
    background-color: #fafafa; /* Subtle contrast */
    border: 1px solid #eaeaea;
    box-shadow: none;
    border-radius: 12px;
    max-width: 800px;
    padding: 60px 40px;
}

.cta-title {
    font-size: 32px;
    letter-spacing: -0.03em;
    margin-bottom: 30px;
}

.icon-background {
    background-color: #ffffff;
    border: 1px solid #eaeaea;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 36px !important;
    }
    
    .tech-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile */
        gap: 16px;
    }
    
    .tech-item {
        height: 140px;
        padding: 20px;
    }
}
 