/* assets/css/custom.css */
section {
    margin: 40px 0;
    padding: 20px 30px;
    border-radius: 12px;
    background-color: #ffffff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

section:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

h2.section-title {
    border-bottom: 2px solid #4f7cff;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

/* 标签样式 */
.tech-tag {
    display: inline-block;
    padding: 4px 10px;
    margin: 3px;
    border-radius: 6px;
    font-size: 0.9em;
    color: black;
}
.tech-esp32 { background:#00BFA5; }
.tech-java { background:#FF8A65; }
.tech-web { background:#A5D6A7; }
.tech-linux { background:#607D8B; }
.tech-ncs { background:#FFCC80; }
.tech-python { background:#CE93D8; }
.tech-c { background:#eee; }

a {
    color: #4f7cff;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}