/* Component Styles */

/* Skill Card Component */
.skill-card {
    position: relative;
    overflow: hidden;
}

.skill-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

/* Project Card Component */
.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.project-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.1) 0%, rgba(244, 114, 182, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.project-card:hover::after {
    opacity: 1;
}

/* Navigation Link Component */
.nav-link {
    position: relative;
    overflow: hidden;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #60a5fa, #a78bfa, #f472b6);
    transition: left 0.3s ease;
}

.nav-link:hover::after {
    left: 0;
}

/* Scroll Reveal Component */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Content Layout Helper */
.content {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Slider Helper */
.dot-active {
    background-color: #60a5fa !important;
    transform: scale(1.15);
}

/* Title Label Styling */
.hyTitleLabel1 {
    color: rgb(250 204 21 / var(--tw-bg-opacity, 1));
    box-shadow: none !important;
    background: none !important;
    border-bottom: 2px solid rgb(250 204 21 / var(--tw-bg-opacity, 1));
    padding-left: 2px !important;
    padding-right: 20% !important;
    font-size: 1.1em !important;
}

/* Mobile Menu */
.mobile-menu {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    max-height: 300px;
    opacity: 1;
}
