/* Technologies Page Styles */

.page-header {
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10rem 5% 4rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.3rem;
    color: var(--text-gray);
}

.tech-section {
    padding: 4rem 5%;
}

.tech-category {
    margin: 0 0 6rem 0;
}

.tech-category h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--accent-orange);
}

.tech-grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 2.5rem;
}

.tech-box {
    background: rgba(27, 38, 59, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    cursor: pointer;
}

.tech-box:hover {
    transform: translateY(-10px);
    background: rgba(32, 48, 74, 0.8);
    border-color: rgba(255, 140, 66, 0.4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.tech-box-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.tech-box h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.tech-box p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .page-header {
        padding: 8rem 5% 3rem;
    }

    .page-header h1 {
        font-size: 3rem;
    }

    .tech-category h2 {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }

    .tech-grid-layout {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2rem;
    }

    .tech-box {
        padding: 2rem;
    }

    .tech-box-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .tech-box h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 6rem 5% 3rem;
        min-height: 30vh;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .tech-section {
        padding: 3rem 5%;
    }

    .tech-category {
        margin: 0 0 4rem 0;
    }

    .tech-category h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .tech-grid-layout {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .tech-box {
        padding: 1.5rem;
        border-radius: 12px;
    }

    .tech-box-icon {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
    }

    .tech-box h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .tech-box p {
        font-size: 0.9rem;
    }
}

@media (max-width: 640px) {
    .page-header {
        padding: 4rem 5% 2rem;
        min-height: auto;
    }

    .page-header h1 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .page-header p {
        font-size: 0.9rem;
    }

    .tech-section {
        padding: 2rem 5%;
    }

    .tech-category {
        margin: 0 0 3rem 0;
    }

    .tech-category h2 {
        font-size: 1.4rem;
        margin-bottom: 1.2rem;
    }

    .tech-grid-layout {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }

    .tech-box {
        padding: 1.2rem;
        border-radius: 10px;
    }

    .tech-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    }

    .tech-box-icon {
        font-size: 2rem;
        margin-bottom: 0.6rem;
    }

    .tech-box h3 {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }

    .tech-box p {
        font-size: 0.8rem;
        line-height: 1.5;
    }
}
