/* Home page specific styles */

.hero-subtitle {
    margin-top: 0.5rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

.hero-actions {
    margin-top: 2rem;
}

.hero-actions .btn-secondary {
    margin-left: 1rem;
}

/* Skills Section */
.skills-section {
    margin: 4rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.skill-card {
    text-align: center;
}

.skill-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.skill-name {
    text-align: center;
    color: var(--primary);
}

/* Experience Section */
.experience-section {
    margin: 4rem 0;
    padding: 4rem 2rem;
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.experience-container {
    max-width: 800px;
    margin: 0 auto;
}

.experience-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(15, 23, 42, 0.5);
    border-left: 3px solid var(--primary);
    border-radius: 10px;
}

.experience-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.experience-title {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.experience-badge {
    background: var(--gradient-primary);
    color: var(--dark);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.experience-company {
    color: var(--light);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.experience-period {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Services Section */
.services-section {
    margin: 4rem 0;
    padding: 4rem 2rem;
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.service-item {
    flex: 1 1 250px;
    max-width: 300px;
    text-align: center;
    padding: 2rem;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-title {
    color: var(--primary);
    margin-bottom: 1rem;
}

.service-description {
    color: var(--gray);
}
