
/* Skills Page Styles */
.skills-page {
    position: absolute;
    top: 100px;
    left: 200px;
    width: 120vh;
    background: #323232;
    height: 80vh;
    border-radius: 10px;
    overflow: scroll;
    box-shadow: 0 0 7px black;
    display: none;
}

.hero-page {
    padding: 2rem;
    padding-left: 1rem;
    padding-top: 1rem;
}

.page-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin: 1rem 0 2rem 0;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 1rem;
}

.page-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #4776e6, #8e54e9);
    border-radius: 2px;
}

.tech-section {
    margin-bottom: 2rem;
    color: white;
}

.section-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1.5rem;
}

.tech-card {
    background: #1e1e1e;
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.2s;
}

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

.tech-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 0.5rem;
}

.tech-name {
    text-align: center;
    font-size: 0.9rem;
}
