/* ============================================
   PAGE CONTENT ENHANCEMENTS
   Better styling for portfolio, about, etc.
   ============================================ */

/* Translucent & Glossy White Content */
.vista-glass-content {
    background: rgba(255, 255, 255, 0.20) !important;
    backdrop-filter: blur(25px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(25px) saturate(180%) !important;
}

/* Project Cards - Translucent & Glossy */
.portfolio-project-card,
.project-card {
    background: linear-gradient(to bottom,
        rgba(255, 255, 255, 0.30) 0%,
        rgba(255, 255, 255, 0.20) 100%
    );
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        inset 0 -1px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.portfolio-project-card::before,
.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to bottom,
        rgba(255, 255, 255, 0.3) 0%,
        transparent 100%
    );
    border-radius: 8px 8px 0 0;
    opacity: 0.4;
    pointer-events: none;
}

.portfolio-project-card:hover,
.project-card:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 6px 16px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 0 rgba(0, 0, 0, 0.08);
    border-color: rgba(255, 255, 255, 0.8);
}

.portfolio-project-card:hover::before,
.project-card:hover::before {
    opacity: 0.6;
}

/* Skills Section */
.skills-section {
    margin: 30px 0;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.skill-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px;
    background: linear-gradient(to bottom,
        rgba(255, 255, 255, 0.35) 0%,
        rgba(255, 255, 255, 0.25) 100%
    );
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.skill-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.skill-item > img.skill-icon {
    display: block;
    margin: 0 auto;
    object-fit: contain;
    object-position: top center;
    flex: 0 0 auto;
    min-height: 96px;
    height: auto;
    max-height: 96px;
}

.skill-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to bottom,
        rgba(255, 255, 255, 0.4) 0%,
        transparent 100%
    );
    border-radius: 8px 8px 0 0;
    opacity: 0.3;
    pointer-events: none;
}

.skill-item:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        0 0 20px rgba(0, 120, 215, 0.2);
    border-color: rgba(255, 255, 255, 0.7);
}

.skill-item:hover::before {
    opacity: 0.5;
}

.skill-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transition: all 0.3s;
}

.skill-item:hover .skill-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.skill-name {
    font-family: var(--font-segoe-semilight);
    font-size: 14px;
    font-weight: 300;
    color: #1a1a1a;
    text-align: center;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.8);
}

/* Skill Tags/Badges */
.skill-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: linear-gradient(to bottom,
        rgba(255, 255, 255, 0.40) 0%,
        rgba(255, 255, 255, 0.30) 100%
    );
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    font-size: 13px;
    font-family: var(--font-segoe-semilight);
    font-weight: 300;
    color: #333;
    box-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
    transition: all 0.2s;
}

.skill-tag:hover {
    transform: translateY(-1px);
    box-shadow: 
        0 2px 6px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.skill-tag-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

/* Section Headers */
.content-section h2 {
    font-family: var(--font-segoe-semilight);
    font-size: 28px;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 10px;
}

.content-section h2 i {
    color: #0078D7;
    font-size: 24px;
}

.content-section h3 {
    font-family: var(--font-segoe-semilight);
    font-size: 22px;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 12px;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.8);
}

/* Text Content */
.content-section p {
    font-family: var(--font-segoe-semilight);
    font-size: 16px;
    font-weight: 300;
    color: #333;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Buttons in Content */
.content-section .vista-glass-button,
.content-section a[style*="background"] {
    font-family: var(--font-segoe-semilight);
    font-weight: 300;
}

/* Profile Image Enhancement */
.profile-image {
    border: 3px solid rgba(200, 220, 240, 0.6);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

