* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    min-height: 100vh;
    background: linear-gradient(180deg, #e8f4fc 0%, #b8dff5 30%, #9dd5f5 100%);
    background-attachment: fixed;
}

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 40px;
}

.name {
    font-size: 4rem;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border: 2px solid #1a1a1a;
    border-radius: 50px;
    background: transparent;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-btn i {
    font-size: 1.2rem;
}

.social-btn:hover {
    background: #1a1a1a;
    color: #fff;
    transform: translateY(-2px);
}

.section-nav {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-link:hover {
    opacity: 0.7;
}

.nav-link .arrow {
    font-size: 1rem;
}

.section {
    min-height: 100vh;
    padding: 60px 40px;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.profile-info {
    margin-bottom: 40px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(26, 26, 26, 0.2);
}

.profile-info p {
    font-size: 1.1rem;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.info-label {
    font-weight: 600;
}

.bio {
    margin-bottom: 20px;
}

.bio .section-text {
    margin-bottom: 24px;
}

.section-text {
    font-size: 1.1rem;
    color: #1a1a1a;
    line-height: 1.8;
}

.next-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 60px;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.next-link:hover {
    opacity: 0.7;
}

.next-link .arrow {
    font-size: 1rem;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin-bottom: 40px;
}

.skill-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.skill-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.skill-card i {
    font-size: 3rem;
    color: #1a1a1a;
}

.skill-card span {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
}

.section-title.subtitle {
    font-size: 2rem;
    margin-top: 50px;
}

.skill-card.exploring {
    background: rgba(255, 255, 255, 0.25);
    border: 1px dashed rgba(26, 26, 26, 0.3);
}

.skill-card.exploring:hover {
    background: rgba(255, 255, 255, 0.5);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin-bottom: 40px;
}

.service-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    text-decoration: none;
    color: #1a1a1a;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #1a1a1a;
    border-radius: 12px;
    flex-shrink: 0;
}

.service-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.service-info {
    flex: 1;
}

.service-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.service-desc {
    font-size: 0.9rem;
    color: #555;
}

.service-link-icon {
    font-size: 1rem;
    color: #888;
    transition: all 0.3s ease;
}

.service-card:hover .service-link-icon {
    color: #1a1a1a;
}

html {
    scroll-behavior: smooth;
}

@media (max-width: 768px) {
    .hero {
        padding: 40px 24px;
    }

    .name {
        font-size: 2.5rem;
    }

    .social-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .section {
        padding: 40px 24px;
    }

    .section-title {
        font-size: 2rem;
    }
}
